@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");

:root {
    --bg: #070b12;
    --bg-alt: #0d1420;
    --bg-soft: #131d2b;
    --bg-panel: #101827;
    --surface: #111a28;
    --surface-soft: #162231;
    --text: #f4f7fb;
    --text-soft: #c7d2df;
    --text-muted: #91a0b2;
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(255, 255, 255, 0.18);
    --border: rgba(255, 255, 255, 0.1);
    --accent: #e1261c;
    --navy: #f8fafc;
    --navy-soft: #d8e1ed;
    --gold: #f5c400;
    --gold-deep: #d49d00;
    --red: #e1261c;
    --red-deep: #b91f17;
    --green: #1d8f57;
    --danger: #c73a3a;
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
    --radius: 6px;
    --max: 1200px;
}

.cms-content {
    color: var(--text);
}

.automotive-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 7rem) 0;
    background:
        linear-gradient(120deg, rgba(8, 20, 36, 0.94), rgba(20, 36, 52, 0.78)),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.08) 0 2px, transparent 2px 14px);
    color: #fff;
}

.automotive-hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 2rem;
    align-items: center;
}

.hero-visual,
.visual-card img,
.gallery-grid img,
.service-strip img,
.trust-grid img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.hero-visual {
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.automotive-hero .lead,
.automotive-hero p {
    color: rgba(255,255,255,0.86);
}

.service-strip,
.gallery-grid,
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.service-strip article,
.gallery-grid article,
.trust-grid article {
    min-height: 150px;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.service-strip img,
.gallery-grid img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 1px solid var(--line);
}

.gallery-grid article {
    border-top: 4px solid var(--accent);
    background:
        linear-gradient(180deg, rgba(37,99,235,0.08), transparent),
        var(--surface);
}

.work-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.work-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.work-card-featured {
    border-color: rgba(225, 38, 28, 0.65);
}

.work-media {
    position: relative;
}

.work-media img,
.work-media video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.work-media span {
    position: absolute;
    left: 0.85rem;
    bottom: 0.85rem;
    padding: 0.35rem 0.55rem;
    border-radius: var(--radius);
    background: rgba(7, 11, 18, 0.86);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
}

.work-card-body {
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
}

.work-description {
    color: var(--text-soft);
}

.work-card-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.work-card-heading h2 {
    margin: 0;
    font-size: 1.2rem;
}

.work-card-heading time,
.work-meta span {
    color: var(--text-muted);
    font-size: 0.86rem;
}

.work-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.work-meta span {
    padding: 0.35rem 0.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
}

.work-result-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.work-result-grid div {
    display: grid;
    gap: 0.35rem;
    padding: 0.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
}

.work-result-grid strong {
    color: var(--navy);
    font-size: 0.95rem;
    line-height: 1.2;
}

.work-result-grid span {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.5;
}

.ari-booking-shell {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.ari-booking-bar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
}

.ari-booking-bar div {
    display: grid;
    gap: 0.25rem;
}

.ari-booking-bar span {
    color: var(--text-muted);
}

.ari-booking-shell iframe {
    display: block;
    width: 100%;
    min-height: 1000px;
    border: 0;
    background: #fff;
}

.legal-content h2,
.cms-content h2 {
    margin-top: 2rem;
}

.visual-band {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.visual-card {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg-panel);
    box-shadow: var(--shadow);
}

.install-status {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.5rem;
}

.install-status span {
    padding: 0.55rem 0.65rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
}

.install-status .ok {
    color: #94f0bd;
}

.install-status .bad {
    color: #ff9a9a;
}

@media (max-width: 860px) {
    .automotive-hero .container {
        grid-template-columns: 1fr;
    }

    .work-card-heading,
    .ari-booking-bar {
        display: grid;
    }

    .work-result-grid {
        grid-template-columns: 1fr;
    }
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Google Sans Text", "Google Sans", "Roboto", "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(225, 38, 28, 0.18), transparent 24%),
        radial-gradient(circle at top right, rgba(245, 196, 0, 0.11), transparent 22%),
        linear-gradient(180deg, #080d15 0%, var(--bg) 48%, #05070c 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

.field {
    display: grid;
    gap: 0.42rem;
    min-width: 0;
}

.form-grid > .field {
    min-width: 0;
}

.form-label {
    display: block;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.signature-field {
    display: grid;
    gap: 10px;
}

.signature-pad {
    width: 100%;
    min-height: 160px;
    border: 1px solid var(--line-strong);
    background: #ffffff;
}

.container {
    width: min(var(--max), calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: 2.6rem 0;
}

.section-tight {
    padding-top: 1.2rem;
}

.section-emphasis {
    padding: 1.6rem 0 0;
}

.alt {
    background: linear-gradient(180deg, rgba(17, 26, 40, 0.78), rgba(10, 15, 24, 0.5));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.7rem;
    padding: 0.36rem 0.74rem;
    border-radius: var(--radius);
    background: rgba(245, 196, 0, 0.16);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 0.7rem;
    color: var(--navy);
    font-family: "Google Sans Text", "Google Sans", "Roboto", "Segoe UI", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.35rem, 4.6vw, 4.45rem);
}

h2 {
    font-size: clamp(1.65rem, 2.7vw, 2.55rem);
}

h3 {
    font-size: 1.25rem;
}

p,
li,
small,
span {
    color: var(--text-soft);
}

.lead {
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 60ch;
}

.muted {
    color: var(--text-muted);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(8, 13, 21, 0.96);
    border-bottom: 1px solid var(--line);
}

.site-utility {
    border-bottom: 1px solid var(--line);
    background: rgba(17, 26, 40, 0.98);
}

.utility-row,
.utility-copy,
.utility-actions,
.header-row,
.brand,
.site-nav,
.cta-row,
.badge-row,
.footer-grid,
.split,
.form-actions,
.page-actions,
.service-meta,
.contact-list {
    display: flex;
    gap: 1rem;
}

.utility-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    min-height: 34px;
}

.utility-copy,
.utility-actions {
    align-items: center;
    min-width: 0;
    gap: 0.5rem;
}

.utility-copy {
    overflow: hidden;
}

.utility-area,
.utility-insured {
    flex: 0 0 auto;
}

.utility-item,
.utility-actions a {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.utility-item:not(:first-child)::before {
    content: "";
    width: 4px;
    height: 4px;
    margin-right: 0.55rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
}

.utility-hours {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
}

.utility-insured {
    color: #ffffff;
}

.utility-phone,
.utility-text {
    flex: 0 0 auto;
}

.utility-phone {
    color: #ffffff;
}

.utility-text {
    padding: 0.38rem 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
}

.utility-actions a:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

.header-row {
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 1.25rem;
    padding: 0.55rem 0;
}

.brand {
    align-items: center;
    flex: 0 0 auto;
    gap: 0.72rem;
    min-width: 220px;
}

.brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.38));
}

.brand strong {
    display: block;
    color: var(--navy);
    font-size: 1.08rem;
    font-family: "Google Sans Text", "Google Sans", "Roboto", "Segoe UI", Arial, sans-serif;
    letter-spacing: 0;
    line-height: 1.1;
}

.brand span {
    display: block;
    max-width: 24ch;
    color: var(--text-soft);
    font-size: 0.76rem;
    line-height: 1.25;
    margin-top: 0.18rem;
}

.site-nav {
    flex: 1 1 auto;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0.18rem;
    min-width: 0;
}

.site-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.site-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    border-radius: 0;
    background: var(--text);
}

.site-nav > a:not(.button) {
    color: var(--navy);
    padding: 0.56rem 0.42rem;
    border-radius: var(--radius);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.site-nav > a:not(.button):hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.header-cta-primary {
    margin-left: 0.38rem;
    min-height: 42px;
    padding-inline: 1rem;
    white-space: nowrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.78rem 1.15rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    background: var(--red);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.92rem;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease;
    box-shadow: none;
}

.button:hover {
    background: var(--red-deep);
}

.button-small {
    min-height: 38px;
    padding: 0.62rem 0.92rem;
    font-size: 0.84rem;
}

.button-outline {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line-strong);
    color: var(--text);
    box-shadow: none;
}

.button-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

.button-ghost {
    background: rgba(255, 255, 255, 0.05);
    border-color: transparent;
    color: var(--text);
    box-shadow: none;
}

.button-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero,
.page-hero {
    padding: 3rem 0 2.2rem;
}

.mechanic-hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    display: grid;
    align-items: center;
    color: #fff;
    background: #111827;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.mechanic-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 15, 24, 0.88) 0%, rgba(10, 15, 24, 0.65) 44%, rgba(10, 15, 24, 0.1) 100%),
        linear-gradient(180deg, rgba(10, 15, 24, 0.25), rgba(10, 15, 24, 0.85));
}

.mechanic-hero .container {
    position: relative;
    z-index: 1;
}

.mechanic-hero h1,
.mechanic-hero .lead,
.mechanic-hero .eyebrow,
.mechanic-hero span,
.mechanic-hero strong {
    color: #fff;
}

.mechanic-hero .eyebrow {
    background: var(--red);
}

.hero-grid,
.card-grid,
.form-grid,
.proof-strip,
.process-grid {
    display: grid;
    gap: 1.35rem;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    align-items: center;
}

.hero-copy {
    max-width: 720px;
}

.hero h1,
.page-hero h1 {
    max-width: 13ch;
}

.cta-row,
.badge-row,
.page-actions,
.form-actions {
    flex-wrap: wrap;
}

.badge-row {
    margin-top: 1rem;
}

.badge-row span,
.service-card-top span,
.service-card-top strong,
.service-category {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.45rem 0.78rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    color: var(--navy-soft);
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-highlights,
.metric-grid,
.proof-strip {
    display: grid;
    gap: 1rem;
}

.hero-highlights {
    margin-top: 1.4rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-highlights div,
.metric-grid div,
.proof-strip div {
    padding: 1rem 1.05rem;
    border-radius: var(--radius);
    background: rgba(17, 26, 40, 0.86);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero-service-panel {
    display: grid;
    gap: 0.7rem;
    padding: 1.2rem;
    margin-left: auto;
    width: min(100%, 360px);
    background: rgba(8, 12, 20, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
}

.hero-service-panel span {
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.clean-hero {
    position: relative;
    min-height: 520px;
    display: grid;
    align-items: center;
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.clean-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(12, 18, 30, 0.86), rgba(12, 18, 30, 0.48), rgba(12, 18, 30, 0.08));
}

.clean-hero-copy {
    max-width: 680px;
    padding: 3rem 0;
}

.clean-hero h1,
.clean-hero p,
.clean-hero span,
.clean-hero .eyebrow {
    color: #fff;
}

.clean-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.1rem;
}

.clean-service-grid article {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.clean-service-grid img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.clean-service-grid h3,
.clean-service-grid p {
    margin: 1rem;
}

.page-photo-hero {
    padding: 2.2rem 0 1.2rem;
}

.page-photo-hero img,
.section-photo {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 0;
    max-height: 560px;
}

.section-photo {
    display: block;
}

.page-photo-hero .split {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
}

.page-photo-hero h1,
.content-block h2 {
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-highlights strong,
.metric-grid strong,
.proof-strip strong {
    display: block;
    margin-bottom: 0.28rem;
    color: var(--navy);
}

.hero-card,
.info-card,
.review-card,
.quote-box,
.form-card,
.gallery-card,
.content-block,
.auth-card,
.service-card {
    background: rgba(17, 26, 40, 0.92);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 1.35rem;
    background:
        linear-gradient(180deg, rgba(17, 26, 40, 0.94), rgba(13, 20, 32, 0.98)),
        linear-gradient(160deg, rgba(245, 196, 0, 0.16), transparent);
}

.hero-card-panel {
    padding: 1.1rem 1.1rem 1.2rem;
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(24, 35, 59, 0.97), rgba(34, 50, 82, 0.96));
}

.hero-card-panel h2,
.hero-card-panel p,
.hero-card-panel .eyebrow {
    color: #ffffff;
}

.hero-card-panel .eyebrow {
    background: rgba(244, 197, 66, 0.18);
}

.metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
}

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

.section-head {
    max-width: 760px;
    margin-bottom: 1.6rem;
}

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

.info-card,
.review-card,
.quote-box,
.content-block,
.gallery-card,
.form-card,
.auth-card,
.service-card {
    padding: 1.45rem;
}

.form-card,
.auth-card {
    display: grid;
    gap: 1rem;
}

.service-preview-card,
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    margin-bottom: 1rem;
}

.service-detail-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.review-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    margin-bottom: 1rem;
}

.service-preview-card::after,
.service-card::after {
    content: "";
    position: absolute;
    inset: auto -20% -35% auto;
    width: 160px;
    height: 160px;
    border-radius: var(--radius);
    background: radial-gradient(circle, rgba(244, 197, 66, 0.2), transparent 68%);
    pointer-events: none;
}

.service-meta {
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 0.65rem;
}

.service-card {
    display: grid;
    gap: 0.42rem;
}

.service-card-top {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-bottom: 0.4rem;
}

.service-card .button {
    margin-top: 0.7rem;
    width: fit-content;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(1.4rem, 3vw, 2.4rem);
}

.split > * {
    min-width: 0;
}

.quote-box-premium {
    background: linear-gradient(150deg, rgba(29, 38, 54, 0.98), rgba(17, 26, 40, 0.98));
}

.stacked-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

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

.process-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--gold);
    color: var(--navy);
    font-family: "Google Sans Text", "Google Sans", "Roboto", "Segoe UI", Arial, sans-serif;
    font-size: 1.45rem;
}

.feature-list {
    margin: 0;
    padding-left: 1.15rem;
    line-height: 1.9;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-list article {
    padding: 1.45rem;
    background: rgba(17, 26, 40, 0.92);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.gallery-card {
    min-height: 200px;
    align-items: end;
    display: flex;
    font-size: 1.15rem;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22)),
        linear-gradient(135deg, rgba(245, 196, 0, 0.16), rgba(17, 26, 40, 0.84));
}

.form-card {
    width: 100%;
}

.booking-form {
    padding: 1.5rem;
}

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

input,
select,
textarea {
    width: 100%;
    padding: 0.88rem 0.96rem;
    border-radius: var(--radius);
    border: 1px solid var(--line-strong);
    background: #0b111c;
    color: var(--text);
    font-size: 0.95rem;
}

textarea {
    min-height: 124px;
    resize: vertical;
    margin-top: 0;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(214, 43, 45, 0.35);
    box-shadow: 0 0 0 4px rgba(214, 43, 45, 0.08);
}

.upload-label,
.checkbox {
    display: grid;
    gap: 0.45rem;
    align-content: center;
    color: var(--text-soft);
}

.upload-label {
    align-items: start;
}

.checkbox {
    grid-auto-flow: column;
    justify-content: start;
    align-items: center;
}

.checkbox input {
    width: auto;
}

.form-card > * + *,
.booking-form > * + * {
    margin-top: 16px;
}

.contact-list {
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.contact-list div {
    padding: 0.95rem 1rem;
    border-radius: var(--radius);
    background: rgba(17, 26, 40, 0.9);
    border: 1px solid var(--line);
}

.contact-list strong {
    display: block;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.flash-stack {
    padding-top: 1rem;
}

.flash {
    margin-bottom: 0.8rem;
    padding: 0.95rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(17, 26, 40, 0.94);
}

.flash-success {
    border-color: rgba(29, 143, 87, 0.2);
    background: rgba(29, 143, 87, 0.08);
}

.flash-error {
    border-color: rgba(199, 58, 58, 0.2);
    background: rgba(199, 58, 58, 0.08);
}

.auth-wrap {
    min-height: calc(100vh - 190px);
    display: grid;
    place-items: center;
    padding: 2.5rem 1rem 4rem;
}

.auth-card {
    width: min(460px, 100%);
    text-align: center;
}

.auth-logo {
    width: 120px;
    margin: 0 auto 1rem;
}

.site-footer {
    margin-top: 2rem;
    padding: 3rem 0;
    background: linear-gradient(180deg, rgba(24, 35, 59, 0.98), rgba(17, 27, 46, 0.98));
}

.site-footer h4,
.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
    align-items: start;
    justify-content: space-between;
}

.footer-grid > div {
    flex: 1;
    min-width: 180px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 1rem;
}

.site-footer .muted {
    color: rgba(255, 255, 255, 0.62);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.social-links a {
    padding: 0.35rem 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    color: #fff;
}

.site-mobile-bar {
    display: none;
}

@media (max-width: 1080px) {
    .hero-grid,
    .card-grid,
    .process-grid,
    .proof-strip,
    .hero-highlights,
    .split,
    .form-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .page-photo-hero .split {
        grid-template-columns: 1fr;
    }

    .site-nav {
        gap: 0.08rem;
    }

    .brand span {
        max-width: 16ch;
    }

    .site-nav > a:not(.button) {
        padding-inline: 0.32rem;
        font-size: 0.82rem;
    }

    .header-cta-primary {
        padding-inline: 0.78rem;
    }
}

@media (max-width: 860px) {
    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-utility {
        display: none;
    }

    .header-row {
        position: relative;
        min-height: 70px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.65rem;
        padding: 0.55rem 0;
    }

    .brand {
        gap: 0.6rem;
        min-width: 0;
        flex: 1 1 auto;
    }

    .brand img {
        width: 46px;
        height: 46px;
        flex: 0 0 auto;
    }

    .brand strong {
        font-size: 0.96rem;
        margin-bottom: 0.1rem;
    }

    .brand span {
        max-width: none;
        font-size: 0.72rem;
        line-height: 1.22;
    }

    .site-menu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
        width: 30px;
        height: 30px;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + 6px);
        left: 0;
        right: 0;
        width: 100%;
        padding: 0.7rem;
        justify-content: flex-start;
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(8, 13, 21, 0.99);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
    }

    .site-nav.site-nav-open {
        display: flex;
    }

    .site-nav > a:not(.button) {
        display: block;
        padding: 0.68rem 0.75rem;
    }

    .site-nav .button {
        width: 100%;
    }

    .hero,
    .page-hero,
    .section {
        padding-top: 2.6rem;
        padding-bottom: 2.5rem;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(2.35rem, 10vw, 3.4rem);
        max-width: 9ch;
        line-height: 0.96;
    }

    .lead {
        font-size: 1rem;
        line-height: 1.65;
    }

    .eyebrow {
        font-size: 0.68rem;
        padding: 0.3rem 0.62rem;
    }

    .hero-copy,
    .section-head {
        max-width: none;
    }

    .hero-highlights,
    .metric-grid,
    .proof-strip {
        gap: 0.8rem;
    }

    .button,
    .button-outline,
    .button-ghost {
        width: 100%;
    }

    .cta-row .button,
    .stacked-cta .button,
    .form-actions .button {
        width: 100%;
    }

    .hero-card,
    .info-card,
    .review-card,
    .quote-box,
    .form-card,
    .gallery-card,
    .content-block,
    .auth-card,
    .service-card {
        padding: 1.15rem;
    }

    .site-mobile-bar {
        position: sticky;
        bottom: 0;
        z-index: 45;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        background: rgba(24, 35, 59, 0.98);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-mobile-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 58px;
        color: #ffffff;
        font-weight: 800;
    }

    .site-mobile-bar a + a {
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }
}
