:root {
    --ink: #091722;
    --ink-soft: #405361;
    --navy: #06131e;
    --navy-2: #0c2637;
    --navy-3: #123549;
    --steel: #70818c;
    --accent: #dfa03d;
    --accent-strong: #bd761f;
    --accent-pale: #f4d49e;
    --paper: #f2f5f6;
    --paper-warm: #f8f7f3;
    --line: #d6dfe3;
    --white: #ffffff;
    --success: #1fae67;
    --shadow-sm: 0 14px 40px rgba(4, 20, 31, 0.09);
    --shadow-lg: 0 32px 90px rgba(2, 15, 24, 0.22);
    --radius-sm: 8px;
    --radius: 16px;
    --shell: 1220px;
}


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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
}

::selection {
    color: var(--ink);
    background: var(--accent-pale);
}

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

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

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

:focus-visible {
    outline: 3px solid rgba(223, 160, 61, 0.86);
    outline-offset: 4px;
}

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

.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 {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 15px;
    color: var(--ink);
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transform: translateY(-160%);
}

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

/* Header */
.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
    background: rgba(6, 19, 30, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 45px rgba(2, 12, 20, 0.23);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: max-content;
}

.brand-mark {
    position: relative;
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--ink);
    background: linear-gradient(145deg, #f1bc62, var(--accent));
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 6px 14px 6px 6px;
    box-shadow: inset 0 -5px 0 rgba(112, 58, 8, 0.12), 0 9px 25px rgba(0, 0, 0, 0.17);
    font-size: 0.79rem;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.05em;
}

.brand-mark::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    right: -7px;
    bottom: 8px;
    background: rgba(9, 23, 34, 0.42);
    transform: rotate(-45deg);
}

.brand-logo {
    position: relative;
    width: 47px;
    height: 47px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 7px 14px 7px 7px;
    box-shadow: 0 9px 25px rgba(0, 0, 0, 0.17);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    padding: 5px;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    font-size: 1.06rem;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.brand-copy small {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.67rem;
    font-weight: 750;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 0.9rem;
    font-weight: 750;
}

.main-nav > a:not(.button) {
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    transition: color 160ms ease;
}

.main-nav > a:not(.button)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -10px;
    height: 2px;
    background: var(--accent);
    transition: right 180ms ease;
}

.main-nav > a:not(.button):hover {
    color: var(--white);
}

.main-nav > a:not(.button):hover::after {
    right: 0;
}

.menu-toggle {
    width: 47px;
    height: 43px;
    display: none;
    padding: 10px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
    width: 100%;
    height: 2px;
    display: block;
    margin: 4px 0;
    background: currentColor;
    border-radius: 2px;
}

/* Shared controls */
.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 21px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 0.94rem;
    font-weight: 850;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 160ms ease, color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--ink);
    background: linear-gradient(135deg, #edb455, var(--accent));
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 30px rgba(130, 75, 11, 0.22);
}

.button-primary:hover {
    background: #f1b958;
    box-shadow: 0 18px 38px rgba(130, 75, 11, 0.3);
}

.button-light {
    color: var(--ink);
    background: var(--white);
    border-color: var(--white);
    box-shadow: var(--shadow-sm);
}

.button-light:hover {
    color: var(--white);
    background: transparent;
}

.button-large {
    min-height: 58px;
    padding-inline: 26px;
}

.button-small {
    min-height: 44px;
    padding: 10px 17px;
    font-size: 0.86rem;
}

.button-status {
    width: 8px;
    height: 8px;
    display: inline-block;
    flex: 0 0 auto;
    background: var(--success);
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(31, 174, 103, 0.15);
}

.text-link,
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 850;
}

.text-link {
    color: rgba(255, 255, 255, 0.83);
}

.text-link-dark {
    color: var(--accent-pale);
}

.text-link span,
.card-link span {
    transition: transform 160ms ease;
}

.text-link:hover span,
.card-link:hover span {
    transform: translate(3px, -2px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-strong);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    line-height: 1.25;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 24px;
    height: 2px;
    display: inline-block;
    background: currentColor;
}

.eyebrow-light {
    color: var(--accent-pale);
}

/* Hero */
.hero {
    position: relative;
    min-height: 860px;
    display: flex;
    align-items: stretch;
    overflow: visible;
    color: var(--white);
    background: var(--navy);
}

.hero-media,
.hero-vignette {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 66% center;
    animation: none;
}

.hero-vignette {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(4, 14, 23, 0.98) 0%, rgba(5, 17, 27, 0.9) 34%, rgba(5, 17, 27, 0.38) 64%, rgba(5, 17, 27, 0.2) 100%),
        linear-gradient(0deg, rgba(4, 14, 23, 0.92) 0%, transparent 40%, rgba(4, 14, 23, 0.2) 100%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 790px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
    align-items: center;
    gap: 80px;
    padding-top: 145px;
    padding-bottom: 170px;
}

.hero-copy {
    max-width: 770px;
    animation: hero-copy-in 640ms 80ms ease-out both;
}

.hero-eyebrow {
    color: #f3c475;
}

.hero h1 {
    max-width: 800px;
    margin: 26px 0 25px;
    color: var(--white);
    font-size: clamp(3.35rem, 6.4vw, 6.15rem);
    font-weight: 850;
    letter-spacing: -0.072em;
    line-height: 0.96;
    text-wrap: balance;
}

.hero-lead {
    max-width: 630px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(1.06rem, 1.6vw, 1.24rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 38px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 720px;
    padding: 27px 0 0;
    margin: 42px 0 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-points li {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 20px 0 17px;
    color: rgba(255, 255, 255, 0.53);
    font-size: 0.77rem;
    line-height: 1.4;
}

.hero-points li:first-child {
    padding-left: 0;
}

.hero-points li + li {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-points strong {
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.84rem;
}

.hero-note {
    align-self: end;
    justify-self: end;
    width: min(100%, 350px);
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 17px;
    margin-bottom: 55px;
    padding: 22px;
    background: rgba(8, 24, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(15px);
    animation: hero-copy-in 680ms 220ms ease-out both;
}

.hero-note-mark {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--accent);
    border-radius: 5px 14px 5px 5px;
    font-size: 0.74rem;
    font-weight: 950;
}

.hero-note div {
    display: flex;
    flex-direction: column;
}

.hero-note small,
.hero-note span:last-child {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-note strong {
    margin: 5px 0 10px;
    font-size: 1rem;
    line-height: 1.35;
}

.hero-services {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(8, 28, 42, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transform: translate(-50%, 50%);
}

.hero-services > a {
    min-width: 0;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 15px;
    padding: 25px 27px;
    color: var(--ink);
    transition: color 180ms ease, background-color 180ms ease;
}

.hero-services > a + a {
    border-left: 1px solid var(--line);
}

.hero-services > a:hover {
    color: var(--white);
    background: var(--navy-2);
}

.hero-services > a > span {
    color: var(--accent-strong);
    font-size: 0.73rem;
    font-weight: 950;
    letter-spacing: 0.08em;
}

.hero-services > a:hover > span {
    color: var(--accent);
}

.hero-services div {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.hero-services strong {
    font-size: 1.04rem;
    font-weight: 900;
}

.hero-services small {
    overflow: hidden;
    margin-top: 3px;
    color: var(--ink-soft);
    font-size: 0.72rem;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hero-services > a:hover small {
    color: rgba(255, 255, 255, 0.62);
}

.hero-services b {
    color: var(--steel);
    font-size: 1.05rem;
    font-weight: 500;
    transition: transform 160ms ease;
}

.hero-services > a:hover b {
    color: var(--accent);
    transform: translate(3px, -3px);
}

/* Sections */
.section {
    padding: 116px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 54px;
}

.section-heading h2,
.method-intro h2,
.local-copy h2,
.faq-grid h2,
.contact-band h2 {
    margin: 17px 0 0;
    font-size: clamp(2.45rem, 4.4vw, 4.3rem);
    font-weight: 820;
    letter-spacing: -0.06em;
    line-height: 1.02;
    text-wrap: balance;
}

.section-heading p,
.method-intro > p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1.02rem;
}

/* Services */
.services-section {
    padding-top: 190px;
    background:
        linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(9, 23, 34, 0.025) 50%, transparent calc(50% + 1px)),
        var(--paper-warm);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 410px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 35px 32px 31px;
    background: var(--white);
    border: 1px solid rgba(10, 31, 45, 0.1);
    border-radius: var(--radius);
    box-shadow: 0 10px 32px rgba(6, 25, 38, 0.045);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--accent-strong));
    transform: scaleX(0.2);
    transform-origin: left;
    transition: transform 220ms ease;
}

.service-card::after {
    content: "";
    position: absolute;
    right: -45px;
    top: -45px;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(9, 23, 34, 0.055);
    border-radius: 50%;
}

.service-card:hover {
    z-index: 2;
    border-color: rgba(189, 118, 31, 0.28);
    box-shadow: 0 28px 64px rgba(6, 25, 38, 0.12);
    transform: translateY(-8px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-number {
    margin-bottom: 62px;
    color: #b7c1c7;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.service-category {
    align-self: flex-start;
    display: inline-flex;
    padding: 6px 10px;
    color: var(--accent-strong);
    background: rgba(223, 160, 61, 0.11);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-card h3 {
    margin: 18px 0 13px;
    font-size: clamp(1.45rem, 2vw, 1.8rem);
    font-weight: 820;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.service-card p {
    margin: 0 0 26px;
    color: var(--ink-soft);
    font-size: 0.94rem;
}

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

.card-link {
    color: var(--ink);
}

/* Method */
.method-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 4% 15%, rgba(42, 98, 129, 0.28), transparent 30%),
        linear-gradient(135deg, var(--navy), #081c2a 72%, #0d2b3d);
}

.method-section::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -180px;
    bottom: -210px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.02), 0 0 0 140px rgba(255, 255, 255, 0.015);
}

.method-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 100px;
}

.method-intro {
    position: sticky;
    top: 130px;
    align-self: start;
}

.method-intro h2 {
    color: var(--white);
}

.method-intro > p {
    max-width: 560px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.64);
}

.method-intro .text-link {
    margin-top: 30px;
}

.method-list {
    padding: 0;
    margin: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.method-list li {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 23px;
    padding: 32px 24px 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: padding-left 180ms ease, background-color 180ms ease;
}

.method-list li:hover {
    padding-left: 20px;
    background: rgba(255, 255, 255, 0.035);
}

.method-list li > span {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 950;
    letter-spacing: 0.12em;
}

.method-list strong {
    display: block;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 820;
}

.method-list p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.94rem;
}

/* Posts */
.content-section {
    background: var(--paper);
}

.post-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    grid-auto-flow: dense;
    gap: 20px;
}

.post-card {
    min-width: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(9, 30, 43, 0.09);
    border-radius: var(--radius);
    box-shadow: 0 12px 36px rgba(6, 23, 35, 0.05);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card:hover {
    box-shadow: 0 26px 58px rgba(6, 23, 35, 0.12);
    transform: translateY(-5px);
}

.post-card:first-child {
    grid-row: span 2;
}

.post-card:not(:first-child) {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
}

.post-image {
    position: relative;
    height: 100%;
    min-height: 225px;
    display: block;
    overflow: hidden;
    background: var(--navy-2);
}

.post-card:first-child .post-image {
    height: 355px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.post-card:hover .post-image img {
    transform: scale(1.035);
}

.post-image-placeholder {
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, transparent 0 48%, rgba(223, 160, 61, 0.22) 48% 49%, transparent 49% 100%),
        linear-gradient(145deg, #0b2435, #15445b);
}

.post-image-placeholder::before,
.post-image-placeholder::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.post-image-placeholder::before {
    width: 190px;
    height: 190px;
    right: -75px;
    top: -75px;
}

.post-image-placeholder::after {
    width: 110px;
    height: 110px;
    left: -42px;
    bottom: -42px;
}

.post-image-placeholder span {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.post-card-body {
    min-width: 0;
    padding: 28px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 16px;
    margin-bottom: 17px;
    color: #778691;
    font-size: 0.72rem;
    font-weight: 750;
}

.post-meta span {
    color: var(--accent-strong);
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.post-card h3 {
    margin: 0 0 12px;
    font-size: 1.34rem;
    font-weight: 820;
    letter-spacing: -0.037em;
    line-height: 1.2;
}

.post-card:first-child h3 {
    font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.post-card h3 a:hover {
    color: var(--accent-strong);
}

.post-card p {
    margin: 0 0 21px;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.post-card:not(:first-child) p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* Local */
.local-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(100deg, #0a2535, #123f54);
}

.local-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background: repeating-linear-gradient(110deg, transparent 0 54px, rgba(255, 255, 255, 0.06) 55px, transparent 56px 110px);
}

.local-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
    align-items: center;
    gap: 90px;
}

.local-index {
    position: relative;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(5, 20, 30, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
}

.local-index::before {
    content: "DDD";
    position: absolute;
    top: 24px;
    left: 26px;
    color: var(--accent);
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.local-index span {
    color: transparent;
    font-size: clamp(7rem, 13vw, 10.5rem);
    font-weight: 900;
    letter-spacing: -0.09em;
    line-height: 0.8;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.48);
}

.local-index small {
    margin-top: 23px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.local-copy h2 {
    max-width: 780px;
    color: var(--white);
}

.local-copy p {
    max-width: 690px;
    margin: 25px 0 31px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 1.03rem;
}

/* FAQ */
.faq-section {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 100px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    padding: 25px 54px 25px 0;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.4;
    list-style: none;
    cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    top: 21px;
    right: 0;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--paper);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 500;
}

.faq-list details[open] summary::after {
    content: "−";
    color: var(--white);
    background: var(--navy-2);
}

.faq-list p {
    max-width: 700px;
    margin: -5px 55px 25px 0;
    color: var(--ink-soft);
}

/* Contact and footer */
.contact-band {
    color: var(--ink);
    background:
        radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.34), transparent 28%),
        linear-gradient(135deg, #d38a2b, #efb653);
}

.contact-band-inner {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.contact-band .eyebrow-light {
    color: #70400a;
}

.contact-band h2 {
    max-width: 760px;
    margin-top: 13px;
}

.contact-band p {
    max-width: 660px;
    margin: 20px 0 0;
    color: rgba(9, 23, 34, 0.72);
}

.contact-band .button {
    flex: 0 0 auto;
}

.contact-band .button-light:hover {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.75);
}

.site-footer {
    color: rgba(255, 255, 255, 0.57);
    background: #040c12;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(150px, 0.55fr) minmax(220px, 0.75fr);
    gap: 70px;
    padding-top: 75px;
    padding-bottom: 60px;
}

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

.footer-brand p {
    max-width: 390px;
    margin: 25px 0 0;
    font-size: 0.9rem;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
}

.footer-grid a:not(.brand):hover {
    color: var(--white);
}

.footer-title {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 24px;
    padding-bottom: 27px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
}

.whatsapp-float {
    position: fixed;
    z-index: 90;
    right: 24px;
    bottom: 24px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 19px;
    color: var(--white);
    background: #168e54;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    box-shadow: 0 18px 45px rgba(5, 42, 26, 0.28);
    font-size: 0.86rem;
    font-weight: 850;
    transition: transform 160ms ease, background-color 160ms ease;
}

.whatsapp-float:hover {
    background: #0f7c47;
    transform: translateY(-3px);
}

.whatsapp-dot {
    width: 9px;
    height: 9px;
    background: #8ff0b8;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(143, 240, 184, 0.13);
}

/* Article pages */
.article-hero {
    position: relative;
    overflow: hidden;
    padding-top: 175px;
    padding-bottom: 105px;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 20%, rgba(54, 117, 148, 0.35), transparent 30%),
        linear-gradient(125deg, var(--navy), #0a2b3e);
}

.article-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -170px;
    bottom: -260px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.018), 0 0 0 160px rgba(255, 255, 255, 0.012);
}

.article-hero-inner {
    position: relative;
    z-index: 1;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 55px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
    font-weight: 750;
}

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

.article-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-labels span {
    color: var(--accent-pale);
}

.article-hero h1 {
    max-width: 980px;
    margin: 23px 0 24px;
    font-size: clamp(3rem, 6.2vw, 5.8rem);
    font-weight: 850;
    letter-spacing: -0.067em;
    line-height: 0.98;
    text-wrap: balance;
}

.article-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.08rem;
}

.article-cover {
    position: relative;
    z-index: 2;
    margin-top: -45px;
}

.article-cover img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    border: 8px solid var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.42fr);
    gap: 90px;
    padding-top: 90px;
    padding-bottom: 118px;
}

.article-content {
    max-width: 790px;
    color: #263c4a;
    font-size: 1.04rem;
}

.article-content > :first-child {
    margin-top: 0;
}

.article-content h2 {
    margin: 50px 0 18px;
    color: var(--ink);
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 830;
    letter-spacing: -0.045em;
    line-height: 1.15;
}

.article-content p {
    margin: 0 0 24px;
}

.article-content ul {
    padding-left: 23px;
    margin: 0 0 28px;
}

.article-content li {
    margin: 9px 0;
}

.article-content li::marker {
    color: var(--accent-strong);
}

.article-aside {
    position: sticky;
    top: 120px;
    align-self: start;
    padding: 31px;
    color: var(--white);
    background: linear-gradient(145deg, var(--navy), var(--navy-2));
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.article-aside h2 {
    margin: 14px 0 15px;
    font-size: 1.55rem;
    font-weight: 820;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.article-aside p {
    margin: 0 0 25px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

.article-aside .button {
    width: 100%;
}

.related-section {
    background: var(--paper);
}

.compact-heading {
    grid-template-columns: 1fr;
    margin-bottom: 38px;
}

.compact-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

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

.related-card {
    min-height: 225px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    background: var(--white);
    border: 1px solid rgba(9, 30, 43, 0.1);
    border-radius: var(--radius);
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.related-card:hover {
    color: var(--white);
    background: var(--navy-2);
    transform: translateY(-5px);
}

.related-card > span {
    margin-bottom: auto;
    color: var(--accent-strong);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.related-card:hover > span {
    color: var(--accent);
}

.related-card strong {
    max-width: 520px;
    font-size: 1.45rem;
    font-weight: 820;
    letter-spacing: -0.035em;
    line-height: 1.2;
}

.related-card small {
    margin-top: 19px;
    color: var(--ink-soft);
    font-weight: 800;
}

.related-card:hover small {
    color: rgba(255, 255, 255, 0.65);
}

.not-found {
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 170px 0 100px;
    background: var(--paper);
}

.not-found-inner {
    max-width: 760px;
}

.not-found h1 {
    margin: 18px 0;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 850;
    letter-spacing: -0.067em;
    line-height: 0.98;
}

.not-found p {
    margin: 0 0 30px;
    color: var(--ink-soft);
    font-size: 1.06rem;
}

@keyframes hero-copy-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-image-in {
    from {
        opacity: 0.7;
        transform: scale(1.025);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1060px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) 290px;
        gap: 45px;
    }

    .hero h1 {
        font-size: clamp(3.25rem, 7vw, 5.35rem);
    }

    .hero-services > a {
        padding-inline: 20px;
    }

    .method-grid,
    .faq-grid {
        gap: 65px;
    }

    .post-card:not(:first-child) {
        grid-template-columns: 145px minmax(0, 1fr);
    }

    .article-layout {
        gap: 55px;
    }
}

@media (max-width: 860px) {
    .header-inner {
        min-height: 76px;
    }

    .menu-toggle {
        position: relative;
        z-index: 2;
        display: block;
        flex: 0 0 auto;
    }

    .main-nav {
        position: absolute;
        z-index: 1;
        top: 100%;
        right: 0;
        left: 0;
        width: 100%;
        height: calc(100vh - 76px);
        height: calc(100dvh - 76px);
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 25px max(24px, env(safe-area-inset-right)) max(36px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        background: #06131e;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 200ms ease, opacity 180ms ease, visibility 200ms ease;
    }

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

    .main-nav > a:not(.button) {
        padding: 19px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.05rem;
    }

    .main-nav > a:not(.button)::after {
        display: none;
    }

    .main-nav .button {
        margin-top: 25px;
    }

    .hero {
        min-height: 0;
        display: block;
        padding-bottom: 0;
        overflow: hidden;
    }

    .hero-media img {
        object-position: 71% center;
    }

    .hero-vignette {
        background:
            linear-gradient(90deg, rgba(4, 14, 23, 0.96), rgba(4, 14, 23, 0.62)),
            linear-gradient(0deg, rgba(4, 14, 23, 0.98), transparent 55%);
    }

    .hero-grid {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 45px;
        padding-top: 145px;
        padding-bottom: 60px;
    }

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

    .hero-note {
        justify-self: start;
        margin: 0;
    }

    .hero-services {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        grid-template-columns: 1fr;
        border: 0;
        border-radius: 0;
        transform: none;
    }

    .hero-services > a {
        padding: 21px 24px;
    }

    .hero-services > a + a {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .services-section {
        padding-top: 105px;
    }

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

    .service-card {
        min-height: 0;
    }

    .service-card-number {
        margin-bottom: 45px;
    }

    .method-grid,
    .faq-grid,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .method-intro,
    .article-aside {
        position: static;
    }

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

    .post-card:first-child {
        grid-row: auto;
    }

    .post-card:not(:first-child) {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .local-grid {
        gap: 55px;
    }

    .article-aside {
        max-width: 620px;
    }
}

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

    .brand-mark,
    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .brand-copy strong {
        font-size: 0.95rem;
    }

    .brand-copy small {
        font-size: 0.59rem;
    }

    .hero-grid {
        padding-top: 125px;
        padding-bottom: 48px;
    }

    .hero h1 {
        margin-top: 20px;
        font-size: clamp(2.85rem, 14.2vw, 4.35rem);
        line-height: 0.97;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 19px;
        margin-top: 30px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-actions .text-link {
        align-self: flex-start;
    }

    .hero-points {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-top: 22px;
        margin-top: 31px;
    }

    .hero-points li,
    .hero-points li:first-child {
        padding: 0;
    }

    .hero-points li + li {
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 0;
    }

    .hero-note {
        display: none;
    }

    .hero-services small {
        white-space: normal;
    }

    .section {
        padding: 86px 0;
    }

    .services-section {
        padding-top: 92px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 23px;
        margin-bottom: 38px;
    }

    .section-heading h2,
    .method-intro h2,
    .local-copy h2,
    .faq-grid h2,
    .contact-band h2 {
        font-size: clamp(2.15rem, 11vw, 3.1rem);
    }

    .service-card {
        padding: 31px 25px;
    }

    .method-grid,
    .faq-grid {
        gap: 45px;
    }

    .method-list li {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 13px;
        padding-right: 0;
    }

    .method-list li:hover {
        padding-left: 10px;
    }

    .post-card:not(:first-child) {
        display: block;
    }

    .post-image,
    .post-card:first-child .post-image {
        height: 225px;
        min-height: 0;
    }

    .post-card-body {
        padding: 24px;
    }

    .post-card:first-child h3 {
        font-size: 1.45rem;
    }

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

    .local-index {
        min-height: 225px;
    }

    .local-index span {
        font-size: 7rem;
    }

    .contact-band-inner {
        min-height: 0;
        align-items: stretch;
        flex-direction: column;
        gap: 31px;
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .contact-band .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 60px;
        padding-bottom: 45px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
    }

    .article-hero {
        padding-top: 135px;
        padding-bottom: 72px;
    }

    .breadcrumbs {
        margin-bottom: 38px;
    }

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

    .article-layout {
        padding-top: 65px;
        padding-bottom: 85px;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-aside {
        padding: 26px;
    }

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Refined brand lockup — keeps uploaded logos transparent and prominent. */
.brand-logo {
    width: 56px;
    height: 56px;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 50%;
    box-shadow: none;
}

.brand-logo::before {
    content: "";
    position: absolute;
    inset: 2px;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223, 160, 61, 0.16), transparent 68%);
    filter: blur(5px);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.32));
}

.brand-copy {
    gap: 4px;
}

.brand-copy strong {
    font-size: 1.12rem;
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1;
}

.brand-copy small {
    margin-top: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.2;
}

.site-header {
    background: linear-gradient(180deg, rgba(4, 14, 23, 0.78), rgba(4, 14, 23, 0.34));
    backdrop-filter: blur(10px);
}

@media (max-width: 680px) {
    .header-inner {
        gap: 16px;
    }

    .brand {
        min-width: 0;
        gap: 11px;
    }

    .brand-logo {
        width: 49px;
        height: 49px;
    }

    .brand-copy {
        min-width: 0;
        gap: 3px;
    }

    .brand-copy strong {
        font-size: 0.98rem;
    }

    .brand-copy small {
        font-size: 0.55rem;
        letter-spacing: 0.12em;
        white-space: nowrap;
    }
}


/* Mobile first paint: keep the hero visual, but do not block it on a network image. */
@media (max-width: 860px) {
    .hero {
        background:
            radial-gradient(circle at 88% 18%, rgba(223, 160, 61, 0.26), transparent 30%),
            radial-gradient(circle at 10% 82%, rgba(18, 53, 73, 0.72), transparent 44%),
            linear-gradient(140deg, #06131e 0%, #0b2637 54%, #07141f 100%);
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: 0.22;
        background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 20px);
    }

    .hero-media,
    .hero-vignette {
        display: none;
    }

    .hero-grid,
    .hero-services {
        position: relative;
        z-index: 1;
    }
}
