:root {
    --bg: #060608;
    --bg-soft: #0d0d12;
    --panel: rgba(17, 17, 23, 0.88);
    --panel-strong: rgba(9, 9, 13, 0.96);
    --text: #f2f0ea;
    --muted: #cfc9bb;
    --line: rgba(255, 255, 255, 0.1);
    --gold: #d3a646;
    --gold-soft: #f3c969;
    --gold-deep: #8d6221;
    --danger: #b04343;
    --warning: #b68b2f;
    --success: #2f8b57;
    --shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1180px;
    --body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --heading-font: Georgia, "Times New Roman", serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(211, 166, 70, 0.13), transparent 28%),
        radial-gradient(circle at bottom left, rgba(211, 166, 70, 0.08), transparent 30%),
        linear-gradient(180deg, #040406 0%, #09090d 100%);
}

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

a:hover {
    text-decoration: none;
}

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

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

button {
    cursor: pointer;
}

p,
ul,ol {
    margin: 0 0 1rem;
}

ul,
ol {
    padding-left: 1.2rem;
}

h1,h2,h3,h4 {
    margin: 0 0 1rem;
    line-height: 1.08;
    font-family: var(--heading-font);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.85rem, 5vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 3.1vw, 3.2rem);
}

h3 {
    font-size: 1.4rem;
}

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

.section {
    position: relative;
    padding: 5.5rem 0;
}

.section--dark {
    background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section--compact {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

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

.skip-link:focus {
    clip: auto;
    width: auto;
    height: auto;
    margin: 0;
    left: 1rem;
    top: 1rem;
    z-index: 999;
    padding: 0.75rem 1rem;
    background: var(--gold);
    color: #0b0b0f;
    border-radius: 0.5rem;
    white-space: normal;
}

:focus-visible {
    outline: 2px solid var(--gold-soft);
    outline-offset: 3px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold-soft);
}

.eyebrow::before {
    content: "";
    width: 2.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-soft));
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.4rem;
    padding: 0.8rem 1.35rem;
    border: 1px solid rgba(211, 166, 70, 0.55);
    border-radius: 0.95rem;
    font-weight: 700;
    color: #120c02;
    background: linear-gradient(180deg, var(--gold-soft), var(--gold));
    box-shadow: 0 12px 24px rgba(141, 98, 33, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(141, 98, 33, 0.25);
}

.btn--ghost {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn--sm {
    min-height: 2.8rem;
    padding: 0.55rem 1rem;
    font-size: 0.95rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(6, 6, 8, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.92rem;
    color: var(--muted);
}

.topbar__inner,
.nav-wrap,
.trust-strip__grid,
.footer-bottom,
.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.topbar__inner {
    min-height: 2.75rem;
}

.topbar__note {
    margin: 0;
}

.topbar__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar__actions a {
    color: var(--text);
}

.nav-wrap {
    min-height: 5.75rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    flex-shrink: 0;
}

.brand img {
    width: 4.5rem;
    height: 4.5rem;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 0.3rem;
}

.brand__text strong,
.brand__text span {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.brand__text span {
    font-size: 1rem;
    color: var(--gold);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.site-nav .btn {
    white-space: nowrap;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav a {
    color: var(--muted);
    font-weight: 600;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--text);
}

.site-nav a.is-active {
    position: relative;
}

.site-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.55rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid rgba(243, 201, 105, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 1.18rem;
    height: 2.5px;
    background: var(--text);
    margin: 0.15rem auto;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
}

.nav-toggle:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.08);
}

.nav-toggle.is-open {
    border-color: rgba(243, 201, 105, 0.75);
    background: rgba(243, 201, 105, 0.1);
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.4);
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero__ambient,
.page-hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(6,6,8,0.92) 0%, rgba(6,6,8,0.78) 36%, rgba(6,6,8,0.32) 100%),
        url('../img/ambient-gold.jpg');
    background-size: cover;
    background-position: center right;
    opacity: 1;
}

.hero__grid,
.split,
.contact-layout,
.footer-grid,
.grid-2 {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2rem;
}

.hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.8fr);
    align-items: center;
}

.hero__content {
    max-width: 42rem;
}

.hero__lead {
    font-size: clamp(1.18rem, 1.9vw, 1.45rem);
    color: var(--gold-soft);
    margin-bottom: 1rem;
}

.hero__text {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 38rem;
}

.hero__actions,
.section-actions,
.cta-band__actions,
.form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__actions {
    margin-top: 2rem;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    padding: 0;
    margin: 1.6rem 0 0;
    list-style: none;
}

.hero-points li,
.bullet-list li,
.check-list li {
    position: relative;
}

.hero-points li {
    padding: 0.7rem 1rem 0.7rem 2.3rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
}

.hero-points li::before,
.check-list li::before,
.bullet-list li::before {
    content: "";
    position: absolute;
    inset-block-start: 50%;
    transform: translateY(-50%);
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 999px;
    background: radial-gradient(circle at center, var(--gold-soft) 0%, var(--gold) 55%, transparent 56%);
    box-shadow: 0 0 0 4px rgba(211, 166, 70, 0.12);
}

.hero-points li::before {
    left: 0.95rem;
}

.hero__visual {
    display: flex;
    justify-content: flex-end;
}

.hero-card,
.frame,
.service-card,
.info-panel,
.contact-card,
.contact-form-block,
.service-detail,
.prose,
.faq-item,
.trust-strip article {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    box-shadow: var(--shadow);
}

.hero-card::after,
.frame::after,
.service-card::after,
.info-panel::after,
.contact-card::after,
.contact-form-block::after,
.service-detail::after,
.prose::after,
.faq-item::after,
.trust-strip article::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(243, 201, 105, 0.4), transparent 35%, transparent 65%, rgba(243, 201, 105, 0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.hero-card {
    max-width: 34rem;
    background: linear-gradient(180deg, rgba(11,11,15,0.88), rgba(6,6,8,0.96));
}

.hero-card--portrait img {
    width: 100%;
    max-height: 43rem;
    object-fit: cover;
    object-position: center top;
}

.trust-strip {
    padding: 0 0 2rem;
}

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

.trust-strip article {
    padding: 1.35rem 1.2rem;
    min-height: 100%;
}

.trust-strip strong {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--gold-soft);
    font-size: 1.02rem;
}

.trust-strip p,
.service-card p,
.info-panel p,
.contact-card p,
.service-detail p,
.prose p,
.page-hero p,
.footer-text,
.footer-note,
.faq-item p,
.contact-form-block p,
.step p {
    color: var(--muted);
}

.split {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    align-items: start;
}

.split--reverse {
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
}

.split--reverse > :first-child {
    order: 2;
}

.split--reverse > :last-child {
    order: 1;
}

.split--center {
    align-items: center;
}

.frame,
.frame img {
    width: 100%;
}

.frame {
    padding: 0.65rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
}

.frame img {
    border-radius: calc(var(--radius) - 8px);
    object-fit: cover;
}

.frame--accent::before,
.contact-form-block::before,
.prose::before,
.info-panel::before,
.service-card::before,
.service-detail::before,
.contact-card::before,
.faq-item::before {
    content: "";
    position: absolute;
    inset: auto -2rem -4rem auto;
    width: 10rem;
    height: 10rem;
    background: radial-gradient(circle, rgba(243, 201, 105, 0.15), transparent 70%);
    pointer-events: none;
}

.check-list,
.bullet-list,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
}

.check-list li,
.bullet-list li {
    padding-left: 1.8rem;
    margin-bottom: 0.75rem;
}

.check-list li::before,
.bullet-list li::before {
    left: 0;
}

.section-heading {
    max-width: 44rem;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-heading--left,
.section-actions--left {
    margin-left: 0;
    text-align: left;
}

.cards {
    display: grid;
    gap: 1.4rem;
}

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

.service-card {
    padding: 1.6rem;
}

.service-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 999px;
    border: 1px solid rgba(243, 201, 105, 0.3);
    color: var(--gold-soft);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.steps {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.step {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.03);
}

.step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: rgba(211, 166, 70, 0.12);
    color: var(--gold-soft);
    font-weight: 700;
}

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

.info-panel,
.contact-card {
    padding: 1.65rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 3.5rem;
    border-bottom: 1px solid var(--line);
}

.page-hero--small {
    padding-bottom: 2.8rem;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 54rem;
}

.breadcrumbs {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(8, 8, 11, 0.72);
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 1rem 0;
}

.breadcrumbs li {
    color: var(--muted);
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 0.75rem;
    color: rgba(255,255,255,0.28);
}

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

.blog-hero__lead {
    font-size: clamp(1.08rem, 1.8vw, 1.28rem);
    color: var(--muted);
    max-width: 46rem;
}

.hub-hero__lead {
    font-size: clamp(1.08rem, 1.8vw, 1.28rem);
    color: var(--muted);
    max-width: 52rem;
}

.hub-hero__actions {
    margin-top: 1.9rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    color: var(--muted);
}

.hub-meta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    color: var(--muted);
}

.blog-pill {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(243, 201, 105, 0.2);
    background: rgba(243, 201, 105, 0.08);
    color: var(--gold-soft);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.72fr);
    gap: 2rem;
    align-items: start;
}

.blog-sidebar {
    display: grid;
    gap: 1.2rem;
    position: sticky;
    top: 8.5rem;
}

.blog-panel {
    padding: 1.6rem;
}

.article-rich {
    padding: 2rem;
}

.article-rich > :last-child {
    margin-bottom: 0;
}

.article-rich h2 {
    font-size: clamp(1.7rem, 2.4vw, 2.4rem);
    margin-top: 2.2rem;
    margin-bottom: 0.9rem;
}

.article-rich h3 {
    margin-top: 1.6rem;
}

.article-rich p,
.article-rich li {
    font-size: 1.03rem;
}

.article-rich ul,
.article-rich ol {
    margin: 0 0 1.2rem;
    padding-left: 1.3rem;
}

.article-rich blockquote {
    margin: 1.4rem 0;
    padding: 1rem 1.2rem;
    border-left: 3px solid var(--gold-soft);
    background: rgba(255,255,255,0.03);
    color: var(--muted);
}

.blog-links {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.blog-links li + li {
    margin-top: 0.8rem;
}

.blog-links a {
    color: var(--text);
}

.blog-links a:hover {
    color: var(--gold-soft);
}

.hub-cards .service-card h3,
.hub-links-grid .service-card h3 {
    margin-bottom: 0.65rem;
}

.hub-cards .service-card p + p {
    margin-top: 0.9rem;
}

.hub-card__content p {
    margin: 0;
}

.hub-card__content p + p,
.hub-card__content ul {
    margin-top: 0.75rem;
}

.services-stack {
    display: grid;
    gap: 1.2rem;
}

.service-detail {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 2rem;
    padding: 1.7rem;
}

.service-detail ul {
    margin: 0;
    padding-left: 1rem;
    color: var(--muted);
}

.service-detail li + li {
    margin-top: 0.45rem;
}

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

.faq-list details,
.faq-page details {
    padding: 0;
}

.faq-item,
.faq-list details {
    padding: 2.8rem 3rem;
}

.faq-page .faq-item {
    padding: 1.35rem 1.5rem;
}

summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    font-size: 1.08rem;
    padding: 0.2rem 2.5rem 0.25rem 0;
    position: relative;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: var(--gold-soft);
    font-size: 1.5rem;
    line-height: 1;
}

details[open] summary::after {
    content: "−";
}

details[open] p {
    margin-top: 1.15rem;
}

.faq-item > div {
    margin-top: 0.9rem;
    padding: 0.95rem 1rem;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item > div p:last-child {
    margin-bottom: 0;
}

.cta-band {
    padding: 3.25rem 0 5.5rem;
}

.cta-band__inner {
    padding: 1.8rem 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(243, 201, 105, 0.16);
    background:
        linear-gradient(180deg, rgba(243, 201, 105, 0.1), rgba(243, 201, 105, 0.02)),
        rgba(255,255,255,0.03);
    box-shadow: var(--shadow);
}

.cta-band__inner--center {
    justify-content: center;
    text-align: center;
}

.cta-band__content--center {
    max-width: 46rem;
}

.cta-band__inner--center .cta-band__actions {
    justify-content: center;
}

.section-actions--services {
    margin-top: 2.3rem;
}

.hub-cards + .section-actions {
    margin-top: 1.7rem;
}

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

.contact-layout {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.12fr);
    align-items: start;
}

.contact-panel {
    display: grid;
    gap: 1rem;
}

.contact-form-block {
    padding: 1.7rem;
}

.form-heading {
    margin-bottom: 1.5rem;
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

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

.field--hidden {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

label {
    font-weight: 600;
    color: var(--text);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    color: var(--text);
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--gold-soft) 50%), linear-gradient(135deg, var(--gold-soft) 50%, transparent 50%);
    background-position: calc(100% - 1.1rem) calc(50% - 2px), calc(100% - 0.8rem) calc(50% - 2px);
    background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
    background-repeat: no-repeat;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(243, 201, 105, 0.5);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 0 0 4px rgba(243, 201, 105, 0.08);
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 10rem;
}

.form-note {
    margin: 0;
    font-size: 0.93rem;
    color: var(--muted);
}

.alert {
    margin-bottom: 1.25rem;
    padding: 1rem 1.15rem;
    border-radius: 1rem;
    border: 1px solid transparent;
}

.alert p {
    margin: 0;
}

.alert--success {
    background: rgba(47, 139, 87, 0.14);
    border-color: rgba(47, 139, 87, 0.35);
}

.alert--danger {
    background: rgba(176, 67, 67, 0.14);
    border-color: rgba(176, 67, 67, 0.4);
}

.alert--warning {
    background: rgba(182, 139, 47, 0.14);
    border-color: rgba(182, 139, 47, 0.35);
}

.legal-section {
    padding-top: 4rem;
}

.prose {
    padding: 2rem;
    max-width: 900px;
}

.prose h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.prose a,
.footer-links a,
.contact-card a,
.topbar a {
    color: var(--gold-soft);
}

.site-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 3.2rem 0 1.4rem;
    background: rgba(4,4,6,0.65);
}

.footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.9fr 0.8fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.footer-brand img {
    width: 4rem;
    height: 4rem;
}

.footer-title {
    font-size: 1.05rem;
    margin-bottom: 0.95rem;
    font-family: var(--body-font);
    letter-spacing: 0.02em;
}

.footer-links li {
    margin-bottom: 0.55rem;
}

.footer-bottom {
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
    font-size: 0.94rem;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 1100px) {
    .hero__grid,
    .split,
    .contact-layout,
    .footer-grid,
    .grid-2,
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .split--reverse > :first-child,
    .split--reverse > :last-child {
        order: initial;
    }

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

    .footer-grid {
        gap: 2rem;
    }

    .hero__visual {
        justify-content: center;
    }

    .hero-card {
        max-width: 28rem;
    }

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

    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 900px) {
    .brand__text strong {
        font-size: 1.3rem;
    }

    .brand__text span {
        font-size: 0.92rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% + 0.65rem);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: var(--radius-sm);
        background: rgba(7, 7, 10, 0.98);
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: var(--shadow);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
        width: 100%;
    }

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

    .topbar__inner,
    .nav-wrap,
    .cta-band__inner,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero {
        padding-top: 4.5rem;
    }

    .page-hero {
        padding-top: 4rem;
    }

    .breadcrumbs ol,
    .blog-meta,
    .hub-meta {
        gap: 0.6rem;
    }
}

@media (max-width: 700px) {
    .section {
        padding: 4rem 0;
    }

    .topbar {
        display: none;
    }

    .brand img {
        width: 3.7rem;
        height: 3.7rem;
    }

    .brand__text strong {
        font-size: 1.1rem;
    }

    .trust-strip__grid,
    .cards--3,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-points,
    .hero__actions,
    .section-actions,
    .cta-band__actions,
    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero__actions .btn,
    .section-actions .btn,
    .cta-band__actions .btn,
    .form-actions .btn {
        width: 100%;
    }

    .contact-form-block,
    .prose,
    .cta-band__inner,
    .service-card,
    .info-panel,
    .contact-card,
    .service-detail {
        padding: 1.35rem;
    }

    body {
        padding-bottom: calc(5.7rem + env(safe-area-inset-bottom, 0px));
    }

    .mobile-cta-bar {
        position: fixed;
        left: 0.7rem;
        right: 0.7rem;
        bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
        z-index: 65;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
        padding: 0.6rem;
        border: 1px solid rgba(243, 201, 105, 0.28);
        border-radius: 1rem;
        background: rgba(7, 7, 10, 0.86);
        backdrop-filter: blur(10px);
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
    }

    .mobile-cta-bar .btn {
        min-height: 2.9rem;
        font-size: 0.93rem;
        padding: 0.62rem 0.85rem;
    }

    .mobile-cta-bar .btn--ghost {
        background: rgba(255, 255, 255, 0.08);
    }
}
