:root {
    --forest-950: #17221b;
    --forest-900: #22362a;
    --forest-800: #304a3b;
    --forest-700: #3d5c49;
    --forest-600: #52705d;
    --sage-700: #667668;
    --sage-600: #728173;
    --sage-500: #879489;
    --sage-300: #bec8bd;
    --sage-200: #dbe2d9;
    --sage-100: #e9eee7;
    --sage-50: #f3f6f2;
    --ivory-100: #f7f4ed;
    --ivory-50: #fbfaf7;
    --gold-700: #9f7635;
    --gold-600: #b48742;
    --gold-500: #c49a52;
    --gold-300: #dec08a;
    --ink: #1b241e;
    --muted: #5c6961;
    --muted-light: #7a867e;
    --white: #ffffff;
    --danger: #9a3f3f;
    --success: #2d6d48;
    --border: rgba(48, 74, 59, 0.14);
    --shadow-sm: 0 12px 32px rgba(32, 51, 40, 0.08);
    --shadow-md: 0 22px 60px rgba(32, 51, 40, 0.13);
    --shadow-lg: 0 34px 90px rgba(20, 35, 26, 0.18);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --radius-pill: 999px;
    --container: 1200px;
    --font-display: Georgia, "Times New Roman", serif;
    --font-body: "Segoe UI", Arial, Helvetica, sans-serif;
    --header-height: 82px;
    --transition: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    scroll-padding-top: 112px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--ivory-50);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: clip;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overscroll-behavior: contain;
}

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

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

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

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

p,
h1,
h2,
h3,
h4,
ul,
ol,
blockquote {
    margin-top: 0;
}

ul,
ol {
    padding-left: 0;
}

::selection {
    color: var(--white);
    background: var(--forest-700);
}

:focus-visible {
    outline: 3px solid rgba(196, 154, 82, 0.55);
    outline-offset: 4px;
}

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

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--white);
    background: var(--forest-900);
    transform: translateY(-150%);
    transition: transform var(--transition);
}

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

.topbar {
    position: relative;
    z-index: 120;
    color: rgba(255, 255, 255, 0.92);
    background: var(--forest-950);
    font-size: 12.5px;
    letter-spacing: 0.02em;
}

.topbar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar p {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-weight: 600;
}

.topbar__contact {
    display: flex;
    align-items: center;
    gap: 22px;
}

.topbar__contact a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.78);
    transition: color var(--transition);
}

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

.topbar__contact svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-header {
    position: sticky;
    z-index: 110;
    top: 0;
    border-bottom: 1px solid transparent;
    background: rgba(251, 250, 247, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.site-header.is-scrolled {
    border-bottom-color: var(--border);
    background: rgba(251, 250, 247, 0.97);
    box-shadow: 0 10px 30px rgba(34, 54, 42, 0.07);
}

.header__inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    width: 292px;
    flex: 0 0 auto;
}

.brand img {
    width: 100%;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav > a:not(.btn) {
    position: relative;
    padding: 11px 0;
    color: var(--forest-900);
    font-size: 14.5px;
    font-weight: 600;
    white-space: nowrap;
}

.main-nav > a:not(.btn)::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 1.5px;
    content: "";
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

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

.nav-toggle {
    width: 48px;
    height: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--forest-800);
    background: var(--white);
    cursor: pointer;
}

.nav-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 3px;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

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

.btn svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition);
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn--small {
    min-height: 44px;
    padding: 10px 19px;
    font-size: 13px;
}

.btn--primary {
    color: var(--white);
    background: var(--forest-800);
    box-shadow: 0 12px 28px rgba(48, 74, 59, 0.2);
}

.btn--primary:hover {
    background: var(--forest-900);
    box-shadow: 0 17px 36px rgba(48, 74, 59, 0.26);
}

.btn--ghost {
    color: var(--forest-800);
    border-color: rgba(48, 74, 59, 0.24);
    background: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
    border-color: var(--forest-700);
    background: var(--white);
}

.btn--light {
    color: var(--forest-900);
    background: var(--ivory-100);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.14);
}

.btn--light:hover {
    color: var(--forest-950);
    background: var(--white);
}

.btn--outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.38);
    background: transparent;
}

.btn--outline-light:hover {
    color: var(--forest-900);
    border-color: var(--white);
    background: var(--white);
}

.btn--full {
    width: 100%;
    min-height: 57px;
}

.hero {
    position: relative;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: clamp(70px, 8vw, 118px) 0 clamp(88px, 9vw, 132px);
    background:
        linear-gradient(90deg, rgba(247, 244, 237, 0.98) 0%, rgba(247, 244, 237, 0.94) 49%, rgba(235, 240, 233, 0.88) 100%),
        radial-gradient(circle at 86% 18%, rgba(196, 154, 82, 0.17), transparent 32%);
}

.hero::before {
    position: absolute;
    z-index: 0;
    top: -180px;
    right: -120px;
    width: 760px;
    height: 760px;
    border: 1px solid rgba(196, 154, 82, 0.28);
    border-radius: 43% 57% 58% 42% / 42% 46% 54% 58%;
    content: "";
    transform: rotate(10deg);
}

.hero::after {
    position: absolute;
    z-index: 0;
    right: 6%;
    bottom: -280px;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    content: "";
    background: rgba(114, 129, 115, 0.12);
}

.hero__glow {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.hero__glow--one {
    top: 12%;
    left: -120px;
    width: 280px;
    height: 280px;
    background: rgba(196, 154, 82, 0.09);
}

.hero__glow--two {
    right: 28%;
    bottom: 8%;
    width: 180px;
    height: 180px;
    background: rgba(114, 129, 115, 0.13);
}

.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: clamp(50px, 8vw, 112px);
}

.hero__content {
    max-width: 670px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--forest-700);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 36px;
    height: 1px;
    display: inline-block;
    flex: 0 0 auto;
    background: var(--gold-500);
}

.eyebrow--center {
    justify-content: center;
}

.eyebrow--light {
    color: rgba(255, 255, 255, 0.76);
}

.eyebrow--light > span {
    background: var(--gold-300);
}

.hero h1,
.section-heading h2,
.digital-copy h2,
.for-you__content h2,
.approach-copy h2,
.faq-intro h2,
.contact-copy h2,
.legal-hero h1 {
    margin-bottom: 25px;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.hero h1 {
    max-width: 700px;
    font-size: clamp(46px, 5.25vw, 76px);
}

.hero__lead {
    max-width: 655px;
    margin-bottom: 17px;
    color: var(--forest-900);
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.65;
}

.hero__support {
    max-width: 620px;
    margin-bottom: 31px;
    color: var(--muted);
    font-size: 15.5px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-bottom: 34px;
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin: 0;
    list-style: none;
    color: var(--forest-800);
    font-size: 13px;
    font-weight: 650;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 9px;
}

.trust-icon {
    width: 25px;
    height: 25px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(48, 74, 59, 0.18);
    border-radius: 50%;
    color: var(--forest-700);
    background: rgba(255, 255, 255, 0.65);
    font-size: 12px;
}

.hero__visual {
    position: relative;
    justify-self: end;
    width: min(100%, 500px);
}

.portrait-frame {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border: 1px solid rgba(48, 74, 59, 0.13);
    border-radius: 46% 54% 38% 62% / 43% 38% 62% 57%;
    background:
        radial-gradient(circle at 55% 30%, rgba(255, 255, 255, 0.98) 0 34%, rgba(241, 244, 239, 0.96) 70%),
        var(--white);
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}

.portrait-frame::before {
    position: absolute;
    z-index: -1;
    inset: 22px -22px -22px 22px;
    border: 1px solid rgba(196, 154, 82, 0.38);
    border-radius: inherit;
    content: "";
}

.portrait-frame::after {
    position: absolute;
    z-index: 0;
    right: 24px;
    bottom: 22px;
    left: 24px;
    height: 58px;
    border-radius: 50%;
    content: "";
    background: rgba(24, 36, 29, 0.13);
    filter: blur(20px);
}

.portrait-frame picture {
    position: relative;
    z-index: 2;
    width: 92%;
    align-self: flex-end;
}

.portrait-frame img {
    width: 100%;
    max-height: 665px;
    object-fit: contain;
    object-position: bottom center;
    mix-blend-mode: multiply;
}

.portrait-frame__ring {
    position: absolute;
    z-index: 0;
    top: 54px;
    right: 34px;
    width: 255px;
    height: 255px;
    border: 1px solid rgba(196, 154, 82, 0.42);
    border-radius: 50%;
}

.portrait-frame__ring::before,
.portrait-frame__ring::after {
    position: absolute;
    border: 1px solid rgba(48, 74, 59, 0.1);
    border-radius: 50%;
    content: "";
}

.portrait-frame__ring::before {
    inset: 14px;
}

.portrait-frame__ring::after {
    inset: 32px;
}

.portrait-badge {
    position: absolute;
    z-index: 4;
    right: -28px;
    bottom: 64px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 18px 14px 12px;
    border: 1px solid rgba(48, 74, 59, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}

.portrait-badge__mark {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--ivory-100);
    background: var(--forest-800);
    font-family: var(--font-display);
    font-size: 17px;
}

.portrait-badge > span:last-child {
    display: flex;
    flex-direction: column;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.portrait-badge strong {
    color: var(--ink);
    font-size: 14px;
}

.portrait-leaf {
    position: absolute;
    z-index: 3;
    width: 30px;
    height: 64px;
    border-radius: 70% 0 70% 0;
    background: var(--sage-600);
    opacity: 0.65;
}

.portrait-leaf--one {
    top: 60px;
    left: -10px;
    transform: rotate(-38deg);
}

.portrait-leaf--two {
    top: 118px;
    left: 12px;
    width: 22px;
    height: 49px;
    background: var(--gold-500);
    transform: rotate(-18deg);
}

.hero__scroll {
    position: absolute;
    z-index: 3;
    bottom: 25px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--forest-700);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.hero__scroll i {
    position: relative;
    width: 20px;
    height: 31px;
    display: block;
    border: 1px solid rgba(48, 74, 59, 0.32);
    border-radius: 13px;
}

.hero__scroll i::after {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 3px;
    height: 6px;
    border-radius: 3px;
    content: "";
    background: var(--gold-500);
    transform: translateX(-50%);
    animation: scrollHint 1.9s ease infinite;
}

@keyframes scrollHint {
    0%, 100% { opacity: 0.25; transform: translate(-50%, 0); }
    45% { opacity: 1; }
    70% { opacity: 0.3; transform: translate(-50%, 10px); }
}

.section {
    position: relative;
    padding: clamp(88px, 9vw, 132px) 0;
}

.section--soft {
    background: var(--sage-50);
}

.section-heading {
    max-width: 650px;
}

.section-heading--center {
    max-width: 790px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-heading h2,
.digital-copy h2,
.for-you__content h2,
.approach-copy h2,
.faq-intro h2,
.contact-copy h2 {
    font-size: clamp(37px, 4.2vw, 58px);
}

.section-heading p:last-child {
    max-width: 660px;
    margin: -5px auto 0;
    color: var(--muted);
    font-size: 16.5px;
}

.process-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
    align-items: end;
    gap: clamp(50px, 8vw, 112px);
    margin-bottom: 56px;
}

.process-intro__text {
    padding-left: 30px;
    border-left: 1px solid var(--gold-500);
}

.process-intro__text p {
    color: var(--muted);
    font-size: 16.5px;
}

.process-intro__text p:last-child {
    margin-bottom: 0;
}

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

.benefit-card {
    position: relative;
    min-height: 310px;
    padding: 32px 27px 27px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 30px rgba(41, 63, 49, 0.04);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.benefit-card:hover {
    border-color: rgba(196, 154, 82, 0.42);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.benefit-card::after {
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(196, 154, 82, 0.14);
    border-radius: 50%;
    content: "";
}

.benefit-card__number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: rgba(48, 74, 59, 0.17);
    font-family: var(--font-display);
    font-size: 30px;
}

.icon-circle {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border: 1px solid rgba(48, 74, 59, 0.16);
    border-radius: 50%;
    color: var(--forest-700);
    background: var(--ivory-100);
}

.icon-circle svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card h3 {
    margin-bottom: 12px;
    color: var(--forest-900);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
}

.benefit-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px 31px 31px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
    border-color: rgba(196, 154, 82, 0.45);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.service-card--featured {
    color: rgba(255, 255, 255, 0.82);
    border-color: transparent;
    background:
        radial-gradient(circle at 100% 0%, rgba(196, 154, 82, 0.18), transparent 34%),
        linear-gradient(145deg, var(--forest-800), var(--forest-950));
    box-shadow: 0 26px 65px rgba(30, 48, 37, 0.24);
}

.service-card--featured:hover {
    border-color: transparent;
    box-shadow: 0 34px 80px rgba(30, 48, 37, 0.32);
}

.service-card__ribbon {
    position: absolute;
    top: 22px;
    right: -49px;
    width: 190px;
    padding: 7px 0;
    color: var(--forest-950);
    background: var(--gold-300);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(38deg);
}

.service-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 29px;
}

.service-card__index {
    color: rgba(48, 74, 59, 0.25);
    font-family: var(--font-display);
    font-size: 38px;
}

.service-card--featured .service-card__index {
    color: rgba(255, 255, 255, 0.22);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--forest-700);
    background: var(--sage-100);
}

.service-card--featured .service-card__icon {
    color: var(--gold-300);
    background: rgba(255, 255, 255, 0.09);
}

.service-card__icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card__label {
    margin-bottom: 9px;
    color: var(--gold-700);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-card--featured .service-card__label {
    color: var(--gold-300);
}

.service-card h3 {
    margin-bottom: 17px;
    color: var(--forest-900);
    font-family: var(--font-display);
    font-size: clamp(25px, 2.2vw, 31px);
    font-weight: 400;
    line-height: 1.18;
}

.service-card--featured h3 {
    color: var(--white);
}

.service-card > p:not(.service-card__label) {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 14.5px;
}

.service-card--featured > p:not(.service-card__label) {
    color: rgba(255, 255, 255, 0.72);
}

.service-card ul {
    display: grid;
    gap: 10px;
    margin: 0 0 29px;
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 22px;
    color: var(--forest-800);
    font-size: 13.5px;
    line-height: 1.45;
}

.service-card li::before {
    position: absolute;
    top: 0.56em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    content: "";
    background: var(--gold-500);
}

.service-card--featured li {
    color: rgba(255, 255, 255, 0.82);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    color: var(--forest-800);
    font-size: 13px;
    font-weight: 750;
    transition: color var(--transition);
}

.text-link span {
    color: var(--gold-600);
    font-size: 18px;
    transition: transform var(--transition);
}

.text-link:hover {
    color: var(--gold-700);
}

.text-link:hover span {
    transform: translateX(4px);
}

.service-card--featured .text-link {
    color: var(--white);
}

.service-card--featured .text-link span {
    color: var(--gold-300);
}

.text-link--large {
    font-size: 15px;
}

.digital-section {
    position: relative;
    padding: clamp(90px, 10vw, 145px) 0;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 15%, rgba(196, 154, 82, 0.13), transparent 28%),
        radial-gradient(circle at 90% 90%, rgba(135, 148, 137, 0.17), transparent 33%),
        linear-gradient(135deg, var(--forest-900), var(--forest-950));
}

.digital-section::before {
    position: absolute;
    top: -220px;
    right: -80px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(222, 192, 138, 0.18);
    border-radius: 50%;
    content: "";
}

.digital-section::after {
    position: absolute;
    bottom: -180px;
    left: -130px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.digital-section__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}

.digital-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
    align-items: center;
    gap: clamp(55px, 8vw, 115px);
}

.digital-copy h2 {
    color: var(--white);
}

.digital-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
}

.digital-copy > p:nth-of-type(3) {
    margin-bottom: 30px;
}

.digital-panel {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);
}

.digital-panel__title {
    margin-bottom: 22px;
    color: var(--gold-300);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

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

.digital-panel__items > div {
    min-height: 165px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.055);
    transition: background var(--transition), transform var(--transition);
}

.digital-panel__items > div:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-4px);
}

.digital-panel__items > div > span {
    display: block;
    margin-bottom: 22px;
    color: rgba(222, 192, 138, 0.7);
    font-family: var(--font-display);
    font-size: 25px;
}

.digital-panel__items p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.55;
}

.digital-panel__items strong {
    display: block;
    margin-bottom: 5px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
}

.for-you-grid {
    display: grid;
    grid-template-columns: minmax(380px, 0.88fr) minmax(0, 1.12fr);
    align-items: center;
    gap: clamp(55px, 9vw, 130px);
}

.for-you__visual {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
}

.for-you__shape {
    position: absolute;
    z-index: 0;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(196, 154, 82, 0.26);
    border-radius: 38% 62% 58% 42% / 55% 44% 56% 45%;
    transform: rotate(-9deg);
}

.for-you__shape::before {
    position: absolute;
    inset: 34px;
    border-radius: inherit;
    content: "";
    background: var(--sage-200);
    opacity: 0.75;
}

.quote-card {
    position: relative;
    z-index: 2;
    max-width: 390px;
    padding: 52px 46px 38px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.quote-card__mark {
    position: absolute;
    top: 10px;
    left: 30px;
    color: var(--gold-300);
    font-family: var(--font-display);
    font-size: 94px;
    line-height: 1;
}

.quote-card blockquote {
    position: relative;
    margin-bottom: 23px;
    color: var(--forest-900);
    font-family: var(--font-display);
    font-size: clamp(27px, 2.5vw, 36px);
    font-weight: 400;
    line-height: 1.25;
}

.quote-card p {
    margin-bottom: 0;
    color: var(--gold-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.for-you__content h2 {
    max-width: 670px;
}

.large-check-list {
    display: grid;
    gap: 15px;
    margin: 33px 0 29px;
    list-style: none;
}

.large-check-list li {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: start;
    gap: 13px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 15px;
}

.large-check-list li:last-child {
    border-bottom: 0;
}

.large-check-list span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--forest-800);
    background: var(--white);
    box-shadow: 0 5px 18px rgba(48, 74, 59, 0.08);
    font-size: 12px;
}

.approach-grid {
    display: grid;
    grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(60px, 9vw, 130px);
}

.approach-image {
    position: relative;
    min-height: 670px;
}

.approach-image__backdrop {
    position: absolute;
    z-index: 0;
    inset: 35px 35px 0 0;
    border-radius: 44% 56% 34% 66% / 46% 35% 65% 54%;
    background:
        linear-gradient(145deg, var(--sage-200), var(--sage-100));
}

.approach-image__backdrop::before {
    position: absolute;
    inset: -22px 22px 22px -22px;
    border: 1px solid rgba(196, 154, 82, 0.38);
    border-radius: inherit;
    content: "";
}

.approach-image picture {
    position: absolute;
    z-index: 1;
    inset: 0 0 38px 38px;
    overflow: hidden;
    border-radius: 44% 56% 34% 66% / 46% 35% 65% 54%;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 26%;
    mix-blend-mode: multiply;
}

.approach-image__caption {
    position: absolute;
    z-index: 3;
    right: -28px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 20px 15px 13px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
}

.approach-image__monogram {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--gold-300);
    background: var(--forest-800);
    font-family: var(--font-display);
}

.approach-image__caption p {
    display: flex;
    flex-direction: column;
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.approach-image__caption strong {
    color: var(--ink);
    font-size: 14px;
}

.approach-copy__lead {
    color: var(--forest-900);
    font-size: 18px;
    line-height: 1.7;
}

.approach-copy > p:not(.eyebrow):not(.approach-copy__lead):not(.approach-copy__closing) {
    color: var(--muted);
}

.approach-values {
    display: grid;
    gap: 12px;
    margin: 29px 0;
}

.approach-values > div {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: start;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.approach-values > div > span {
    color: var(--gold-600);
    font-family: var(--font-display);
    font-size: 23px;
}

.approach-values p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.approach-values strong {
    display: block;
    margin-bottom: 2px;
    color: var(--forest-900);
    font-size: 15px;
}

.approach-copy__closing {
    position: relative;
    margin: 0;
    padding: 18px 22px 18px 24px;
    border-left: 2px solid var(--gold-500);
    color: var(--forest-800);
    background: var(--sage-50);
    font-family: var(--font-display);
    font-size: 20px;
}

.steps-section {
    position: relative;
    padding: clamp(88px, 9vw, 128px) 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 100%, rgba(196, 154, 82, 0.16), transparent 30%),
        linear-gradient(135deg, var(--forest-800), var(--forest-950));
}

.steps-section::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.06;
    background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
    background-size: 60px 60px;
}

.section-heading--light {
    position: relative;
    z-index: 2;
}

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

.steps-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 70px 1fr 70px 1fr;
    align-items: center;
    gap: 16px;
}

.step-card {
    min-height: 235px;
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
}

.step-card__number {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 50%;
    color: var(--forest-950);
    background: var(--gold-300);
    font-family: var(--font-display);
    font-size: 20px;
}

.step-card h3 {
    margin-bottom: 12px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
}

.step-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

.step-connector {
    position: relative;
    height: 1px;
    background: rgba(222, 192, 138, 0.42);
}

.step-connector::after {
    position: absolute;
    top: -4px;
    right: -1px;
    width: 9px;
    height: 9px;
    border-top: 1px solid rgba(222, 192, 138, 0.65);
    border-right: 1px solid rgba(222, 192, 138, 0.65);
    content: "";
    transform: rotate(45deg);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(330px, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: clamp(55px, 8vw, 110px);
}

.faq-intro {
    position: sticky;
    top: 125px;
}

.faq-intro > p:not(.eyebrow) {
    color: var(--muted);
}

.faq-contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-top: 30px;
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 19px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.faq-contact-card span {
    color: var(--muted);
    font-size: 12px;
}

.faq-contact-card a {
    color: var(--forest-800);
    font-size: 14px;
    font-weight: 750;
}

.faq-contact-card strong {
    color: var(--gold-600);
    font-size: 18px;
}

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

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

.faq-list summary {
    min-height: 92px;
    display: grid;
    grid-template-columns: 42px 1fr 32px;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    color: var(--forest-900);
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.3;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary > span {
    color: var(--gold-600);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.faq-list summary i {
    position: relative;
    width: 30px;
    height: 30px;
    border: 1px solid var(--border);
    border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 1px;
    content: "";
    background: var(--forest-700);
    transform: translate(-50%, -50%);
    transition: transform var(--transition);
}

.faq-list summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    padding: 0 48px 25px 60px;
}

.faq-answer p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 15px;
}

.contact-section {
    position: relative;
    padding: clamp(95px, 10vw, 150px) 0;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 0 0, rgba(196, 154, 82, 0.15), transparent 28%),
        linear-gradient(140deg, var(--forest-800), var(--forest-950));
}

.contact-section__shape {
    position: absolute;
    top: -190px;
    right: -180px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(222, 192, 138, 0.22);
    border-radius: 43% 57% 56% 44% / 48% 41% 59% 52%;
    transform: rotate(12deg);
}

.contact-section__shape::before {
    position: absolute;
    inset: 34px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: inherit;
    content: "";
}

.contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
    align-items: start;
    gap: clamp(55px, 8vw, 105px);
}

.contact-copy h2 {
    color: var(--white);
}

.contact-copy > p:not(.eyebrow):not(.contact-copy__note) {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
}

.contact-options {
    display: grid;
    gap: 12px;
    margin: 34px 0 30px;
}

.contact-option {
    display: grid;
    grid-template-columns: 48px 1fr 24px;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.06);
    transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.contact-option:hover {
    border-color: rgba(222, 192, 138, 0.35);
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.contact-option__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--gold-300);
    background: rgba(255, 255, 255, 0.08);
}

.contact-option__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-option > span:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.contact-option small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-option strong {
    color: var(--white);
    font-size: 14px;
    font-weight: 650;
    overflow-wrap: anywhere;
}

.contact-option > i {
    color: var(--gold-300);
    font-size: 20px;
    font-style: normal;
}

.contact-copy__note {
    display: grid;
    grid-template-columns: 27px 1fr;
    gap: 10px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11.5px;
    line-height: 1.55;
}

.contact-copy__note span {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: var(--gold-300);
    font-family: var(--font-display);
}

.contact-form-card {
    padding: clamp(28px, 4vw, 43px);
    border-radius: 28px;
    color: var(--ink);
    background: var(--ivory-50);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
}

.contact-form-card__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 21px;
    border-bottom: 1px solid var(--border);
}

.contact-form-card__heading p {
    margin: 0;
    color: var(--forest-900);
    font-family: var(--font-display);
    font-size: 29px;
    line-height: 1.2;
}

.contact-form-card__heading span {
    color: var(--muted-light);
    font-size: 10.5px;
    white-space: nowrap;
}

.form-alert {
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 13px;
    font-size: 13px;
}

.form-alert strong {
    display: block;
    margin-bottom: 3px;
}

.form-alert p {
    margin: 0;
}

.form-alert--success {
    color: #1f5e3b;
    border: 1px solid rgba(45, 109, 72, 0.24);
    background: rgba(45, 109, 72, 0.09);
}

.form-alert--error {
    color: #853838;
    border: 1px solid rgba(154, 63, 63, 0.22);
    background: rgba(154, 63, 63, 0.08);
}

.form-row {
    display: grid;
    gap: 16px;
}

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

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--forest-900);
    font-size: 12px;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(48, 74, 59, 0.18);
    border-radius: 12px;
    color: var(--ink);
    background: var(--white);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-field input,
.form-field select {
    height: 51px;
    padding: 0 15px;
}

.form-field textarea {
    min-height: 145px;
    padding: 14px 15px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(196, 154, 82, 0.12);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
    border-color: rgba(154, 63, 63, 0.6);
    background: rgba(154, 63, 63, 0.025);
}

.field-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 5px;
    color: var(--muted-light);
}

.field-meta small {
    font-size: 9.5px;
}

.field-error {
    display: block;
    margin-top: 5px;
    color: var(--danger);
    font-size: 10.5px;
}

.field-error--block {
    margin: -7px 0 15px;
}

.consent-field {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 9px;
    margin: 2px 0 17px;
}

.consent-field input {
    width: 17px;
    height: 17px;
    margin: 3px 0 0;
    accent-color: var(--forest-800);
}

.consent-field label {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

.consent-field a {
    color: var(--forest-800);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(48, 74, 59, 0.35);
    text-underline-offset: 2px;
}

.form-privacy-note {
    margin: 10px 0 0;
    color: var(--muted-light);
    font-size: 9.5px;
    text-align: center;
}

.hp-field {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

.site-footer {
    color: rgba(255, 255, 255, 0.68);
    background: #111a14;
}

.footer__main {
    display: grid;
    grid-template-columns: 1.35fr 0.72fr 0.9fr 0.95fr;
    gap: clamp(35px, 5vw, 75px);
    padding: 72px 0 56px;
}

.footer__brand img {
    width: 270px;
    margin-bottom: 21px;
    filter: brightness(0) invert(1);
    opacity: 0.93;
}

.footer__brand p {
    max-width: 340px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 13.5px;
}

.footer__main h2 {
    margin-bottom: 19px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer__nav,
.footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer__nav a,
.footer__contact a,
.footer__contact span {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12.5px;
    transition: color var(--transition);
}

.footer__nav a:hover,
.footer__contact a:hover {
    color: var(--gold-300);
}

.footer__cta h2 {
    margin-bottom: 18px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.25;
    text-transform: none;
}

.footer__bottom {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer__bottom p {
    margin: 0;
    font-size: 11px;
}

.footer__bottom nav {
    display: flex;
    gap: 20px;
}

.footer__bottom a {
    font-size: 11px;
    transition: color var(--transition);
}

.footer__bottom a:hover {
    color: var(--gold-300);
}

.whatsapp-float {
    position: fixed;
    z-index: 100;
    right: 22px;
    bottom: 22px;
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 17px 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    color: var(--white);
    background: #257a4a;
    box-shadow: 0 15px 40px rgba(15, 57, 34, 0.28);
    font-size: 12px;
    font-weight: 750;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.whatsapp-float:hover {
    background: #1f6840;
    box-shadow: 0 19px 46px rgba(15, 57, 34, 0.35);
    transform: translateY(-3px);
}

.whatsapp-float svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 720ms cubic-bezier(.2,.7,.2,1), transform 720ms cubic-bezier(.2,.7,.2,1);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--delay,
.reveal--delay-1 {
    transition-delay: 100ms;
}

.reveal--delay-2 {
    transition-delay: 190ms;
}

.reveal--delay-3 {
    transition-delay: 280ms;
}

/* Legal pages */
.legal-page {
    background: var(--ivory-50);
}

.legal-hero {
    padding: 80px 0 65px;
    background:
        radial-gradient(circle at 90% 0%, rgba(196, 154, 82, 0.14), transparent 28%),
        var(--sage-50);
}

.legal-hero__inner {
    max-width: 820px;
}

.legal-hero h1 {
    font-size: clamp(42px, 5vw, 64px);
}

.legal-hero p:last-child {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 17px;
}

.legal-content {
    padding: 75px 0 105px;
}

.legal-content__inner {
    max-width: 860px;
}

.legal-content section {
    margin-bottom: 42px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border);
}

.legal-content section:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.legal-content h2 {
    margin-bottom: 14px;
    color: var(--forest-900);
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 400;
}

.legal-content h3 {
    margin: 23px 0 10px;
    color: var(--forest-800);
    font-size: 16px;
}

.legal-content p,
.legal-content li {
    color: var(--muted);
    font-size: 14.5px;
}

.legal-content ul {
    margin: 12px 0 0 20px;
    padding-left: 18px;
}

.legal-content a {
    color: var(--forest-800);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(48, 74, 59, 0.3);
    text-underline-offset: 3px;
}

.legal-note {
    padding: 22px;
    border-left: 3px solid var(--gold-500);
    border-radius: 0 13px 13px 0;
    background: var(--sage-50);
}

.error-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 20px;
    background:
        radial-gradient(circle at 75% 20%, rgba(196, 154, 82, 0.14), transparent 30%),
        var(--ivory-100);
}

.error-card {
    width: min(660px, 100%);
    padding: 50px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.error-card__code {
    display: block;
    margin-bottom: 15px;
    color: var(--gold-500);
    font-family: var(--font-display);
    font-size: 90px;
    line-height: 1;
}

.error-card h1 {
    margin-bottom: 14px;
    color: var(--forest-900);
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 400;
}

.error-card p {
    margin-bottom: 25px;
    color: var(--muted);
}

@media (max-width: 1120px) {
    :root {
        --container: 1040px;
    }

    .brand {
        width: 255px;
    }

    .main-nav {
        gap: 19px;
    }

    .main-nav > a:not(.btn) {
        font-size: 13.5px;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
        gap: 58px;
    }

    .portrait-frame {
        min-height: 560px;
    }

    .portrait-frame img {
        max-height: 600px;
    }

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

    .benefit-card {
        min-height: 270px;
    }

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

    .service-card--featured {
        grid-column: 1 / -1;
        max-width: 620px;
        margin-inline: auto;
    }

    .footer__main {
        grid-template-columns: 1.35fr 0.8fr 1fr;
    }

    .footer__cta {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        padding-top: 30px;
        border-top: 1px solid rgba(255,255,255,.08);
    }

    .footer__cta h2 {
        max-width: 480px;
        margin-bottom: 0;
    }
}

@media (max-width: 960px) {
    :root {
        --header-height: 75px;
    }

    .site-header {
        background: rgba(251, 250, 247, 0.99);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .topbar__inner {
        justify-content: center;
    }

    .topbar p {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        z-index: 105;
        top: var(--mobile-nav-top, calc(38px + var(--header-height)));
        right: 0;
        bottom: 0;
        width: min(390px, 92vw);
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 28px;
        overflow-y: auto;
        border-left: 1px solid var(--border);
        background: var(--ivory-50);
        box-shadow: -20px 30px 60px rgba(32, 51, 40, 0.18);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: clip-path 260ms ease, opacity 180ms ease, visibility 0s linear 260ms;
    }

    .main-nav.is-open {
        clip-path: inset(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }

    .main-nav > a:not(.btn) {
        padding: 16px 4px;
        border-bottom: 1px solid var(--border);
        font-size: 16px;
    }

    .main-nav .btn {
        margin-top: 24px;
    }

    .hero {
        min-height: auto;
        padding-top: 82px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .hero__content {
        max-width: 760px;
    }

    .hero__visual {
        justify-self: center;
        width: min(100%, 500px);
    }

    .process-intro,
    .digital-grid,
    .for-you-grid,
    .approach-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .process-intro {
        gap: 26px;
    }

    .process-intro__text {
        max-width: 750px;
    }

    .digital-grid {
        gap: 50px;
    }

    .for-you-grid {
        gap: 55px;
    }

    .for-you__visual {
        order: 2;
        min-height: 460px;
    }

    .for-you__content {
        order: 1;
    }

    .approach-image {
        width: min(620px, 100%);
        margin-inline: auto;
    }

    .faq-intro {
        position: static;
        max-width: 680px;
    }

    .faq-grid {
        gap: 45px;
    }

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

    .contact-grid {
        gap: 48px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin-inline: auto;
    }

    .step-connector {
        width: 1px;
        height: 40px;
        margin-inline: auto;
        background: rgba(222, 192, 138, 0.42);
    }

    .step-connector::after {
        top: auto;
        right: -4px;
        bottom: -1px;
        transform: rotate(135deg);
    }
}

@media (max-width: 740px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .topbar__contact {
        width: 100%;
        justify-content: center;
        gap: 14px;
    }

    .topbar__contact a:first-child {
        display: none;
    }

    .brand {
        width: 228px;
    }

    .hero {
        padding-top: 64px;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 60px);
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .trust-list {
        gap: 13px 17px;
    }

    .portrait-frame {
        min-height: 510px;
    }

    .portrait-frame::before {
        inset: 15px -10px -14px 13px;
    }

    .portrait-badge {
        right: 8px;
        bottom: 25px;
    }

    .hero__scroll {
        display: none;
    }

    .section {
        padding: 82px 0;
    }

    .section-heading--center {
        margin-bottom: 39px;
    }

    .benefits-grid,
    .services-grid,
    .digital-panel__items,
    .form-row--two {
        grid-template-columns: 1fr;
    }

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

    .service-card--featured {
        grid-column: auto;
    }

    .digital-panel {
        padding: 23px;
    }

    .digital-panel__items > div {
        min-height: 0;
    }

    .for-you__visual {
        min-height: 420px;
    }

    .for-you__shape {
        width: 360px;
        height: 360px;
    }

    .quote-card {
        max-width: 330px;
        padding: 48px 32px 34px;
    }

    .approach-image {
        min-height: 585px;
    }

    .approach-image picture {
        inset: 0 0 28px 15px;
    }

    .approach-image__caption {
        right: 0;
        bottom: 0;
    }

    .faq-list summary {
        grid-template-columns: 32px 1fr 30px;
        gap: 11px;
        min-height: 82px;
        font-size: 20px;
    }

    .faq-answer {
        padding: 0 15px 22px 43px;
    }

    .contact-form-card {
        padding: 27px 20px;
    }

    .contact-form-card__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-form-card__heading span {
        white-space: normal;
    }

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

    .footer__brand,
    .footer__cta {
        grid-column: 1 / -1;
    }

    .footer__cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        padding: 20px 0;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        justify-content: center;
        padding: 0;
        border-radius: 50%;
    }
}

@media (max-width: 500px) {
    .brand {
        width: 205px;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
    }

    .hero h1,
    .section-heading h2,
    .digital-copy h2,
    .for-you__content h2,
    .approach-copy h2,
    .faq-intro h2,
    .contact-copy h2 {
        font-size: 39px;
    }

    .hero__lead {
        font-size: 17px;
    }

    .portrait-frame {
        min-height: 450px;
    }

    .portrait-frame img {
        max-height: 495px;
    }

    .portrait-badge {
        padding: 10px 12px 10px 9px;
    }

    .portrait-badge__mark {
        width: 37px;
        height: 37px;
    }

    .portrait-leaf {
        display: none;
    }

    .process-intro__text {
        padding-left: 20px;
    }

    .service-card {
        padding: 29px 24px 26px;
    }

    .for-you__visual {
        min-height: 380px;
    }

    .for-you__shape {
        width: 315px;
        height: 315px;
    }

    .quote-card {
        max-width: 295px;
        padding: 44px 25px 30px;
    }

    .quote-card blockquote {
        font-size: 27px;
    }

    .approach-image {
        min-height: 510px;
    }

    .approach-image__caption {
        padding-right: 13px;
    }

    .approach-image__caption p {
        font-size: 9px;
    }

    .contact-option {
        grid-template-columns: 43px 1fr 20px;
        gap: 10px;
    }

    .contact-option__icon {
        width: 43px;
        height: 43px;
    }

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

    .footer__brand,
    .footer__cta {
        grid-column: auto;
    }

    .footer__nav,
    .footer__contact {
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,.08);
    }

    .footer__bottom nav {
        flex-wrap: wrap;
        gap: 10px 18px;
    }

    .error-card {
        padding: 35px 24px;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
