@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
    --bg: #efe4d5;
    --bg-soft: #f8f1e8;
    --surface: rgba(251, 245, 236, 0.88);
    --surface-strong: #fbf3e8;
    --surface-alt: #ead7c2;
    --ink: #272119;
    --text: #3a342d;
    --muted: #655d54;
    --olive: #485441;
    --olive-deep: #252f26;
    --clay: #9f654d;
    --gold: #c8a16a;
    --line: rgba(76, 57, 38, 0.16);
    --line-strong: rgba(84, 63, 42, 0.28);
    --shadow: 0 28px 60px rgba(70, 49, 34, 0.14);
    --shadow-soft: 0 18px 34px rgba(70, 49, 34, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(200, 161, 106, 0.18), transparent 28%),
        radial-gradient(circle at right 15% top 12%, rgba(159, 101, 77, 0.13), transparent 22%),
        linear-gradient(180deg, #f3eadf 0%, #efe4d5 100%);
}

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

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

button,
input {
    font: inherit;
}

section[id] {
    scroll-margin-top: 96px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 14px 0;
    background: rgba(244, 235, 224, 0.94);
    border-bottom: 1px solid rgba(72, 53, 34, 0.1);
    box-shadow: 0 14px 30px rgba(66, 46, 27, 0.08);
    backdrop-filter: blur(14px);
    transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-header--scrolled,
.legal-page .site-header,
.thanks-page .site-header {
    padding: 12px 0;
    background: rgba(244, 235, 224, 0.97);
}

.header-inner,
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(41, 38, 28, 0.14));
}

.brand-copy {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.9rem;
    color: var(--muted);
}

.brand-copy strong {
    font-size: 1.02rem;
    color: var(--ink);
    font-weight: 700;
}

.top-nav {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    font-size: 0.96rem;
    font-weight: 600;
    color: rgba(39, 33, 25, 0.82);
}

.top-nav a {
    position: relative;
}

.top-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: currentColor;
    transition: transform 0.28s ease;
}

.top-nav a:hover::after,
.top-nav a:focus-visible::after {
    transform: scaleX(1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, #f8eddc 0%, #efdbc0 100%);
    color: var(--olive-deep);
    font-weight: 700;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
    box-shadow: 0 16px 26px rgba(31, 29, 21, 0.12);
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 30px rgba(31, 29, 21, 0.16);
}

.btn-small {
    min-height: 46px;
    padding: 0 22px;
    font-size: 0.95rem;
}

.btn-outline {
    background: rgba(72, 84, 65, 0.08);
    color: var(--olive-deep);
    border-color: rgba(72, 84, 65, 0.16);
    box-shadow: none;
}

.btn-secondary {
    background: rgba(255, 246, 236, 0.12);
    color: #fff8ef;
    border-color: rgba(255, 246, 236, 0.32);
    box-shadow: none;
}

.btn-light {
    background: #fff6eb;
    color: var(--olive-deep);
}

.btn-olive,
.btn-submit {
    background: linear-gradient(135deg, #485441 0%, #2f382e 100%);
    color: #fff6ea;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding: 110px 0 72px;
    overflow: clip;
    color: #fbf4eb;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(14, 18, 16, 0.84) 8%, rgba(14, 18, 16, 0.42) 52%, rgba(14, 18, 16, 0.62) 100%),
        linear-gradient(180deg, rgba(14, 18, 16, 0.42) 0%, rgba(14, 18, 16, 0.2) 30%, rgba(14, 18, 16, 0.7) 100%);
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto auto -18% -10%;
    width: 62vw;
    height: 62vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 161, 106, 0.18) 0%, rgba(200, 161, 106, 0) 65%);
    z-index: 1;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
    transform: scale(1.05);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    gap: 36px;
    align-items: end;
}

.hero-copy h1,
.section-copy h2,
.section-heading h2,
.approach-copy h2,
.consultation-copy h2,
.legal-card h2,
.legal-hero h1,
.thanks-card h1 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 0.96;
    color: inherit;
}

.hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(3.3rem, 7vw, 6.2rem);
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.eyebrow,
.section-kicker,
.panel-label {
    margin: 0 0 16px;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-lead {
    max-width: 38rem;
    margin: 24px 0 0;
    font-size: clamp(1.12rem, 1.8vw, 1.32rem);
    line-height: 1.7;
    color: rgba(255, 247, 238, 0.96);
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-note {
    margin: 22px 0 0;
    font-size: 1rem;
    color: rgba(255, 247, 238, 0.88);
    text-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.hero-panel,
.benefits-panel,
.support-panel,
.lead-form,
.legal-card,
.thanks-card,
.legal-section {
    background: var(--surface);
    border: 1px solid rgba(255, 249, 241, 0.18);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.hero-panel {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: rgba(251, 245, 236, 0.92);
    border-color: rgba(94, 70, 46, 0.12);
    color: var(--text);
}

.hero-panel-intro {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(84, 63, 42, 0.12);
}

.hero-panel-intro p:last-child {
    margin: 0;
    line-height: 1.7;
    color: var(--muted);
}

.hero-metrics {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.metric {
    display: grid;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(84, 63, 42, 0.12);
}

.metric:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.metric-value {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    color: var(--olive-deep);
}

.metric-text {
    color: var(--muted);
    line-height: 1.5;
}

.section {
    padding: 94px 0;
}

.section-soft {
    background:
        linear-gradient(180deg, rgba(255, 248, 240, 0.75), rgba(246, 237, 226, 0.95)),
        linear-gradient(180deg, rgba(200, 161, 106, 0.04), rgba(159, 101, 77, 0.05));
}

.section-band {
    color: #f8f1e6;
    background:
        radial-gradient(circle at top right, rgba(200, 161, 106, 0.18), transparent 22%),
        linear-gradient(135deg, #324032 0%, #212a22 100%);
}

.section-dark {
    color: #f7ecdd;
    background:
        radial-gradient(circle at 10% 10%, rgba(200, 161, 106, 0.14), transparent 26%),
        linear-gradient(135deg, #2d382d 0%, #1d241d 100%);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 36px;
}

.section-heading h2,
.section-copy h2,
.approach-copy h2,
.consultation-copy h2,
.legal-card h2,
.legal-hero h1,
.thanks-card h1 {
    font-size: clamp(2.3rem, 5vw, 4rem);
}

.section-copy,
.approach-copy,
.consultation-copy {
    display: grid;
    gap: 0;
}

.section-text,
.section-copy p:last-child,
.approach-copy p:last-child,
.consultation-copy p:last-child {
    margin: 18px 0 0;
    line-height: 1.75;
    color: var(--muted);
}

.section-dark .section-copy p:last-child,
.section-dark .stat-card span,
.section-band .band-copy p,
.section-band .reason-list li {
    color: rgba(247, 241, 230, 0.84);
}

.section-kicker {
    color: var(--clay);
}

.hero .eyebrow,
.hero .panel-label {
    color: rgba(255, 243, 226, 0.96);
    text-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.hero-panel .panel-label {
    color: var(--clay);
    text-shadow: none;
}

.section-kicker-light {
    color: rgba(255, 231, 202, 0.82);
}

.editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    grid-template-areas:
        "copy photo"
        "benefits benefits";
    gap: 32px 30px;
    align-items: start;
}

.editorial-grid > .section-copy {
    grid-area: copy;
    padding-top: 12px;
    max-width: 38rem;
}

.inline-note,
.consultation-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 250, 244, 0.76);
    border: 1px solid rgba(76, 57, 38, 0.08);
    box-shadow: var(--shadow-soft);
}

.inline-note img,
.consultation-note img {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

.inline-note p,
.consultation-note p {
    margin: 0;
    line-height: 1.7;
    color: var(--text);
}

.photo-frame {
    margin: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.photo-frame img,
.direction-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s ease;
}

.photo-frame:hover img,
.direction-card:hover img {
    transform: scale(1.04);
}

.section-photo {
    grid-area: photo;
    align-self: start;
    aspect-ratio: 1.18 / 0.82;
    min-height: 0;
    background: rgba(255, 249, 241, 0.82);
}

.section-photo img {
    height: 100%;
    object-fit: cover;
    object-position: center 56%;
}

.benefits-panel {
    grid-area: benefits;
    padding: 30px;
    border-radius: var(--radius-xl);
    background: rgba(255, 249, 241, 0.74);
    border-color: rgba(76, 57, 38, 0.08);
    box-shadow: var(--shadow-soft);
}

.benefits-panel .icon-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
}

.benefits-panel .icon-list li {
    padding: 18px 0;
    border-top: 1px solid rgba(76, 57, 38, 0.08);
}

.benefits-panel .icon-list li:nth-child(-n+2) {
    padding-top: 0;
    border-top: 0;
}

.icon-list,
.pillar-list,
.reason-list,
.check-columns {
    list-style: none;
    margin: 0;
    padding: 0;
}

.icon-list {
    display: grid;
    gap: 18px;
}

.icon-list li,
.pillar-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    line-height: 1.65;
}

.icon-list img,
.pillar-list img,
.card-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

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

.direction-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid rgba(76, 57, 38, 0.1);
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 250, 244, 0.78);
    box-shadow: var(--shadow-soft);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    position: relative;
}

.direction-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(200, 161, 106, 0.55), rgba(159, 101, 77, 0.14), transparent 82%);
    z-index: 1;
}

.direction-card:hover {
    transform: translateY(-4px);
    border-color: rgba(159, 101, 77, 0.18);
    box-shadow: 0 24px 40px rgba(70, 49, 34, 0.12);
}

.direction-media {
    margin: 0;
    height: clamp(250px, 25vw, 390px);
    overflow: hidden;
}

.direction-card:nth-child(1) .direction-media img {
    object-position: center 62%;
}

.direction-card:nth-child(2) .direction-media img {
    object-position: center 55%;
}

.direction-card:nth-child(3) .direction-media img {
    object-position: center 50%;
}

.direction-body {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    align-content: start;
    gap: 14px;
    min-height: 232px;
    padding: 26px 26px 30px;
}

.direction-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 22px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--clay);
}

.direction-body h3,
.process-list h3,
.legal-section h2 {
    margin: 0;
    font-size: 1.28rem;
    color: var(--ink);
}

.direction-body p,
.process-list p,
.legal-section p,
.legal-section li {
    margin: 0;
    line-height: 1.7;
    color: var(--muted);
}

.direction-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 18px 0 0;
    border-top: 1px solid rgba(76, 57, 38, 0.08);
}

.direction-tags li {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(239, 227, 211, 0.72);
    border: 1px solid rgba(159, 101, 77, 0.1);
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.2;
}

.band-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.88fr);
    gap: 36px;
    align-items: start;
}

.band-copy h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 0.98;
}

.band-copy p {
    margin: 18px 0 0;
    max-width: 36rem;
    line-height: 1.75;
}

.band-copy .btn {
    margin-top: 30px;
}

.reason-list {
    padding: 30px;
    border-radius: 30px;
    background: rgba(255, 248, 239, 0.08);
    border: 1px solid rgba(255, 248, 239, 0.14);
    backdrop-filter: blur(10px);
}

.reason-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 248, 239, 0.12);
    line-height: 1.65;
}

.reason-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.process-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
}

.process-list li {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 250, 244, 0.78);
    border: 1px solid rgba(76, 57, 38, 0.08);
    box-shadow: var(--shadow-soft);
}

.step-number {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #efe1cc 0%, #e3cdb1 100%);
    color: var(--olive-deep);
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
}

.approach-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.84fr);
    gap: 38px;
    align-items: stretch;
}

.approach-photo {
    aspect-ratio: 1 / 1;
    min-height: 0;
    height: 100%;
    background: rgba(255, 249, 241, 0.82);
}

.approach-photo img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.pillar-list {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.approach-copy .btn {
    margin-top: 28px;
    justify-self: start;
}

.experience-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(560px, 1fr);
    grid-template-areas: "copy stats";
    gap: 40px;
    align-items: center;
}

.experience-grid .section-copy {
    grid-area: copy;
    max-width: 31rem;
    align-self: center;
}

.experience-grid .stats-grid {
    grid-area: stats;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 18px;
    width: min(100%, 620px);
    justify-self: end;
}

.stat-card {
    min-height: 210px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 248, 239, 0.08);
    border: 1px solid rgba(255, 248, 239, 0.12);
    display: grid;
    align-content: end;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 230, 196, 0.4), rgba(255, 230, 196, 0.08), transparent 76%);
}

.stat-card strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 2.9vw, 3rem);
    line-height: 0.92;
    color: #fff6e8;
    max-width: 8ch;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.stat-card span {
    display: block;
    max-width: 16ch;
    line-height: 1.55;
}

.support-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.84fr) minmax(480px, 1fr);
    grid-template-areas: "copy panel";
    gap: 40px;
    align-items: center;
}

.support-grid .section-copy {
    grid-area: copy;
    max-width: 34rem;
    align-self: center;
}

.support-grid .section-copy h2 {
    max-width: 12ch;
}

.support-panel {
    grid-area: panel;
    width: 100%;
    padding: 34px 36px;
    border-radius: var(--radius-xl);
    border-color: rgba(76, 57, 38, 0.08);
    box-shadow: var(--shadow-soft);
    background: rgba(255, 250, 244, 0.76);
}

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

.check-columns li {
    position: relative;
    padding-left: 22px;
    line-height: 1.7;
}

.check-columns li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--clay));
}

.support-note {
    margin: 24px 0 0;
    padding-top: 22px;
    border-top: 1px solid rgba(76, 57, 38, 0.08);
    color: var(--muted);
    line-height: 1.75;
    max-width: 42rem;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    padding: 24px 28px;
    border-radius: 24px;
    border: 1px solid rgba(76, 57, 38, 0.08);
    background: rgba(255, 250, 244, 0.72);
    box-shadow: var(--shadow-soft);
}

.faq-summary {
    position: relative;
    padding-right: 36px;
    cursor: pointer;
    list-style: none;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--ink);
}

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

.faq-summary::after {
    content: "+";
    position: absolute;
    top: -4px;
    right: 0;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--clay);
    transition: transform 0.28s ease;
}

.faq-item[open] .faq-summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin: 14px 0 0;
    line-height: 1.75;
    color: var(--muted);
}

.consultation-section {
    padding-top: 86px;
}

.consultation-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.8fr);
    gap: 34px;
    align-items: center;
}

.lead-form {
    padding: 34px;
    border-radius: 32px;
    border-color: rgba(76, 57, 38, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 249, 242, 0.94), rgba(252, 245, 236, 0.86)),
        rgba(255, 255, 255, 0.7);
}

.field {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.field span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
}

.field input {
    min-height: 58px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(76, 57, 38, 0.12);
    background: rgba(255, 255, 255, 0.84);
    color: var(--ink);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field input:focus {
    outline: none;
    border-color: rgba(72, 84, 65, 0.42);
    box-shadow: 0 0 0 4px rgba(72, 84, 65, 0.08);
}

.btn-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
    margin-top: 8px;
}

.form-meta {
    margin: 20px 0 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--muted);
}

.form-meta a,
.footer-links a,
.back-link,
.legal-page .legal-section a,
.thanks-links a {
    color: var(--olive);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.section-legal {
    padding-top: 78px;
}

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

.legal-card {
    padding: 32px;
    border-radius: 32px;
    border-color: rgba(76, 57, 38, 0.1);
    background: rgba(255, 249, 241, 0.82);
    color: var(--text);
}

.legal-details {
    display: grid;
    gap: 18px;
    margin: 24px 0 0;
}

.legal-details div {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(76, 57, 38, 0.08);
}

.legal-details div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.legal-details dt {
    margin: 0 0 6px;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clay);
}

.legal-details dd {
    margin: 0;
    line-height: 1.7;
}

.disclaimer {
    margin: 24px 0 0;
    line-height: 1.82;
    color: var(--text);
}

.site-footer {
    padding: 28px 0 40px;
}

.site-footer p {
    margin: 0;
    color: var(--muted);
}

.footer-links {
    display: inline-flex;
    gap: 22px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.legal-page,
.thanks-page {
    background:
        radial-gradient(circle at top left, rgba(200, 161, 106, 0.16), transparent 24%),
        linear-gradient(180deg, #f6eee5 0%, #efe4d5 100%);
}

.legal-shell,
.thanks-shell {
    padding: 52px 0 88px;
}

.legal-hero,
.thanks-card {
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(255, 249, 241, 0.95), rgba(250, 240, 228, 0.86)),
        rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(76, 57, 38, 0.1);
    box-shadow: var(--shadow);
}

.legal-hero {
    padding: 42px;
    margin-bottom: 28px;
}

.legal-hero p {
    max-width: 54rem;
    margin: 18px 0 0;
    line-height: 1.75;
    color: var(--muted);
}

.back-link {
    display: inline-flex;
    margin-bottom: 22px;
}

.legal-stack {
    display: grid;
    gap: 20px;
}

.legal-section {
    padding: 30px 32px;
    border-radius: 28px;
    border-color: rgba(76, 57, 38, 0.1);
    background: rgba(255, 249, 241, 0.84);
}

.legal-section ul,
.legal-section ol {
    margin: 16px 0 0;
    padding-left: 20px;
    color: var(--muted);
}

.legal-section li + li {
    margin-top: 10px;
}

.thanks-shell {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 110px);
}

.thanks-card {
    width: min(820px, 100%);
    padding: 44px;
    text-align: left;
}

.thanks-card p {
    margin: 18px 0 0;
    line-height: 1.75;
    color: var(--muted);
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.thanks-links {
    margin-top: 24px;
    color: var(--muted);
}

@media (max-width: 1100px) {
    .hero-grid,
    .editorial-grid,
    .band-grid,
    .approach-grid,
    .experience-grid,
    .support-grid,
    .consultation-layout {
        grid-template-columns: 1fr;
    }

    .editorial-grid {
        grid-template-areas:
            "copy"
            "photo"
            "benefits";
    }

    .experience-grid {
        grid-template-areas:
            "copy"
            "stats";
    }

    .support-grid {
        grid-template-areas:
            "copy"
            "panel";
    }

    .section-photo {
        aspect-ratio: 1.08 / 0.82;
    }

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

    .hero-copy h1 {
        max-width: 12ch;
    }
}

@media (max-width: 920px) {
    .top-nav {
        display: none;
    }

    .header-inner {
        gap: 16px;
    }

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

    .hero-panel {
        max-width: 640px;
    }

    .stats-grid,
    .check-columns,
    .direction-grid,
    .legal-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        width: 100%;
        justify-self: stretch;
    }

    .benefits-panel .icon-list {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .benefits-panel .icon-list li {
        padding: 16px 0;
        border-top: 1px solid rgba(76, 57, 38, 0.08);
    }

    .benefits-panel .icon-list li:first-child {
        padding-top: 0;
        border-top: 0;
    }

    .approach-photo {
        aspect-ratio: 1.02 / 0.86;
    }
}

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

    .site-header {
        padding: 10px 0;
    }

    .brand-mark {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

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

    .brand-copy span:last-child {
        font-size: 0.82rem;
    }

    .btn-small {
        display: none;
    }

    .section {
        padding: 74px 0;
    }

    .hero-copy h1 {
        max-width: 10ch;
    }

    .hero-actions,
    .thanks-actions {
        flex-direction: column;
    }

    .btn,
    .btn-secondary,
    .btn-light {
        width: 100%;
    }

    .benefits-panel,
    .support-panel,
    .lead-form,
    .legal-card,
    .hero-panel,
    .legal-hero,
    .legal-section,
    .thanks-card,
    .process-list li {
        padding: 24px;
        border-radius: 24px;
    }

    .process-list li {
        grid-template-columns: 1fr;
    }

    .step-number {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
    }

    .consultation-layout {
        gap: 24px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 520px) {
    .hero {
        padding-bottom: 46px;
    }

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

    .hero-lead,
    .section-text,
    .band-copy p,
    .faq-item p,
    .legal-hero p,
    .legal-section p {
        font-size: 0.98rem;
    }

    .hero-panel {
        padding: 20px;
    }

    .section-heading {
        margin-bottom: 24px;
    }

    .direction-media {
        height: 260px;
    }

    .direction-body {
        min-height: 0;
    }

    .approach-photo {
        aspect-ratio: 1 / 0.88;
    }

    .legal-shell,
    .thanks-shell {
        padding-top: 34px;
        padding-bottom: 64px;
    }
}
