:root {
    --bg-primary: #081120;
    --bg-secondary: #0d1b2f;
    --bg-tertiary: #13243d;
    --gold: #c89b47;
    --gold-soft: rgba(200, 155, 71, 0.18);
    --gold-hover: #d8ad5c;
    --text-light: #f5f1e8;
    --text-strong: #fffaf2;
    --muted: #b8bcc6;
    --muted-deep: #8e97a5;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(200, 155, 71, 0.24);
    --card: rgba(10, 20, 35, 0.82);
    --card-strong: rgba(9, 18, 31, 0.92);
    --surface: rgba(255, 255, 255, 0.03);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.28);
    --shadow-deep: 0 24px 80px rgba(0, 0, 0, 0.42);
    --radius: 26px;
    --radius-lg: 36px;
    --container: min(1280px, calc(100% - 40px));
    --header-offset: 104px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text-light);
    background:
        radial-gradient(circle at top right, rgba(200, 155, 71, 0.12), transparent 22%),
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.045), transparent 24%),
        linear-gradient(180deg, #050a12 0%, #07101d 24%, #081120 55%, #060c16 100%);
    font-family: Georgia, "Times New Roman", serif;
}
main {
    padding-top: var(--header-offset);
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 4px 4px, 4px 4px;
    mix-blend-mode: soft-light;
}
.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;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, li, input, textarea, select, button, span, small, strong, em { font-family: "Segoe UI", Arial, sans-serif; }
.container { width: var(--container); margin: 0 auto; }
.section {
    position: relative;
    padding: 118px 0;
}
.section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(255,255,255,0.025), transparent 44%);
    opacity: 0.6;
    pointer-events: none;
}
.section-alt {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
        radial-gradient(circle at right center, rgba(200,155,71,0.08), transparent 28%);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    font-size: 12px;
}
.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, rgba(200,155,71,0), rgba(200,155,71,0.9));
}
h1, h2, h3, h4 { margin: 0 0 16px; line-height: 1.03; color: var(--text-strong); }
h1 {
    font-size: clamp(3.4rem, 7vw, 6.4rem);
    max-width: 9.5ch;
    letter-spacing: -0.04em;
}
h2 {
    font-size: clamp(2.35rem, 4.6vw, 4rem);
    max-width: 12ch;
    letter-spacing: -0.035em;
}
h3 { font-size: 1.5rem; }
h4 { font-size: 1.05rem; }
p {
    margin: 0 0 18px;
    line-height: 1.85;
    color: var(--muted);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    min-height: 56px;
    border-radius: 999px;
    border: 1px solid var(--border);
    transition: transform .24s ease, background-color .24s ease, border-color .24s ease, box-shadow .24s ease, color .24s ease;
    font-weight: 600;
    letter-spacing: 0.01em;
    backdrop-filter: blur(10px);
}
.btn:hover { transform: translateY(-3px); }
.btn-gold {
    background: linear-gradient(180deg, #d4aa5d, #bd8f3f);
    color: #17120a;
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 16px 38px rgba(148, 103, 28, 0.26);
}
.btn-gold:hover {
    background: linear-gradient(180deg, #deb66a, #c79542);
    box-shadow: 0 20px 42px rgba(148, 103, 28, 0.3);
}
.btn-outline {
    background: rgba(255,255,255,0.025);
    color: var(--text-light);
    border-color: rgba(255,255,255,0.14);
}
.btn-outline:hover {
    border-color: rgba(200,155,71,0.28);
    background: rgba(255,255,255,0.045);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    padding: 16px 0 0;
    transition: padding .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
    padding-top: 0;
    backdrop-filter: blur(18px);
}
.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 88px;
    padding: 0 20px;
    border-radius: 26px;
    border: 1px solid transparent;
    transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled .nav-shell {
    background: rgba(7, 15, 27, 0.76);
    border-color: rgba(255,255,255,0.08);
    box-shadow: var(--shadow-soft);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}
.brand-copy em {
    display: block;
    margin-bottom: 2px;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-style: normal;
}
.brand-mark {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(200,155,71,0.26), rgba(255,255,255,0.04)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(200,155,71,0.28);
    font-weight: 700;
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 0.06em;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.brand strong {
    display: block;
    font-size: 18px;
    letter-spacing: 0.01em;
    line-height: 1.18;
}
.brand small { color: var(--muted); }
.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}
.site-nav a {
    position: relative;
    color: var(--muted);
    font-size: 15px;
    transition: color .25s ease;
}
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(200,155,71,0), rgba(200,155,71,0.9), rgba(200,155,71,0));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}
.site-nav a.is-active,
.site-nav a:hover { color: var(--text-light); }
.site-nav a.is-active::after,
.site-nav a:hover::after { transform: scaleX(1); }
.nav-cta { min-height: 50px; padding-inline: 24px; }
.nav-toggle { display: none; background: none; border: 0; padding: 0; }
.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 5px 0;
    background: var(--text-light);
}

.hero-section {
    position: relative;
    padding: 6px 0 0;
    overflow: hidden;
}
.hero-stage {
    position: relative;
    min-height: calc(100vh - var(--header-offset));
    display: flex;
    align-items: center;
    padding: 24px 0 108px;
    background:
        linear-gradient(90deg, rgba(7, 13, 24, 0.1), rgba(7, 13, 24, 0)),
        var(--hero-image, url("../images/yvzhero2.PNG")) center center / cover no-repeat;
}
.hero-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 11, 20, 0.82) 0%, rgba(6, 11, 20, 0.62) 24%, rgba(6, 11, 20, 0.22) 48%, rgba(6, 11, 20, 0.06) 72%, rgba(6, 11, 20, 0.01) 100%),
        linear-gradient(180deg, rgba(6, 11, 20, 0.08) 0%, rgba(6, 11, 20, 0.02) 34%, rgba(6, 11, 20, 0.14) 100%),
        radial-gradient(circle at 76% 44%, rgba(200,155,71,0.12), transparent 26%);
    z-index: 0;
}
.hero-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-grain {
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 4px 4px, 4px 4px;
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: block;
}
.hero-copy {
    position: relative;
    max-width: min(620px, 46vw);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    text-align: left;
}
.hero-eyebrow {
    margin-bottom: 20px;
    font-size: 11px;
    letter-spacing: 0.26em;
    color: rgba(212, 175, 55, 0.88);
}
.hero-copy h1 {
    font-size: clamp(2.35rem, 3.5vw, 3.95rem);
    max-width: none;
    line-height: 1.01;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
    text-wrap: initial;
}
.hero-title-line {
    display: block;
    white-space: nowrap;
}
.hero-title-strong,
.hero-title-soft {
    display: inline-block;
}
.hero-title-strong {
    font-weight: 700;
    color: #f3eee4;
}
.hero-title-soft {
    font-weight: 600;
    color: #f3eee4;
    text-shadow: none;
}
.hero-lead {
    max-width: 29ch;
    font-size: 0.98rem;
    color: #d4d9e1;
    line-height: 1.84;
    margin-bottom: 0;
}
.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 26px;
    flex-wrap: wrap;
}
.hero-actions .btn {
    min-height: 50px;
    padding: 12px 22px;
}
.hero-actions .btn-outline {
    border-color: rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.02);
    color: rgba(243, 238, 228, 0.92);
}
.hero-trust-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    z-index: 3;
    width: 100%;
    margin: 0 auto;
}
.hero-stats-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    overflow: hidden;
    width: 100%;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.018)),
        rgba(7, 14, 24, 0.52);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}
.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 20px;
    position: relative;
}
.hero-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 16px;
    right: 0;
    bottom: 16px;
    width: 1px;
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.1), rgba(255,255,255,0));
}
.hero-stat-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--gold);
    border: 1px solid rgba(200,155,71,0.28);
    background: rgba(200,155,71,0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.hero-stat-icon svg {
    width: 19px;
    height: 19px;
    display: block;
}
.hero-stat-item strong {
    display: block;
    margin-bottom: 3px;
    font-size: 1.38rem;
    color: var(--text-strong);
    line-height: 1;
}
.hero-stat-item span:last-child {
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.55;
}

.section-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 38px;
}
.section-heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: 34px;
    align-items: end;
}
.section-heading-split p {
    margin-bottom: 8px;
    justify-self: end;
}

.card-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.two-col { grid-template-columns: repeat(2, 1fr); }
.content-card,
.prose-card,
.side-panel {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
        var(--card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}
.content-card {
    overflow: hidden;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background-color .28s ease;
    will-change: transform, box-shadow;
}
.content-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200,155,71,0.3);
    box-shadow: 0 24px 52px rgba(0,0,0,0.3);
}
.content-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.card-body { padding: 26px; }
.card-body p { font-size: 15px; line-height: 1.78; }
.service-card .card-body p,
.family-service-card .card-body p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-body a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 600;
}
.service-card-link {
    display: block;
    height: 100%;
    color: inherit;
}
.service-card-link:hover {
    color: inherit;
}
.service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 600;
}
.service-card-cta::after {
    content: "";
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, rgba(200,155,71,0.4), rgba(200,155,71,1));
}
.card-body a::after {
    content: "";
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, rgba(200,155,71,0.4), rgba(200,155,71,1));
}
.mini-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-services-showcase {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0)),
        radial-gradient(circle at top center, rgba(200,155,71,0.07), transparent 22%);
}
.services-showcase-head {
    text-align: center;
    margin-bottom: 36px;
}
.services-showcase-head h2 {
    max-width: none;
    margin-bottom: 0;
}
.services-showcase-head .eyebrow {
    justify-content: center;
}
.services-showcase-slider {
    position: relative;
    padding: 0 58px;
    width: 100%;
}
.services-showcase-viewport {
    overflow: hidden;
    width: 100%;
}
.services-showcase-grid {
    position: relative;
    z-index: 1;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    gap: 24px;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
    will-change: transform;
}
.services-showcase-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: var(--text-light);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
    transform: translateY(-50%);
}
.services-showcase-arrow:hover {
    transform: translateY(calc(-50% - 2px));
    color: var(--gold);
    border-color: rgba(200,155,71,0.24);
    background: rgba(200,155,71,0.08);
}
.services-showcase-arrow-prev { left: 0; }
.services-showcase-arrow-next { right: 0; }
.services-showcase-arrow svg {
    width: 18px;
    height: 18px;
}
.service-showcase-card {
    width: auto;
    flex: 0 0 calc((100% - 120px) / 6);
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.02)),
        rgba(9, 18, 31, 0.6);
    border: 1px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.18);
}
.service-showcase-media {
    padding: 0;
}
.service-showcase-media img {
    height: 248px;
    border-radius: 26px 26px 0 0;
    border: 0;
    object-fit: cover;
}
.service-showcase-body {
    padding: 28px 28px 30px;
}
.service-showcase-body h3 {
    margin-bottom: 12px;
    font-size: 1.38rem;
}
.service-showcase-body p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #cfd4dc;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.service-showcase-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.18);
    box-shadow: 0 26px 52px rgba(0,0,0,0.24);
}
.services-showcase-cta {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}
.btn-services-cta {
    min-height: 58px;
    padding: 15px 30px;
    background: linear-gradient(180deg, #d8b35d, #c89b47);
    box-shadow: 0 16px 30px rgba(122, 85, 22, 0.18);
}
.btn-services-cta:hover {
    background: linear-gradient(180deg, #dfbb69, #cea14f);
    box-shadow: 0 20px 38px rgba(122, 85, 22, 0.24), 0 0 24px rgba(212, 175, 55, 0.16);
}

.about-highlight,
.contact-cta-grid,
.contact-page-grid,
.prose-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 48px;
    align-items: center;
}
.section-approach {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 72px 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005)),
        radial-gradient(circle at 14% 42%, rgba(200,155,71,0.07), transparent 24%),
        linear-gradient(180deg, rgba(6,11,20,0.26), rgba(6,11,20,0));
}
.about-visual {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: auto;
    max-width: 620px;
    margin-inline: auto;
    padding: 16px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        rgba(8, 15, 25, 0.58);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 72px rgba(0,0,0,0.28);
}
.about-visual::after {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 1;
    border-radius: calc(var(--radius-lg) - 8px);
    background: rgba(6, 11, 20, 0.25);
    pointer-events: none;
}
.about-visual-glow {
    position: absolute;
    inset: auto auto 10% -6%;
    width: 42%;
    height: 38%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,155,71,0.18), rgba(200,155,71,0));
    filter: blur(22px);
    opacity: 0.8;
    z-index: 0;
}
.about-visual img,
.detail-cover {
    position: relative;
    z-index: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1.08 / 1;
    object-fit: cover;
    object-position: center 28%;
    filter: brightness(0.93) contrast(0.96);
    border-radius: calc(var(--radius-lg) - 8px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 42px rgba(0,0,0,0.2);
}
.about-visual-badge {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 2;
    max-width: 260px;
    padding: 14px 16px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
        rgba(8,17,32,0.44);
    border: 1px solid rgba(212,175,55,0.22);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.16);
}
.about-visual-badge span {
    display: block;
    margin-bottom: 6px;
    color: rgba(212,175,55,0.9);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 10px;
}
.about-visual-badge strong {
    display: block;
    color: var(--text-strong);
    line-height: 1.5;
    font-size: 0.92rem;
    font-weight: 600;
}
.about-copy .eyebrow {
    margin-bottom: 22px;
    color: rgba(200,155,71,0.88);
}
.about-copy h2 {
    max-width: 520px;
    margin-bottom: 16px;
    font-size: clamp(2rem, 3.45vw, 3.1rem);
    line-height: 1.06;
}
.about-copy p {
    max-width: 520px;
    margin-bottom: 22px;
    color: #c8ced8;
    font-size: 0.96rem;
    line-height: 1.78;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}
.feature-grid li {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 82px;
    padding: 16px 18px;
    margin-bottom: 0;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.038), rgba(255,255,255,0.012)),
        rgba(255,255,255,0.016);
    border: 1px solid rgba(255,255,255,0.05);
    color: #e0e4ea;
    line-height: 1.6;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}
.feature-grid li:hover {
    transform: translateY(-3px);
    border-color: rgba(212,175,55,0.16);
    box-shadow: 0 14px 26px rgba(0,0,0,0.16), 0 0 18px rgba(212,175,55,0.05);
}
.feature-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #d6ad57;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(214,173,87,0.18), rgba(214,173,87,0.04) 62%, rgba(214,173,87,0)),
        rgba(200,155,71,0.08);
    border: 1px solid rgba(214,173,87,0.2);
    box-shadow: 0 0 18px rgba(214,173,87,0.08), inset 0 1px 0 rgba(255,255,255,0.05);
}
.feature-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}
.about-cta {
    min-height: 54px;
    padding-inline: 24px;
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.028);
}

.section-proof {
    padding: 82px 0 74px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.006)),
        radial-gradient(circle at 50% 0%, rgba(255,255,255,0.03), transparent 28%),
        linear-gradient(180deg, #121b28 0%, #0d1624 100%);
}
.section-proof-head {
    text-align: center;
    margin-bottom: 26px;
    position: relative;
}
.section-proof-head h2 {
    display: inline-block;
    position: relative;
    max-width: none;
    margin-bottom: 0;
    margin-inline: auto;
    padding: 0 34px;
    font-size: clamp(1.95rem, 3.2vw, 2.8rem);
    line-height: 1.06;
}
.section-proof-head h2::before,
.section-proof-head h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: min(32vw, 280px);
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
}
.section-proof-head h2::before {
    right: 100%;
    margin-right: 14px;
}
.section-proof-head h2::after {
    left: 100%;
    margin-left: 14px;
}
.proof-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.9fr);
    gap: 18px;
    align-items: start;
    max-width: 1060px;
    margin: 0 auto;
}
.proof-slider-column,
.proof-form-wrap {
    min-width: 0;
    width: 100%;
}
.proof-slider-column {
    max-width: 100%;
}
.proof-slider-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        rgba(34, 42, 56, 0.88);
    box-shadow: 0 18px 34px rgba(0,0,0,0.22);
}
.proof-slider-viewport {
    overflow: hidden;
    border-radius: 10px;
}
.proof-slider-track {
    display: flex;
    transition: transform .42s cubic-bezier(.22,1,.36,1);
    will-change: transform;
}
.proof-slide {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 238px;
    padding: 28px 56px 26px 84px;
    background:
        linear-gradient(90deg, rgba(20, 25, 35, 0.72), rgba(20, 25, 35, 0.18)),
        radial-gradient(circle at right bottom, rgba(200,155,71,0.08), transparent 20%);
}
.proof-person {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.proof-person img {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.16);
}
.proof-person-copy strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.12rem;
    color: var(--text-strong);
    font-style: italic;
}
.proof-person-copy span {
    color: var(--muted);
    font-size: 0.9rem;
}
.proof-comment {
    max-width: 39ch;
    margin: 0 0 14px;
    color: #e0e4ea;
    font-size: 0.97rem;
    line-height: 1.78;
}
.proof-stars {
    display: inline-flex;
    gap: 6px;
    color: #d2a44e;
}
.proof-stars svg {
    width: 16px;
    height: 16px;
    display: block;
}
.proof-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: var(--text-light);
    transform: translateY(-50%);
    transition: transform .22s ease, border-color .22s ease, background-color .22s ease, box-shadow .22s ease, color .22s ease;
}
.proof-arrow:hover {
    color: #d4af57;
    border-color: rgba(212,175,55,0.32);
    background: rgba(212,175,55,0.12);
    box-shadow: 0 0 22px rgba(212,175,55,0.12), 0 12px 24px rgba(0,0,0,0.16);
}
.proof-arrow-prev { left: 10px; }
.proof-arrow-next { right: 10px; }
.proof-arrow svg {
    width: 16px;
    height: 16px;
}
.proof-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}
.proof-info-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 22px;
    max-width: 100%;
    margin-top: 18px;
    padding: 18px 22px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
        rgba(20, 28, 40, 0.82);
    box-shadow: 0 12px 24px rgba(0,0,0,0.14);
}
.proof-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: #f3eee4;
    font-size: 0.92rem;
    line-height: 1.45;
}
.proof-info-item span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.service-premium-hero {
    position: relative;
    padding: 118px 0 76px;
    background:
        radial-gradient(circle at 18% 24%, rgba(200,155,71,0.1), transparent 26%),
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
        rgba(6, 12, 22, 0.92);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-premium-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 42px;
    align-items: center;
}
.service-detail-page .service-premium-copy {
    max-width: 520px;
}
.service-detail-page .service-premium-copy h1 {
    max-width: 520px;
    margin-bottom: 16px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.service-detail-page .service-premium-copy p {
    max-width: 46ch;
    margin-bottom: 0;
    line-height: 1.75;
}
.service-premium-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.service-trust-points,
.cta-trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}
.service-trust-points li,
.cta-trust-points li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(200,155,71,0.16);
    background: rgba(255,255,255,0.03);
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.4;
}
.service-trust-points li::before,
.cta-trust-points li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(200,155,71,0.95), rgba(200,155,71,0.6));
    box-shadow: 0 0 0 4px rgba(200,155,71,0.08);
}
.service-premium-visual {
    padding: 18px;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.018)),
        rgba(10, 20, 35, 0.62);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-deep);
    backdrop-filter: blur(18px);
}
.family-service-grid,
.family-advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.family-service-card,
.family-advantage-card,
.faq-item {
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.02)),
        rgba(9, 18, 31, 0.78);
    backdrop-filter: blur(16px);
}
.family-service-card {
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.family-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200,155,71,0.22);
    box-shadow: 0 18px 36px rgba(0,0,0,0.2), 0 10px 22px rgba(200,155,71,0.06);
}
.family-service-icon,
.family-advantage-icon {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    color: var(--gold);
    border: 1px solid rgba(200,155,71,0.26);
    background: rgba(200,155,71,0.08);
}
.family-service-icon svg,
.family-advantage-icon svg {
    width: 24px;
    height: 24px;
}
.family-timeline {
    display: grid;
    gap: 20px;
}
.family-timeline-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
}
.family-timeline-step {
    display: grid;
    place-items: center;
    border-radius: 24px;
    min-height: 92px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    border: 1px solid rgba(200,155,71,0.24);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
        rgba(9, 18, 31, 0.88);
}
.family-timeline-card {
    padding: 24px 26px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
        rgba(10, 20, 35, 0.8);
    box-shadow: var(--shadow-soft);
}
.family-timeline-card h3 {
    margin-bottom: 10px;
}
.service-detail-page .section-heading {
    margin-bottom: 28px;
}
.service-detail-page .section-heading h2 {
    max-width: 400px;
    font-size: clamp(28px, 3vw, 32px);
    line-height: 1.3;
    letter-spacing: -0.015em;
}
.service-detail-page .section-heading .single-line-heading {
    max-width: none;
    white-space: nowrap;
}
.service-detail-page .prose-layout.single {
    max-width: 860px;
    margin: 0 auto;
}
.service-detail-page .prose-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.service-detail-page .prose-card h2,
.service-detail-page .family-cta-band h2 {
    max-width: 400px;
    font-size: clamp(28px, 3vw, 32px);
    line-height: 1.3;
}
.service-detail-page .prose-card p,
.service-detail-page .prose-card li,
.service-detail-page .faq-answer p,
.service-detail-page .family-timeline-card p,
.service-detail-page .family-service-card .card-body p,
.service-detail-page .family-cta-band p {
    line-height: 1.78;
}
.service-detail-page .prose-card p,
.service-detail-page .faq-answer p,
.service-detail-page .family-timeline-card p {
    margin-bottom: 16px;
}
.service-detail-page .family-service-card .card-body h3,
.service-detail-page .family-timeline-card h3 {
    line-height: 1.3;
}
.service-detail-page .faq-question {
    font-size: 1rem;
    line-height: 1.45;
}
.service-detail-page .family-cta-band p {
    max-width: 52ch;
}
.service-detail-page .cta-trust-points {
    margin-top: 16px;
}
.family-advantage-card h3 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.45;
}
.faq-list {
    display: grid;
    gap: 18px;
}
.faq-item {
    padding: 0;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 28px;
    border: 0;
    background: transparent;
    color: var(--text-strong);
    font-size: 1.08rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}
.faq-question strong {
    font-size: 1.4rem;
    color: var(--gold);
    transition: transform .24s ease;
}
.faq-answer {
    display: none;
    padding: 0 28px 24px;
}
.faq-item.is-open .faq-answer {
    display: block;
}
.faq-item.is-open .faq-question strong {
    transform: rotate(45deg);
}
.family-cta-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 32px;
    border-radius: 32px;
    border: 1px solid rgba(200,155,71,0.18);
    background:
        radial-gradient(circle at top right, rgba(200,155,71,0.12), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02)),
        rgba(9,18,31,0.9);
    box-shadow: var(--shadow-deep);
}
.family-cta-band h2 {
    max-width: 14ch;
    margin-bottom: 12px;
}
.family-cta-band p {
    margin-bottom: 0;
    max-width: 58ch;
}
.proof-info-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #d4af57;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.16);
}
.proof-info-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}
.proof-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.08);
    transition: width .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease;
}
.proof-dot.is-active {
    width: 24px;
    background: linear-gradient(90deg, rgba(212,175,55,0.94), rgba(212,175,55,0.62));
    border-color: rgba(212,175,55,0.3);
}
.proof-form {
    height: 100%;
    padding: 26px 22px 22px;
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        rgba(28, 35, 49, 0.88);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 34px rgba(0,0,0,0.2);
}
.proof-form h3 {
    margin-bottom: 8px;
    font-size: 1.75rem;
}
.proof-form-accent {
    width: 62px;
    height: 3px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(212,175,55,0.95), rgba(212,175,55,0.35));
}
.proof-form label {
    margin-bottom: 10px;
}
.proof-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 6px;
    letter-spacing: 0.04em;
}
.proof-form input,
.proof-form textarea,
.proof-form select {
    padding: 11px 14px;
    min-height: 42px;
    border-radius: 6px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.03);
}
.premium-form {
    position: relative;
    padding: 32px;
    background:
        radial-gradient(circle at top right, rgba(200,155,71,0.1), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02)),
        rgba(9,18,31,0.9);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    box-shadow: var(--shadow-deep);
}
.contact-form label { display: block; margin-bottom: 16px; }
.contact-form span {
    display: block;
    margin-bottom: 8px;
    color: #dde1e8;
    font-size: 14px;
}
.field-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.info-stack {
    display: grid;
    gap: 16px;
    align-content: start;
}
.info-card,
.map-card {
    padding: 24px 28px;
}
.info-card h3,
.map-card h3 {
    margin: 0 0 14px;
    font-size: clamp(1.55rem, 2.4vw, 2.1rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
}
.info-card p,
.map-card p {
    margin: 0;
    line-height: 1.72;
    overflow-wrap: anywhere;
}
input,
textarea,
select {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        rgba(255,255,255,0.015);
    color: var(--text-light);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.03), inset 0 -6px 20px rgba(0,0,0,0.16);
    transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(200,155,71,0.42);
    box-shadow: 0 0 0 4px rgba(200,155,71,0.08), inset 0 1px 1px rgba(255,255,255,0.03);
}
select {
    color-scheme: dark;
}
select option {
    color: #f5f1e8;
    background: #13243d;
}
select option:checked,
select option:hover {
    color: #fffaf2;
    background: #1b3353;
}
textarea { resize: vertical; }

.contact-premium-hero {
    padding-top: 132px;
    padding-bottom: 88px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005)),
        radial-gradient(circle at 82% 28%, rgba(200,155,71,0.18), transparent 22%),
        radial-gradient(circle at 18% 22%, rgba(255,255,255,0.045), transparent 18%);
    border-bottom: 1px solid rgba(200,155,71,0.12);
}
.contact-premium-hero::after,
.contact-premium-shell-section::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(92%, 1180px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(200,155,71,0), rgba(200,155,71,0.72), rgba(200,155,71,0));
    opacity: 0.8;
}
.contact-premium-hero-grid,
.contact-premium-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
    gap: 32px;
    align-items: start;
}
.contact-premium-copy {
    max-width: 620px;
    padding-top: 16px;
}
.contact-premium-copy h1 {
    max-width: 10ch;
    margin-bottom: 16px;
    font-size: clamp(2.9rem, 4.5vw, 4.9rem);
    line-height: 0.98;
}
.contact-premium-copy p {
    max-width: 42ch;
    margin-bottom: 0;
    color: #ccd2dc;
    font-size: 1.02rem;
    line-height: 1.86;
}
.contact-premium-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}
.contact-premium-actions .btn,
.contact-submit-btn {
    min-height: 58px;
    padding-inline: 28px;
}
.contact-premium-actions .btn:hover,
.contact-submit-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 28px rgba(200,155,71,0.18), 0 18px 40px rgba(0,0,0,0.24);
}
.contact-hero-trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}
.contact-hero-trust-points li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(200,155,71,0.16);
    background: rgba(255,255,255,0.03);
    color: #edf1f5;
    line-height: 1.4;
}
.contact-hero-trust-points li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(180deg, #dcc079, #c89b47);
    box-shadow: 0 0 0 5px rgba(200,155,71,0.08);
}
.contact-premium-visual {
    position: relative;
}
.contact-visual-frame {
    position: relative;
    isolation: isolate;
    min-height: 430px;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
        rgba(9, 18, 31, 0.84);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-deep);
}
.contact-visual-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.16;
}
.contact-visual-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(16px);
}
.contact-visual-orb-one {
    inset: 48px auto auto 52px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(200,155,71,0.26), rgba(200,155,71,0));
}
.contact-visual-orb-two {
    inset: auto 34px 34px auto;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(49,86,140,0.22), rgba(49,86,140,0));
}
.contact-visual-emblem {
    position: absolute;
    inset: 52% 50% auto auto;
    width: 126px;
    height: 126px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    border-radius: 32px;
    border: 1px solid rgba(200,155,71,0.26);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
        rgba(10,20,35,0.52);
    color: #efd49b;
    box-shadow: 0 18px 46px rgba(0,0,0,0.24);
}
.contact-visual-emblem svg {
    width: 56px;
    height: 56px;
}
.contact-visual-card {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    max-width: 320px;
    padding: 20px 22px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
        rgba(10,20,35,0.58);
    border: 1px solid rgba(200,155,71,0.18);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.18);
}
.contact-visual-card span {
    display: block;
    margin-bottom: 8px;
    color: rgba(200,155,71,0.9);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 11px;
}
.contact-visual-card strong {
    display: block;
    font-size: 1.18rem;
    line-height: 1.5;
}
.contact-premium-shell-section {
    padding-top: 86px;
    padding-bottom: 104px;
}
.contact-premium-form-column,
.contact-premium-info-column {
    display: grid;
    gap: 22px;
}
.contact-premium-form-column {
    order: 2;
}
.contact-premium-info-column {
    order: 1;
}
.contact-premium-section-head h2 {
    max-width: none;
    margin-bottom: 12px;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 1.14;
}
.contact-premium-section-head p {
    max-width: 54ch;
    margin-bottom: 0;
    color: #c8ced8;
}
.contact-premium-form {
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
        rgba(9, 18, 31, 0.82);
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.22);
}
.contact-field-grid {
    display: grid;
    gap: 16px;
}
.contact-field-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-floating-field {
    position: relative;
    display: block;
    margin-bottom: 16px;
}
.contact-floating-field input,
.contact-floating-field textarea,
.contact-floating-field select {
    width: 100%;
    min-height: 62px;
    padding: 26px 18px 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.09);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
        rgba(10, 19, 31, 0.88);
    color: var(--text-light);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.03), inset 0 -12px 24px rgba(0,0,0,0.1);
    transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease, background-color .24s ease;
}
.contact-floating-field textarea {
    min-height: 170px;
    padding-top: 30px;
}
.contact-floating-field span {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    color: #a8b3c0;
    font-size: 0.95rem;
    pointer-events: none;
    transition: transform .22s ease, color .22s ease, font-size .22s ease, top .22s ease;
}
.contact-floating-textarea span,
.contact-floating-field.has-value span,
.contact-floating-field:focus-within span {
    top: 16px;
    transform: none;
    font-size: 0.78rem;
    color: #f0cf8a;
    letter-spacing: 0.04em;
}
.contact-floating-textarea span {
    top: 16px;
}
.contact-floating-field input:focus,
.contact-floating-field textarea:focus,
.contact-floating-field select:focus {
    border-color: rgba(200,155,71,0.54);
    box-shadow: 0 0 0 4px rgba(200,155,71,0.08), 0 0 24px rgba(200,155,71,0.12);
}
.contact-floating-select {
    position: relative;
}
.contact-floating-select::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 27px;
    width: 10px;
    height: 10px;
    border-right: 1.5px solid rgba(200,155,71,0.9);
    border-bottom: 1.5px solid rgba(200,155,71,0.9);
    transform: rotate(45deg);
    pointer-events: none;
}
.contact-floating-select select {
    appearance: none;
    color-scheme: dark;
}
.contact-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 6px;
}
.contact-form-actions p {
    max-width: 32ch;
    margin-bottom: 0;
    color: #98a3b2;
    font-size: 0.92rem;
    line-height: 1.7;
}
.contact-submit-btn {
    background: linear-gradient(180deg, #d4aa5d, #bd8f3f);
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 18px 38px rgba(148,103,28,0.24);
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.contact-info-card,
.contact-map-card,
.contact-trust-card {
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.02)),
        rgba(9, 18, 31, 0.8);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
}
.contact-info-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 24px;
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.contact-info-card:hover,
.contact-trust-card:hover,
.contact-map-card:hover {
    transform: scale(1.02);
    border-color: rgba(200,155,71,0.24);
    box-shadow: 0 0 28px rgba(200,155,71,0.08), 0 24px 52px rgba(0,0,0,0.24);
}
.contact-info-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--gold);
    border: 1px solid rgba(200,155,71,0.24);
    background: rgba(200,155,71,0.06);
}
.contact-info-icon svg {
    width: 24px;
    height: 24px;
}
.contact-info-copy small {
    display: block;
    margin-bottom: 6px;
    color: rgba(200,155,71,0.9);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.72rem;
}
.contact-info-copy a,
.contact-info-copy strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-strong);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.28rem;
    line-height: 1.34;
}
.contact-info-copy a:hover {
    color: #f1d08f;
}
.contact-info-copy p {
    margin-bottom: 0;
    color: #aab4c0;
    line-height: 1.7;
}
.contact-map-card {
    padding: 26px;
}
.contact-map-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}
.contact-map-head .eyebrow {
    margin-bottom: 10px;
}
.contact-map-head h3 {
    margin-bottom: 0;
    font-size: clamp(1.65rem, 2.3vw, 2.15rem);
    line-height: 1.14;
}
.contact-map-head a {
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
}
.contact-map-shell {
    border-radius: 22px;
}
.contact-map-frame {
    height: 430px;
    border-radius: 22px;
}
.contact-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.contact-trust-card {
    display: grid;
    justify-items: start;
    gap: 14px;
    padding: 20px 22px;
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.contact-trust-icon {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(180deg, #d8b35d, #c89b47);
    box-shadow: 0 0 0 7px rgba(200,155,71,0.08);
}
.contact-trust-card strong {
    line-height: 1.5;
    font-size: 1rem;
}
.contact-whatsapp-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 999px;
    color: #f6fbf8;
    background:
        linear-gradient(180deg, rgba(34,197,94,0.96), rgba(22,163,74,0.94));
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 18px 34px rgba(10,70,37,0.28);
    transition: transform .24s ease, box-shadow .24s ease;
}
.contact-whatsapp-fab:hover {
    transform: scale(1.03);
    box-shadow: 0 0 28px rgba(34,197,94,0.22), 0 18px 34px rgba(10,70,37,0.28);
}
.contact-whatsapp-fab svg {
    width: 24px;
    height: 24px;
}

.section-blog-premium {
    padding-top: 148px;
    padding-bottom: 148px;
    background:
        radial-gradient(circle at top center, rgba(200,155,71,0.08), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}
.blog-premium-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 34px;
}
.blog-premium-copy {
    max-width: none;
}
.blog-premium-all {
    flex: 0 0 auto;
    min-height: 58px;
    padding-inline: 28px;
    border-color: rgba(255,255,255,0.12);
    color: #eef2f7;
}
.blog-premium-all:hover {
    background: linear-gradient(180deg, #d7b15d, #c5923f);
    border-color: rgba(212,175,55,0.34);
    color: #081120;
}
.blog-premium-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}
.blog-premium-card {
    min-height: 100%;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.022)),
        rgba(9, 18, 31, 0.78);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 42px rgba(0,0,0,0.22);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.blog-premium-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200,155,71,0.22);
    box-shadow: 0 28px 58px rgba(0,0,0,0.3);
}
.blog-premium-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-premium-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.blog-premium-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,11,20,0.12) 0%, rgba(6,11,20,0.06) 36%, rgba(6,11,20,0.46) 100%);
    pointer-events: none;
}
.blog-premium-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}
.blog-premium-card:hover .blog-premium-media img {
    transform: scale(1.03);
}
.blog-premium-date {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(200,155,71,0.16);
    border: 1px solid rgba(212,175,55,0.24);
    color: #f6e7c5;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.02em;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.blog-premium-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 28px 28px 30px;
}
.blog-premium-category {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-bottom: 14px;
    min-height: 30px;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,0.2);
    background: rgba(200,155,71,0.1);
    color: #e6c57e;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.blog-premium-body h3 {
    margin-bottom: 14px;
    font-size: 1.45rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-premium-card:hover .blog-premium-body h3 {
    color: #e2bf71;
}
.blog-premium-body p {
    margin-bottom: 22px;
    color: #c6ced9;
    font-size: 15px;
    line-height: 1.72;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-premium-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: #dde3eb;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: color .25s ease, transform .25s ease;
}
.blog-premium-card:hover .blog-premium-cta {
    color: var(--gold);
}
.blog-premium-cta span:last-child {
    transition: transform .25s ease;
}
.blog-premium-link:hover .blog-premium-cta span:last-child {
    transform: translateX(4px);
}
.blog-premium-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 36px;
    padding: 34px 36px;
    border-radius: 30px;
    border: 1px solid rgba(200,155,71,0.18);
    background:
        radial-gradient(circle at top right, rgba(200,155,71,0.16), transparent 30%),
        linear-gradient(135deg, rgba(17,30,49,0.98), rgba(10,19,32,0.9)),
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
        rgba(9,18,31,0.88);
    box-shadow: 0 20px 48px rgba(0,0,0,0.22);
}
.blog-premium-footer-copy h3 {
    margin-bottom: 10px;
    max-width: 20ch;
    font-size: 2rem;
    line-height: 1.15;
}
.blog-premium-footer-copy p {
    margin-bottom: 0;
    color: #d0d6de;
    max-width: 58ch;
}
.blog-premium-footer-btn {
    flex: 0 0 auto;
    min-height: 58px;
    padding-inline: 30px;
    box-shadow: 0 18px 34px rgba(148, 103, 28, 0.28);
}

.blog-article-page {
    padding-top: 120px;
    padding-bottom: 132px;
    background:
        radial-gradient(circle at top center, rgba(200,155,71,0.07), transparent 22%),
        linear-gradient(180deg, rgba(255,255,255,0.014), rgba(255,255,255,0));
}
.blog-article-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    color: #adb7c6;
    font-size: 13px;
}
.blog-article-breadcrumb a:hover {
    color: var(--text-light);
}
.blog-article-hero {
    max-width: 860px;
    margin-bottom: 30px;
}
.blog-article-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,0.18);
    background: rgba(200,155,71,0.08);
    color: #e6c57e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.blog-article-hero h1 {
    max-width: 18ch;
    margin-bottom: 16px;
    font-size: clamp(2.2rem, 3.8vw, 3.35rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
}
.blog-article-excerpt {
    max-width: 62ch;
    margin-bottom: 18px;
    color: #cfd5de;
    font-size: 1rem;
    line-height: 1.82;
}
.blog-article-hero-meta,
.blog-article-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.blog-article-hero-meta span,
.blog-article-meta-row span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: #ced5df;
    font-size: 12px;
}
.blog-article-cover-card {
    margin-bottom: 34px;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
        rgba(9,18,31,0.82);
    box-shadow: 0 22px 54px rgba(0,0,0,0.24);
}
.blog-article-cover {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
}
.blog-article-meta-row {
    padding: 18px 22px 22px;
}
.blog-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 30px;
    align-items: start;
}
.blog-article-main {
    min-width: 0;
}
.blog-article-content {
    padding: 36px 38px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
        rgba(9,18,31,0.84);
    box-shadow: 0 18px 44px rgba(0,0,0,0.2);
}
.blog-article-content > :first-child {
    margin-top: 0;
}
.blog-article-content h2,
.blog-article-content h3 {
    color: var(--text-strong);
    letter-spacing: -0.02em;
}
.blog-article-content h2 {
    margin: 34px 0 16px;
    font-size: clamp(1.75rem, 2.6vw, 2.2rem);
    line-height: 1.22;
}
.blog-article-content h3 {
    margin: 28px 0 14px;
    font-size: 1.28rem;
    line-height: 1.32;
}
.blog-article-content p,
.blog-article-content li {
    color: #d1d8e1;
    line-height: 1.88;
    font-size: 1rem;
}
.blog-article-content p {
    margin: 0 0 18px;
}
.blog-article-content ul,
.blog-article-content ol {
    margin: 0 0 22px;
    padding-left: 22px;
}
.blog-article-content li + li {
    margin-top: 10px;
}
.blog-article-content blockquote,
.blog-article-note,
.blog-article-disclaimer {
    margin: 30px 0;
    padding: 22px 24px;
    border-radius: 24px;
    border: 1px solid rgba(212,175,55,0.16);
    background:
        linear-gradient(135deg, rgba(212,175,55,0.08), rgba(255,255,255,0.02)),
        rgba(11,21,36,0.92);
    box-shadow: inset 3px 0 0 rgba(212,175,55,0.7);
}
.blog-article-content blockquote p,
.blog-article-note p,
.blog-article-disclaimer p {
    margin-bottom: 0;
}
.blog-article-note strong,
.blog-article-disclaimer strong {
    display: block;
    margin-bottom: 8px;
    color: #f2d28d;
    font-size: 0.95rem;
}
.blog-article-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}
.blog-article-share > span {
    color: #dfe5ee;
    font-weight: 600;
}
.blog-article-share-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.blog-article-share-links a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: #d6dde7;
    transition: border-color .25s ease, color .25s ease, transform .25s ease;
}
.blog-article-share-links a:hover {
    color: var(--gold);
    border-color: rgba(212,175,55,0.24);
    transform: translateY(-2px);
}
.blog-article-pagination {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}
.blog-article-pagination-link {
    padding: 22px 24px;
    border-radius: 24px;
    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)),
        rgba(9,18,31,0.82);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.blog-article-pagination-link:hover {
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.2);
    box-shadow: 0 18px 42px rgba(0,0,0,0.22);
}
.blog-article-pagination-link span {
    display: block;
    margin-bottom: 10px;
    color: #d6c084;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.blog-article-pagination-link strong {
    display: block;
    line-height: 1.5;
}
.blog-article-pagination-link-next {
    text-align: right;
}
.blog-article-sidebar {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 18px;
}
.blog-article-sidecard {
    padding: 22px 24px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02)),
        rgba(9,18,31,0.86);
    box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}
.blog-article-sidecard h2 {
    margin-bottom: 14px;
    font-size: 1.2rem;
    line-height: 1.25;
}
.blog-article-toc {
    display: grid;
    gap: 10px;
}
.blog-article-toc a {
    color: #d5dde6;
    line-height: 1.55;
    transition: color .25s ease, transform .25s ease;
}
.blog-article-toc a:hover {
    color: var(--gold);
    transform: translateX(3px);
}
.blog-article-toc a.is-sub {
    padding-left: 12px;
    color: #afbac8;
    font-size: 0.95rem;
}
.blog-article-sidecard-cta p {
    margin-bottom: 16px;
}
.blog-article-sidecard-cta .btn {
    width: 100%;
}
.blog-article-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 42px;
    padding: 34px 36px;
    border-radius: 30px;
    border: 1px solid rgba(212,175,55,0.18);
    background:
        radial-gradient(circle at top right, rgba(200,155,71,0.16), transparent 30%),
        linear-gradient(135deg, rgba(17,30,49,0.98), rgba(10,19,32,0.9));
    box-shadow: 0 22px 56px rgba(0,0,0,0.24);
}
.blog-article-bottom-cta-copy h2 {
    max-width: 20ch;
    margin-bottom: 12px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.18;
}
.blog-article-bottom-cta-copy p {
    max-width: 62ch;
    margin-bottom: 0;
}
.blog-article-bottom-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.blog-article-related {
    margin-top: 54px;
}
.blog-article-related-head {
    margin-bottom: 28px;
}
.blog-article-related-head h2 {
    max-width: none;
}

.site-footer {
    position: relative;
    padding: 96px 0 28px;
    background:
        radial-gradient(circle at top center, rgba(200,155,71,0.09), transparent 24%),
        linear-gradient(180deg, rgba(4,8,14,0.9), rgba(3,7,12,0.98));
    border-top: 1px solid rgba(255,255,255,0.06);
}
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 16%);
    pointer-events: none;
}
.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.35fr 0.75fr 0.75fr 1fr;
    gap: 30px;
    padding-bottom: 32px;
}
.footer-intro { max-width: 430px; }
.footer-text { max-width: 40ch; }
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.footer-badges span,
.social-links a {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
    transition: border-color .25s ease, color .25s ease, transform .25s ease;
}
.social-links a:hover,
.footer-badges span:hover {
    border-color: rgba(200,155,71,0.28);
    color: var(--text-light);
    transform: translateY(-1px);
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 13px;
    color: var(--muted);
}
.footer-links a:hover { color: var(--text-light); }
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.footer-bottom {
    position: relative;
    z-index: 1;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: var(--muted);
    font-size: 14px;
}
.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.page-hero {
    padding: 110px 0 54px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02), transparent),
        radial-gradient(circle at right top, rgba(200,155,71,0.08), transparent 28%);
}
.page-hero-contact {
    padding: 94px 0 40px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.018), transparent),
        radial-gradient(circle at 82% 4%, rgba(200,155,71,0.08), transparent 22%);
}
.page-hero-contact h1 {
    margin-bottom: 14px;
    font-size: clamp(2.95rem, 4.35vw, 4.35rem);
    line-height: 1;
    max-width: none;
}
.page-hero-contact p {
    max-width: 42ch;
    margin-bottom: 0;
    color: #bcc5d1;
    font-size: 0.98rem;
    line-height: 1.8;
}
.page-hero-legal h1 {
    max-width: none;
    white-space: nowrap;
}
.page-hero-about h1 {
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    max-width: none;
}
.prose-card { padding: 30px; }
.prose-card p { max-width: none; }
.single { grid-template-columns: 1fr; }
.side-panel {
    padding: 30px;
    align-self: start;
}
.about-page {
    display: grid;
    gap: 28px;
}
.about-page .prose-card h2 {
    font-size: clamp(28px, 3vw, 34px);
    line-height: 1.2;
    margin: 28px 0 14px;
}
.about-page .prose-card p {
    margin-bottom: 18px;
    line-height: 1.82;
}
.about-page .prose-layout {
    align-items: start;
}
.about-side-panel h3 {
    max-width: 18ch;
    line-height: 1.2;
    margin-bottom: 22px;
}
.about-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}
.about-list li {
    position: relative;
    padding-left: 20px;
    color: var(--text-light);
    line-height: 1.7;
}
.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(180deg, #d8b35d, #c89b47);
    box-shadow: 0 0 0 4px rgba(200,155,71,0.12);
}
.legal-page {
    padding-top: 72px;
}
.legal-layout {
    max-width: 980px;
    margin: 0 auto;
}
.legal-card {
    padding: 36px;
}
.legal-card h2 {
    margin: 34px 0 14px;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1.2;
    max-width: none;
    white-space: nowrap;
}
.legal-card h2:first-child {
    margin-top: 0;
}
.legal-card p,
.legal-card li {
    color: #d6dde6;
    line-height: 1.84;
    font-size: 1rem;
}
.legal-card p {
    margin-bottom: 18px;
}
.legal-card ul {
    margin: 0 0 20px;
    padding-left: 22px;
}
.legal-card li + li {
    margin-top: 10px;
}
.legal-card strong {
    color: var(--text-strong);
}
.legal-card a {
    color: var(--gold);
}
.legal-card a:hover {
    color: #e5c27b;
}
.contact-page-basic {
    padding: 48px 0 82px;
    background:
        radial-gradient(circle at 14% 12%, rgba(255,255,255,0.03), transparent 22%),
        radial-gradient(circle at 88% 8%, rgba(200,155,71,0.06), transparent 20%);
}
.contact-page-basic > .container {
    width: min(1160px, calc(100% - 40px));
}
.contact-page-grid-compact {
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
    gap: 34px;
    align-items: start;
}
.contact-info-rail {
    gap: 14px;
}
.contact-compact-card,
.contact-compact-map {
    padding: 22px 24px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
        rgba(11, 20, 34, 0.9);
    border: 1px solid rgba(255,255,255,0.075);
    box-shadow: 0 16px 32px rgba(0,0,0,0.18);
    backdrop-filter: blur(14px);
    transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}
.contact-compact-card {
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-compact-card:hover,
.contact-compact-map:hover,
.contact-form-panel:hover {
    border-color: rgba(200,155,71,0.16);
    box-shadow: 0 20px 40px rgba(0,0,0,0.22), 0 0 0 1px rgba(200,155,71,0.04);
    transform: translateY(-2px);
}
.contact-compact-card h3,
.contact-compact-map h3 {
    margin: 0 0 8px;
    font-size: clamp(1.48rem, 1.95vw, 1.76rem);
    line-height: 1.12;
    color: #f4efe6;
}
.contact-compact-link,
.contact-compact-text {
    display: block;
    margin: 0;
    color: #c2cad5;
    font-size: 0.96rem;
    line-height: 1.74;
    overflow-wrap: anywhere;
}
.contact-compact-link:hover,
.contact-compact-map .map-link-wrap a:hover {
    color: #ecd198;
}
.contact-compact-card-address .contact-compact-text {
    max-width: 36ch;
}
.contact-compact-map {
    min-height: auto;
    padding-bottom: 18px;
}
.contact-compact-map .map-embed-frame {
    height: 248px;
}
.contact-form-panel {
    position: relative;
    min-height: 100%;
    padding: 26px 28px 28px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.075);
    background:
        radial-gradient(circle at top right, rgba(200,155,71,0.08), transparent 22%),
        linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02)),
        rgba(11, 20, 34, 0.9);
    box-shadow: 0 18px 36px rgba(0,0,0,0.2);
    backdrop-filter: blur(14px);
}
.contact-form-panel::before {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(200,155,71,0), rgba(200,155,71,0.45), rgba(200,155,71,0));
    opacity: 0.8;
}
.contact-basic-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}
.contact-basic-field {
    display: block;
    margin: 0;
}
.contact-basic-field-full {
    grid-column: 1 / -1;
}
.contact-basic-field span {
    display: block;
    margin-bottom: 9px;
    color: #c4ccd7;
    font-size: 11.5px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.contact-basic-field input,
.contact-basic-field textarea,
.contact-basic-field select {
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.075);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.038), rgba(255,255,255,0.015)),
        rgba(10, 18, 31, 0.92);
    color: #f5f1e8;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02), inset 0 -10px 20px rgba(0,0,0,0.12);
    transition: border-color .24s ease, box-shadow .24s ease, background-color .24s ease;
}
.contact-basic-field input::placeholder,
.contact-basic-field textarea::placeholder {
    color: #7f8998;
}
.contact-basic-field textarea {
    min-height: 164px;
    resize: vertical;
}
.contact-basic-field input:focus,
.contact-basic-field textarea:focus,
.contact-basic-field select:focus {
    border-color: rgba(200,155,71,0.4);
    box-shadow: 0 0 0 4px rgba(200,155,71,0.07), 0 10px 24px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.02);
}
.contact-basic-field select {
    padding-right: 42px;
}
.contact-basic-actions {
    margin-top: 18px;
    display: flex;
    justify-content: flex-start;
}
.contact-basic-submit {
    min-height: 50px;
    padding: 13px 26px;
    border-radius: 15px;
    font-size: 0.95rem;
    box-shadow: 0 14px 28px rgba(148,103,28,0.24);
}
.contact-basic-submit:hover {
    transform: translateY(-2px) scale(1.01);
}
.contact-compact-map .map-embed-shell {
    margin-top: 12px;
    border-radius: 16px;
    border-color: rgba(200,155,71,0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.contact-compact-map .map-link-wrap {
    margin-top: 12px;
}
.contact-compact-map .map-link-wrap a {
    display: inline-flex;
    align-items: center;
    color: #d8bb7b;
    font-size: 0.9rem;
    font-weight: 600;
}
body:has(.contact-page-basic) .site-footer {
    padding-top: 78px;
    background:
        radial-gradient(circle at top center, rgba(200,155,71,0.07), transparent 22%),
        linear-gradient(180deg, rgba(4,8,14,0.88), rgba(3,7,12,0.98));
}
.about-reasons-block {
    padding: 34px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
        var(--card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}
.about-reasons-block .section-heading {
    margin-bottom: 24px;
}
.about-reasons-block .section-heading h2 {
    max-width: none;
    font-size: clamp(1.95rem, 3vw, 2.8rem);
    white-space: nowrap;
}
.about-reason-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}
.about-reason-card {
    min-height: 100%;
    padding: 22px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)),
        rgba(8, 17, 32, 0.42);
}
.about-reason-index {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}
.about-reason-card p {
    margin: 0;
    line-height: 1.7;
}
.flash-stack {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 120;
    display: grid;
    gap: 12px;
    width: min(420px, calc(100% - 24px));
}
.flash {
    padding: 16px 18px;
    border-radius: 18px;
    font-family: "Segoe UI", Arial, sans-serif;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 42px rgba(0,0,0,0.24);
    transform: translateY(-12px);
    opacity: 0;
    transition: transform .28s ease, opacity .28s ease;
}
.flash.is-mounted {
    transform: translateY(0);
    opacity: 1;
}
.flash-success {
    background:
        linear-gradient(180deg, rgba(58,125,91,.28), rgba(58,125,91,.18)),
        rgba(10,19,31,0.92);
    border-color: rgba(120,214,154,0.26);
}
.flash-error {
    background:
        linear-gradient(180deg, rgba(160,64,64,.28), rgba(160,64,64,.18)),
        rgba(10,19,31,0.92);
    border-color: rgba(247,125,125,0.24);
}
.map-placeholder {
    min-height: 240px;
    display: grid;
    place-items: center;
    color: var(--muted);
    border: 1px dashed rgba(200,155,71,0.3);
    border-radius: 18px;
}
.map-embed-shell {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(200,155,71,0.18);
    background: rgba(8, 17, 32, 0.45);
}
.map-embed-frame {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
    pointer-events: auto;
}
.map-link-wrap {
    margin: 14px 0 0;
}
.map-link-wrap a {
    color: var(--gold);
}
.desktop-only { display: inline-flex; }
.mobile-only { display: none; }

[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .58s cubic-bezier(.22,1,.36,1), transform .58s cubic-bezier(.22,1,.36,1);
    will-change: opacity, transform;
}
[data-reveal="left"] { transform: translateX(24px); }
[data-reveal="right"] { transform: translateX(-24px); }
[data-reveal].is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .btn,
    .content-card,
    .site-nav a::after,
    .footer-badges span,
    .social-links a {
        transition: none;
    }
}

@media (max-width: 1200px) {
    :root { --header-offset: 100px; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .service-showcase-card { flex-basis: calc((100% - 48px) / 3); }
    .blog-premium-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .blog-premium-copy h2 { max-width: 16ch; }
    .blog-article-layout {
        grid-template-columns: 1fr;
    }
    .blog-article-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero-copy { max-width: 100%; }
    .hero-stage {
        background-position: center center;
        padding: 24px 0 96px;
    }
}

@media (max-width: 1480px) {
    .nav-shell {
        gap: 16px;
        padding-inline: 18px;
    }
    .site-nav {
        gap: 22px;
    }
    .brand strong {
        font-size: 17px;
    }
    .hero-copy {
        max-width: min(580px, 48vw);
        padding: 28px 26px 22px;
    }
    .hero-copy h1 {
        font-size: clamp(2.2rem, 3.3vw, 3.6rem);
        max-width: 10.4ch;
    }
}

@media (max-width: 980px) {
    :root { --container: min(100%, calc(100% - 28px)); }
    .section,
    .site-footer { padding-top: 82px; }
    .section-heading-split,
    .about-highlight,
    .contact-cta-grid,
    .contact-page-grid,
    .prose-layout,
    .service-premium-hero-grid,
    .footer-grid,
    .card-grid,
    .two-col,
    .field-grid,
    .family-service-grid,
    .family-advantage-grid,
    .hero-stats-band,
    .footer-bottom {
        grid-template-columns: 1fr;
    }
    .blog-premium-grid {
        grid-template-columns: 1fr;
    }
    .blog-premium-head,
    .blog-premium-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .about-reasons-block .section-heading h2 {
        font-size: clamp(1.55rem, 5.2vw, 2rem);
    }
    .about-reason-grid {
        grid-template-columns: 1fr;
    }
    .blog-article-bottom-cta,
    .blog-article-pagination {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-page-grid-compact {
        gap: 28px;
    }
    .contact-page-basic {
        padding: 38px 0 72px;
    }
    .contact-page-basic > .container {
        width: min(100%, calc(100% - 28px));
    }
    .contact-form-panel {
        order: 1;
        padding: 24px;
    }
    .contact-info-rail {
        order: 2;
    }
    .contact-compact-card,
    .contact-compact-map {
        padding: 20px 22px;
    }
    .contact-compact-card-address .contact-compact-text {
        max-width: none;
    }
    .blog-premium-copy,
    .blog-premium-copy h2,
    .blog-premium-footer-copy h3,
    .blog-premium-footer-copy p,
    .blog-article-bottom-cta-copy h2,
    .blog-article-bottom-cta-copy p {
        max-width: 100%;
    }
    .services-showcase-slider {
        padding: 0;
    }
    .services-showcase-arrow {
        display: none;
    }
    .service-showcase-card {
        flex-basis: 100%;
    }
    .section-heading-split p { justify-self: start; }
    .site-nav {
        position: absolute;
        top: 92px;
        left: 14px;
        right: 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 22px;
        border-radius: 24px;
        background: rgba(8,17,32,0.96);
        border: 1px solid rgba(255,255,255,0.08);
        display: none;
        box-shadow: var(--shadow-deep);
    }
    .site-nav.is-open { display: flex; }
    .nav-toggle { display: block; }
    .desktop-only { display: none; }
    .mobile-only { display: inline-flex; }
    .hero-stage {
        display: block;
        min-height: auto;
        padding: 54px 0 104px;
        background-position: 78% 18%;
        background-size: auto 100%;
    }
    .hero-stage::before {
        background:
            linear-gradient(90deg, rgba(6,11,20,0.9) 0%, rgba(6,11,20,0.76) 34%, rgba(6,11,20,0.32) 58%, rgba(6,11,20,0.08) 78%, rgba(6,11,20,0.02) 100%),
            linear-gradient(180deg, rgba(6,11,20,0.08) 0%, rgba(6,11,20,0.02) 34%, rgba(6,11,20,0.14) 100%),
            radial-gradient(circle at 76% 44%, rgba(200,155,71,0.12), transparent 26%);
    }
    .section-approach {
        min-height: auto;
        display: block;
        padding: 72px 0;
    }
    .section-proof {
        min-height: auto;
        display: block;
        padding: 72px 0;
    }
    .proof-grid,
    .proof-info-strip {
        grid-template-columns: 1fr;
    }
    .proof-grid {
        max-width: 720px;
        justify-items: center;
    }
    .proof-slider-card {
        max-height: none;
    }
    .proof-slide {
        min-height: 228px;
        padding: 24px 46px 22px 62px;
    }
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-visual img,
    .detail-cover {
        height: auto;
    }
    .hero-trust-wrap {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: auto;
        margin-top: 28px;
        padding-top: 10px;
    }
    .hero-stats-band {
        background:
            linear-gradient(180deg, rgba(9,18,31,0.92), rgba(9,18,31,0.84)),
            rgba(9,18,31,0.88);
        box-shadow: 0 18px 34px rgba(0,0,0,0.22);
    }
    .hero-copy h1 {
        font-size: clamp(2.05rem, 5.5vw, 2.75rem);
        max-width: 100%;
        text-wrap: wrap;
    }
    .hero-copy {
        max-width: min(320px, 66vw);
        padding: 10px 0 0;
        border-radius: 0;
    }
    .hero-lead {
        max-width: 20ch;
        font-size: 0.94rem;
        line-height: 1.76;
    }
    .hero-actions {
        max-width: min(320px, 66vw);
        gap: 12px;
        margin-top: 28px;
    }
    .hero-stat-item:not(:last-child)::after { display: none; }
    .footer-bottom { display: grid; }
    .proof-slider-column,
    .proof-form-wrap {
        max-width: 100%;
    }
    .proof-form-wrap {
        justify-self: center;
    }
    .family-timeline-item,
    .family-cta-band {
        grid-template-columns: 1fr;
    }
    .service-detail-page .service-premium-copy,
    .service-detail-page .service-premium-copy h1,
    .service-detail-page .section-heading h2,
    .service-detail-page .prose-card,
    .service-detail-page .prose-card h2,
    .service-detail-page .family-cta-band h2 {
        max-width: 100%;
    }
    .service-trust-points,
    .cta-trust-points {
        gap: 10px;
    }
    .contact-premium-hero {
        padding-top: 108px;
        padding-bottom: 72px;
    }
    .contact-premium-hero-grid,
    .contact-premium-shell {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contact-premium-form-column,
    .contact-premium-info-column {
        order: initial;
    }
    .contact-premium-copy,
    .contact-premium-copy p {
        max-width: 100%;
    }
    .contact-premium-copy h1 {
        max-width: 9ch;
        font-size: clamp(2.4rem, 8vw, 3.5rem);
    }
    .contact-premium-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-premium-actions .btn {
        width: 100%;
    }
    .contact-hero-trust-points {
        gap: 10px;
    }
    .contact-visual-frame {
        min-height: 320px;
    }
    .contact-visual-emblem {
        top: 44%;
        right: 26px;
        width: 100px;
        height: 100px;
    }
    .contact-field-grid.two,
    .contact-info-grid,
    .contact-trust-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-form-actions p {
        max-width: none;
    }
    .contact-map-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-map-frame {
        height: 360px;
    }
    .contact-whatsapp-fab {
        right: 16px;
        bottom: 16px;
    }
    .flash-stack {
        top: 14px;
        left: 14px;
        right: 14px;
        width: auto;
    }
}

@media (max-width: 640px) {
    h1 { font-size: clamp(2.8rem, 13vw, 4rem); max-width: 100%; }
    h2 { max-width: 100%; }
    .section-blog-premium {
        padding-top: 92px;
        padding-bottom: 92px;
    }
    .blog-article-page {
        padding-top: 88px;
        padding-bottom: 92px;
    }
    .blog-article-hero h1 {
        max-width: 100%;
        font-size: clamp(1.9rem, 7vw, 2.5rem);
    }
    .blog-article-content {
        padding: 24px;
    }
    .blog-article-cover {
        aspect-ratio: 16 / 10;
    }
    .blog-article-sidebar {
        grid-template-columns: 1fr;
    }
    .blog-article-bottom-cta,
    .blog-article-pagination {
        gap: 16px;
    }
    .blog-article-bottom-cta-actions {
        width: 100%;
    }
    .blog-article-bottom-cta-actions .btn,
    .blog-article-pagination-link {
        width: 100%;
    }
    .blog-premium-copy h2 {
        max-width: 100%;
        font-size: clamp(1.8rem, 7.2vw, 2.35rem);
        line-height: 1.2;
    }
    .blog-premium-body {
        padding: 22px 22px 24px;
    }
    .blog-premium-footer {
        padding: 24px;
    }
    .blog-premium-footer-copy h3 {
        font-size: 1.6rem;
    }
    .blog-premium-all,
    .blog-premium-footer-btn {
        width: 100%;
        justify-content: center;
    }
    .brand strong { font-size: 16px; }
    .brand small { font-size: 13px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .hero-stage {
        background-position: 82% 12%;
        padding: 54px 0 28px;
    }
    .hero-copy h1 {
        max-width: 100%;
        font-size: clamp(1.8rem, 7.2vw, 2.28rem);
        line-height: 1.06;
    }
    .hero-eyebrow {
        margin-bottom: 14px;
        font-size: 10px;
        letter-spacing: 0.2em;
    }
    .hero-lead {
        max-width: 18ch;
        font-size: 0.9rem;
        line-height: 1.72;
    }
    .hero-copy {
        max-width: min(288px, 68vw);
        padding-top: 4px;
    }
    .hero-actions {
        max-width: min(288px, 68vw);
        margin-top: 30px;
    }
    .hero-actions .btn {
        min-height: 48px;
    }
    .hero-title-line {
        white-space: normal;
    }
    .hero-trust-wrap {
        margin-top: 24px;
        padding-top: 12px;
    }
    .page-hero-contact {
        padding: 88px 0 38px;
    }
    .page-hero-contact h1 {
        font-size: clamp(2.4rem, 11vw, 3.2rem);
    }
    .page-hero-contact p {
        max-width: 28ch;
        font-size: 0.92rem;
        line-height: 1.72;
    }
    .contact-page-basic {
        padding: 28px 0 58px;
    }
    .contact-basic-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-panel {
        padding: 20px 18px 22px;
        border-radius: 18px;
    }
    .contact-compact-card,
    .contact-compact-map {
        padding: 18px;
    }
    .contact-compact-card h3,
    .contact-compact-map h3 {
        font-size: clamp(1.55rem, 7vw, 1.9rem);
    }
    .contact-compact-card {
        min-height: auto;
    }
    .contact-basic-field input,
    .contact-basic-field textarea,
    .contact-basic-field select {
        min-height: 50px;
        padding: 13px 14px;
    }
    .contact-compact-map .map-embed-frame {
        height: 220px;
    }
    .contact-basic-submit {
        width: 100%;
        justify-content: center;
    }
    .hero-stats-band {
        border-radius: 20px;
        border-color: rgba(255,255,255,0.1);
    }
    .hero-stat-item {
        padding: 14px 16px;
    }
    .section-approach {
        padding: 64px 0;
    }
    .section-proof-head {
        text-align: center;
        margin-bottom: 26px;
    }
    .section-proof-head h2 {
        max-width: none;
        padding: 0 20px;
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }
    .section-proof-head h2::before,
    .section-proof-head h2::after {
        display: none;
    }
    .proof-comment {
        max-width: 100%;
        font-size: 0.95rem;
    }
    .proof-info-strip {
        grid-template-columns: 1fr;
        padding: 14px;
    }
    .proof-info-item span:last-child {
        white-space: normal;
    }
    .proof-slide {
        min-height: 214px;
        padding: 22px 34px 20px 34px;
    }
    .proof-person {
        gap: 14px;
        margin-bottom: 14px;
    }
    .proof-person img {
        width: 64px;
        height: 64px;
    }
    .service-premium-hero {
        padding: 96px 0 64px;
    }
    .service-premium-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .service-premium-actions .btn {
        width: 100%;
    }
    .proof-arrow {
        width: 42px;
        height: 42px;
    }
    .proof-arrow-prev { left: 8px; }
    .proof-arrow-next { right: 8px; }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .about-copy h2,
    h2 { max-width: 100%; }
    .about-visual img,
    .detail-cover {
        height: auto;
    }
    .about-visual-badge {
        left: 18px;
        right: auto;
        bottom: 18px;
        max-width: none;
    }
    .feature-grid li {
        align-items: flex-start;
    }
    .family-service-card,
    .family-advantage-card,
    .family-timeline-card,
    .family-cta-band {
        padding: 22px;
    }
    .faq-question {
        padding: 22px 22px 18px;
    }
    .faq-answer {
        padding: 0 22px 22px;
    }
    .hero-lead {
        max-width: 26ch;
        font-size: 0.95rem;
        line-height: 1.78;
    }
    .premium-form { padding: 24px; }
    .about-reasons-block { padding: 22px; }
    .legal-card { padding: 24px; }
    .card-body,
    .testimonial-card,
    .prose-card,
    .side-panel { padding: 22px; }
    .contact-premium-shell-section {
        padding-top: 64px;
        padding-bottom: 88px;
    }
    .contact-premium-form,
    .contact-map-card {
        padding: 22px;
    }
    .contact-info-card {
        grid-template-columns: 50px minmax(0, 1fr);
        padding: 18px 18px 20px;
    }
    .contact-info-icon {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }
    .contact-info-copy a,
    .contact-info-copy strong {
        font-size: 1.12rem;
    }
    .contact-visual-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 16px 18px;
    }
    .contact-visual-card strong {
        font-size: 1rem;
    }
    .contact-whatsapp-fab {
        min-height: 54px;
        padding-inline: 16px;
    }
    .contact-whatsapp-fab span {
        display: none;
    }
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

iframe,
video,
canvas,
svg {
    max-width: 100%;
}

.brand-copy,
.nav-shell > *,
.section-heading-split > *,
.card-grid > *,
.two-col > *,
.footer-grid > *,
.footer-bottom > *,
.prose-layout > *,
.about-highlight > *,
.contact-page-grid > *,
.contact-page-grid-compact > *,
.blog-article-layout > *,
.proof-grid > *,
.proof-info-strip > *,
.contact-basic-grid > *,
.contact-field-grid > * {
    min-width: 0;
}

.footer-links li,
.footer-links a,
.footer-policy-links a,
.contact-compact-link,
.contact-compact-text,
.contact-info-copy a,
.contact-info-copy p,
.blog-premium-body h3,
.card-body h3,
.blog-article-pagination-link strong,
.blog-article-share-links a {
    overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
    }

    .section-heading h2,
    .section-heading-split h2,
    .page-hero h1 {
        max-width: 100%;
    }
}

@media (max-width: 860px) {
    .nav-shell {
        min-height: 80px;
        padding-inline: 16px;
        border-radius: 22px;
    }

    .brand {
        gap: 12px;
        max-width: calc(100% - 56px);
    }

    .brand-mark {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .brand-copy em {
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .brand strong {
        font-size: 15px;
        line-height: 1.14;
    }

    .site-nav {
        top: 84px;
    }

    .page-hero,
    .page-hero-contact {
        padding-top: 88px;
        padding-bottom: 40px;
    }

    .page-hero p,
    .page-hero-contact p {
        max-width: 34ch;
    }

    .content-card img,
    .service-showcase-media img {
        height: 220px;
    }

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

    .footer-intro,
    .footer-text {
        max-width: none;
    }

    .footer-bottom {
        display: grid;
        gap: 12px;
    }

    .blog-article-share-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 560px) {
    :root {
        --container: min(100%, calc(100% - 22px));
    }

    .section,
    .site-footer {
        padding-top: 72px;
    }

    .nav-shell {
        padding-inline: 14px;
        border-radius: 20px;
    }

    .brand-mark {
        width: 46px;
        height: 46px;
        border-radius: 15px;
        font-size: 0.92rem;
    }

    .brand strong {
        font-size: 14px;
    }

    .brand small {
        font-size: 12px;
    }

    .site-nav {
        top: 78px;
        left: 11px;
        right: 11px;
        padding: 18px;
        border-radius: 20px;
    }

    .btn,
    .nav-cta {
        min-height: 48px;
        padding: 13px 20px;
    }

    .page-hero {
        padding: 82px 0 36px;
    }

    .page-hero p,
    .page-hero-contact p {
        max-width: none;
    }

    .content-card img,
    .service-showcase-media img,
    .blog-article-cover {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .card-body,
    .testimonial-card,
    .prose-card,
    .side-panel,
    .contact-form-panel,
    .contact-compact-card,
    .contact-compact-map {
        padding: 20px;
    }

    .card-body h3,
    .contact-compact-card h3,
    .contact-compact-map h3 {
        font-size: 1.35rem;
    }

    .footer-policy-links {
        gap: 12px;
    }

    .footer-links li,
    .footer-bottom,
    .footer-policy-links {
        font-size: 13px;
    }

    .proof-slide {
        padding-inline: 22px;
    }
}
