:root {
    --bg: #f1e9df;
    --bg-deep: #e1d4c5;
    --paper: #f8f3eb;
    --paper-strong: #fffdf8;
    --ink: #141821;
    --ink-soft: rgba(20, 24, 33, 0.82);
    --muted: #676152;
    --edge: rgba(34, 49, 76, 0.12);
    --edge-strong: rgba(34, 49, 76, 0.22);
    --navy: #22314c;
    --navy-deep: #18253c;
    --terracotta: #b86745;
    --terracotta-soft: rgba(184, 103, 69, 0.12);
    --shadow: 0 28px 72px rgba(31, 27, 22, 0.1);
    --shadow-soft: 0 16px 36px rgba(31, 27, 22, 0.06);
    --radius-xl: 38px;
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --container: min(1220px, calc(100vw - 56px));
    --ui-font: "Instrument Sans", "Segoe UI", sans-serif;
    --display-font: "Cormorant Garamond", Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    font-family: var(--ui-font);
    background:
        radial-gradient(circle at top left, rgba(184, 103, 69, 0.1), transparent 28%),
        radial-gradient(circle at top right, rgba(34, 49, 76, 0.08), transparent 34%),
        linear-gradient(180deg, #f6efe6 0%, var(--bg) 46%, var(--bg-deep) 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 100%),
        linear-gradient(rgba(20, 24, 33, 0.02) 0, rgba(20, 24, 33, 0.02) 1px, transparent 1px, transparent 100%);
    background-size: 144px 144px;
}

body::after {
    content: "";
    position: fixed;
    inset: auto auto -14vw -10vw;
    width: 34vw;
    height: 34vw;
    max-width: 540px;
    max-height: 540px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(34, 49, 76, 0.08) 0%, rgba(34, 49, 76, 0) 70%);
    filter: blur(18px);
    animation: ambientFloat 22s ease-in-out infinite;
}

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

button,
input,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
}

.site-shell {
    position: relative;
    overflow: clip;
}

.site-header,
.section {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 12px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

body.page-ready .site-header {
    animation: headerDrop 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0 -14px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 28px;
    background: rgba(248, 243, 235, 0.88);
    box-shadow: 0 12px 28px rgba(39, 33, 27, 0.06);
    backdrop-filter: blur(14px);
}

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

.brand-mark {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    border-radius: 6px;
    background:
        linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta) 48%, rgba(34, 49, 76, 0.14) 48%, rgba(34, 49, 76, 0.14) 100%);
    box-shadow: 0 0 0 8px rgba(34, 49, 76, 0.06);
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-copy span,
.header-link,
.eyebrow,
.hero-note,
.form-kicker,
.form-caption {
    color: var(--muted);
}

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

.site-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
}

.header-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 16px;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background-color 0.22s ease,
        color 0.22s ease;
}

.header-link-muted {
    border: 1px solid transparent;
}

.header-link-strong {
    border: 1px solid var(--edge);
    background: rgba(255, 255, 255, 0.42);
}

.header-link:hover,
.header-link:focus-visible {
    transform: translateY(-1px);
}

.header-link-strong:hover,
.header-link-strong:focus-visible {
    border-color: var(--edge-strong);
    background: rgba(255, 255, 255, 0.72);
}

main {
    padding-top: 34px;
}

.section {
    padding: 68px 0;
}

.eyebrow,
.form-kicker {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--ink);
}

h1 {
    max-width: 7.6ch;
    font-size: clamp(3.6rem, 6.7vw, 6.15rem);
    line-height: 0.9;
    letter-spacing: -0.085em;
    font-weight: 700;
}

h1 span,
.company-facts strong,
.service-list li::before,
.directions-list li::before,
.process-list li::before {
    font-family: var(--display-font);
    font-weight: 600;
}

h1 span {
    display: block;
    max-width: 10.5ch;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(184, 103, 69, 0.42);
    color: var(--terracotta);
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-style: italic;
}

h2 {
    max-width: 11ch;
    font-size: clamp(2.4rem, 4.1vw, 4rem);
    line-height: 0.94;
    letter-spacing: -0.065em;
    font-weight: 700;
}

h3 {
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 700;
}

.section-intro {
    display: grid;
    gap: 14px;
    max-width: 42rem;
}

.hero.section {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.84fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: start;
    padding-top: 20px;
}

.hero-copy {
    position: relative;
    max-width: 660px;
    padding-top: 28px;
}

.hero-copy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: min(100%, 560px);
    height: 1px;
    background: linear-gradient(90deg, rgba(34, 49, 76, 0.46) 0%, rgba(34, 49, 76, 0) 100%);
    transform-origin: left center;
}

body.page-ready .hero-copy::before {
    animation: lineGrow 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

body.page-ready .hero-copy {
    animation: heroRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.page-ready .hero-stage {
    animation: heroRise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.hero-lead,
.company-copy p,
.service-note p,
.final-copy > p,
.form-heading p,
.thanks-card p {
    margin: 0;
    font-size: clamp(1.02rem, 1.45vw, 1.14rem);
    line-height: 1.72;
    color: var(--muted);
}

.hero-lead {
    max-width: 35rem;
    margin-top: 28px;
}

.hero-points,
.trust-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 36px;
}

.hero-points li,
.trust-list li {
    position: relative;
    line-height: 1.58;
}

.hero-points li {
    min-height: 100%;
    padding: 18px 18px 18px 22px;
    border: 1px solid var(--edge);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.32);
    box-shadow: var(--shadow-soft);
}

.hero-points li::before,
.trust-list li::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 22px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(184, 103, 69, 0.48);
    background: var(--terracotta-soft);
}

.hero-points li {
    padding-left: 40px;
}

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

.hero-note {
    display: grid;
    gap: 8px;
    max-width: 21rem;
    padding-left: 18px;
    border-left: 1px solid rgba(34, 49, 76, 0.12);
    font-size: 0.91rem;
    line-height: 1.56;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 28px;
    border: 1px solid transparent;
    border-radius: 18px;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition:
        transform 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button:focus-visible,
.header-link:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid rgba(34, 49, 76, 0.22);
    outline-offset: 3px;
}

.button-primary {
    position: relative;
    overflow: hidden;
    color: #f8f3eb;
    background: var(--navy);
    box-shadow: 0 16px 32px rgba(34, 49, 76, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--navy-deep);
    box-shadow: 0 18px 34px rgba(34, 49, 76, 0.24);
}

.button-primary::after {
    content: "";
    position: absolute;
    inset: -120% auto auto -20%;
    width: 56%;
    height: 280%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(18deg);
    transition: transform 0.6s ease;
}

.button-primary:hover::after,
.button-primary:focus-visible::after {
    transform: translateX(240%) rotate(18deg);
}

.button-block {
    width: 100%;
}

.hero-stage {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--edge);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(249, 245, 239, 0.8) 0%, rgba(255, 253, 248, 0.56) 100%);
    box-shadow: var(--shadow);
    --stage-x: 0px;
    --stage-y: 0px;
}

.hero-photo {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 30px;
    transform: translate3d(var(--stage-x), var(--stage-y), 0);
    transition: transform 0.42s ease;
    box-shadow: 0 22px 36px rgba(20, 24, 33, 0.12);
}

.hero-photo img {
    display: block;
    width: 100%;
    height: clamp(360px, 37vw, 520px);
    object-fit: cover;
    object-position: center 32%;
    filter: saturate(0.92) contrast(1.02);
    animation: imageBreath 16s ease-in-out infinite;
}

.hero-photo figcaption {
    position: absolute;
    right: 24px;
    bottom: 22px;
    left: 24px;
    max-width: 21rem;
    margin: 0;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(20, 29, 45, 0.16) 0%, rgba(20, 29, 45, 0.62) 100%);
    color: rgba(248, 243, 235, 0.96);
    font-size: 0.95rem;
    line-height: 1.5;
}

.hero-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--edge);
    border-radius: 26px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-soft);
}

.hero-rail article {
    display: grid;
    gap: 10px;
    align-content: start;
    min-height: 148px;
    padding: 18px 20px 20px;
    border-right: 1px solid var(--edge);
}

.hero-rail article:last-child {
    border-right: 0;
}

.hero-rail span {
    color: var(--terracotta);
    font-family: var(--display-font);
    font-size: 1.65rem;
    line-height: 1;
}

.hero-rail strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 700;
}

.hero-rail p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.56;
}

.company-card,
.service-shell,
.directions-board,
.final-shell {
    margin-top: 32px;
}

.company-card {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 34px;
    align-items: start;
    padding: 40px;
    border: 1px solid var(--edge);
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.86) 0%, rgba(249, 245, 239, 0.6) 100%);
    box-shadow: var(--shadow-soft);
}

.company-copy {
    display: grid;
}

.company-copy p {
    max-width: 34rem;
    font-size: clamp(1.1rem, 1.6vw, 1.24rem);
    line-height: 1.76;
    color: var(--ink-soft);
}

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

.company-facts article {
    display: grid;
    gap: 14px;
    align-content: start;
    min-height: 198px;
    padding: 24px 22px;
    border: 1px solid var(--edge);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.54);
}

.company-facts strong {
    display: block;
    font-size: clamp(2.35rem, 4vw, 3.75rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
    color: var(--terracotta);
}

.company-facts span {
    max-width: 13rem;
    font-size: 0.98rem;
    line-height: 1.58;
    color: var(--ink-soft);
}

.service-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
    gap: 30px;
    align-items: start;
    padding: 36px;
    border: 1px solid var(--edge);
    border-radius: 36px;
    background: rgba(249, 245, 239, 0.66);
    box-shadow: var(--shadow-soft);
}

.service-list {
    counter-reset: service-step;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-list li {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid var(--edge);
    font-size: clamp(1.02rem, 1.3vw, 1.14rem);
    line-height: 1.56;
}

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

.service-list li::before {
    counter-increment: service-step;
    content: "0" counter(service-step);
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(34, 49, 76, 0.14);
    border-radius: 50%;
    background: rgba(34, 49, 76, 0.05);
    color: var(--navy);
    font-size: 1.3rem;
    line-height: 1;
}

.service-note {
    position: relative;
    min-height: 100%;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background: linear-gradient(155deg, rgba(24, 38, 63, 0.98) 0%, rgba(38, 54, 82, 0.94) 100%);
    box-shadow: var(--shadow);
}

.service-note::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 26px;
    width: 52px;
    height: 1px;
    background: rgba(248, 243, 235, 0.34);
}

.service-note p {
    margin-top: 34px;
    color: rgba(248, 243, 235, 0.88);
}

.directions-board {
    display: block;
    margin-top: 32px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 36px;
    background: linear-gradient(155deg, rgba(24, 38, 63, 0.98) 0%, rgba(34, 50, 77, 0.95) 100%);
    box-shadow: var(--shadow);
}

.directions-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.direction-row {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    padding: 16px 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.96) 0%, rgba(248, 243, 235, 0.82) 100%);
    box-shadow: var(--shadow-soft);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.direction-row:hover,
.direction-row:focus-within {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 38px rgba(31, 27, 22, 0.08);
}

.direction-row:nth-child(2n) {
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.96) 0%, rgba(251, 246, 240, 0.76) 100%);
}

.direction-thumb {
    display: grid;
    place-items: center;
    margin: 0;
    min-height: 168px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(234, 227, 216, 0.96) 0%, rgba(246, 240, 232, 0.98) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.direction-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: contain;
    object-position: center;
}

.direction-copy {
    display: grid;
    align-content: center;
    gap: 12px;
    min-height: 0;
    padding: 4px 2px 4px 0;
}

.direction-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px 12px;
    align-items: center;
}

.direction-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 34px;
    width: fit-content;
    padding: 0 12px;
    border: 1px solid rgba(184, 103, 69, 0.16);
    border-radius: 999px;
    background: var(--terracotta-soft);
    color: var(--terracotta);
    font-family: var(--display-font);
    font-size: 1.2rem;
    line-height: 1;
}

.direction-copy h3 {
    font-size: clamp(1.12rem, 1.35vw, 1.32rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.direction-copy p {
    margin: 0;
    color: var(--muted);
    max-width: 42rem;
    font-size: 0.94rem;
    line-height: 1.58;
}

.directions-note {
    margin: 0;
    color: var(--muted);
    line-height: 1.66;
}

.directions-footnote {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding: 20px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.directions-footnote .eyebrow,
.directions-footnote .directions-note {
    color: rgba(248, 243, 235, 0.82);
}

.directions-footnote .directions-note {
    max-width: 46rem;
}

.process-list {
    counter-reset: process-step;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    position: relative;
    min-height: 196px;
    padding: 74px 22px 22px;
    border: 1px solid var(--edge);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.52);
    box-shadow: var(--shadow-soft);
    font-size: 1rem;
    line-height: 1.6;
}

.process-list li::before {
    counter-increment: process-step;
    content: "0" counter(process-step);
    position: absolute;
    top: 22px;
    left: 22px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(184, 103, 69, 0.18);
    border-radius: 14px;
    background: rgba(184, 103, 69, 0.1);
    color: var(--terracotta);
    font-size: 1.36rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.trust-card {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: 24px;
}

.trust-copy {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    background: linear-gradient(155deg, rgba(24, 38, 63, 0.98) 0%, rgba(33, 50, 78, 0.95) 100%);
    box-shadow: var(--shadow);
}

.trust-copy .eyebrow,
.trust-copy h2 {
    color: rgba(248, 243, 235, 0.94);
}

.trust-copy h2 {
    margin-top: 16px;
    max-width: 8ch;
}

.trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 34px;
    border: 1px solid var(--edge);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.54);
    box-shadow: var(--shadow-soft);
}

.trust-list li {
    padding-left: 26px;
    font-size: 1rem;
    color: var(--ink-soft);
}

.trust-list li::before {
    top: 0.72em;
    left: 0;
}

.final-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.72fr);
    gap: 30px;
    align-items: start;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 38px;
    background: linear-gradient(155deg, rgba(24, 38, 63, 0.98) 0%, rgba(34, 50, 77, 0.95) 100%);
    box-shadow: var(--shadow);
}

.final-copy {
    padding: 18px 10px 18px 12px;
}

.final-copy .eyebrow,
.final-copy h2,
.final-copy > p {
    color: rgba(248, 243, 235, 0.95);
}

.final-copy h2 {
    margin-top: 16px;
    max-width: 10ch;
}

.final-copy > p {
    max-width: 33rem;
    margin-top: 22px;
    color: rgba(248, 243, 235, 0.76);
}

.final-note {
    display: grid;
    gap: 6px;
    width: fit-content;
    margin-top: 28px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.final-note strong {
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(248, 243, 235, 0.92);
}

.final-note p {
    margin: 0;
    color: rgba(248, 243, 235, 0.72);
    line-height: 1.58;
}

.lead-form {
    position: relative;
    scroll-margin-top: 108px;
    padding: 28px;
    border: 1px solid rgba(34, 49, 76, 0.1);
    border-radius: 30px;
    background: rgba(255, 253, 248, 0.97);
    box-shadow: 0 24px 56px rgba(12, 16, 24, 0.16);
}

.form-heading h3 {
    max-width: 11ch;
    margin-top: 12px;
}

.form-heading p {
    max-width: 32rem;
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.64;
}

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

.field {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.field span {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid rgba(20, 24, 33, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    padding: 16px 18px;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.field input {
    min-height: 56px;
}

.field textarea {
    min-height: 120px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #7b756c;
}

.field input:hover,
.field textarea:hover {
    border-color: rgba(20, 24, 33, 0.2);
    transform: translateY(-1px);
}

.field input:focus-visible,
.field textarea:focus-visible {
    border-color: rgba(34, 49, 76, 0.28);
    background: var(--paper-strong);
    box-shadow: 0 0 0 4px rgba(34, 49, 76, 0.08);
    outline: none;
    transform: none;
}

.lead-form .button {
    margin-top: 18px;
}

.form-caption {
    margin: 14px 0 0;
    font-size: 0.88rem;
    line-height: 1.58;
}

.submit-pending .button[type="submit"] {
    cursor: wait;
    opacity: 0.96;
}

.site-footer {
    width: var(--container);
    margin: 0 auto;
    padding: 0 0 36px;
}

.site-footer__inner {
    display: grid;
    gap: 12px;
    padding: 22px 24px;
    border-top: 1px solid rgba(34, 49, 76, 0.12);
    color: var(--muted);
}

.site-footer__title {
    margin: 0;
    color: var(--ink);
    font-size: 0.98rem;
    font-weight: 600;
}

.site-footer__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
}

.site-footer__meta p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.site-footer__meta span {
    color: var(--ink);
    font-weight: 600;
    margin-right: 8px;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 32px 20px;
}

.thanks-card {
    width: min(760px, 100%);
    padding: 42px;
    border: 1px solid var(--edge);
    border-radius: 34px;
    background: rgba(255, 253, 248, 0.94);
    box-shadow: var(--shadow);
}

.thanks-card h1 {
    max-width: 9ch;
    margin-top: 14px;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.9;
}

.thanks-card h1 span {
    display: inline;
    margin: 0;
    padding: 0;
    border: 0;
}

.thanks-card p {
    max-width: 36rem;
    margin-top: 22px;
}

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

.site-footer-thanks {
    width: min(760px, 100%);
    padding-bottom: 0;
}

.site-footer-thanks .site-footer__inner {
    padding: 0;
    border-top: 0;
}

@keyframes lineGrow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes heroRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imageBreath {
    0%,
    100% {
        transform: scale(1.01);
    }
    50% {
        transform: scale(1.03);
    }
}

@keyframes ambientFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(24px, -18px, 0);
    }
}

@keyframes headerDrop {
    from {
        opacity: 0.42;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1120px) {
    .hero.section,
    .company-card,
    .service-shell,
    .trust-card,
    .final-shell {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .hero-stage {
        max-width: 860px;
    }

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

    .final-copy {
        padding: 10px 6px 6px;
    }
}

@media (max-width: 860px) {
    :root {
        --container: min(100vw - 32px, 760px);
    }

    .site-header {
        gap: 14px;
    }

    .site-header::before {
        inset-inline: -8px;
    }

    .brand {
        gap: 12px;
        padding-block: 14px 12px;
    }

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

    .brand-copy span {
        font-size: 0.84rem;
    }

    .header-link-muted {
        display: none;
    }

    .header-link-strong {
        min-height: 42px;
        padding-inline: 15px;
        font-size: 0.92rem;
    }

    main {
        padding-top: 24px;
    }

    .section {
        padding: 54px 0;
    }

    h1 {
        max-width: 8ch;
        font-size: clamp(3.15rem, 11vw, 4.7rem);
    }

    h1 span {
        margin-top: 18px;
        font-size: clamp(1.32rem, 5.8vw, 1.8rem);
    }

    h2,
    h3 {
        max-width: none;
        font-size: clamp(2rem, 7.2vw, 2.8rem);
        line-height: 0.98;
    }

    .hero-points,
    .form-row {
        grid-template-columns: 1fr;
    }

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

    .hero-note {
        max-width: none;
    }

    .hero-stage {
        padding: 16px;
        border-radius: 30px;
    }

    .hero-photo {
        border-radius: 24px;
    }

    .hero-photo img {
        height: 340px;
    }

    .hero-photo figcaption {
        max-width: 18rem;
    }

    .hero-rail {
        grid-template-columns: 1fr;
    }

    .hero-rail article {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--edge);
    }

    .hero-rail article:last-child {
        border-bottom: 0;
    }

    .company-card,
    .service-shell,
    .trust-copy,
    .trust-list,
    .final-shell,
    .lead-form,
    .thanks-card {
        padding: 24px;
    }

    .company-facts,
    .trust-list {
        grid-template-columns: 1fr;
    }

    .directions-board {
        padding: 24px;
    }

    .direction-row {
        grid-template-columns: 184px minmax(0, 1fr);
    }

    .process-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 680px) {
    :root {
        --container: min(100vw - 22px, 640px);
    }

    body::before {
        opacity: 0.1;
    }

    .site-header {
        top: 8px;
    }

    .site-header::before {
        height: auto;
        border-radius: 22px;
    }

    .brand {
        min-width: 0;
    }

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

    .brand-copy span {
        font-size: 0.78rem;
    }

    .header-link-strong {
        min-height: 40px;
        padding-inline: 13px;
    }

    .section {
        padding: 44px 0;
    }

    .hero.section {
        gap: 28px;
    }

    .hero-copy {
        padding-top: 22px;
    }

    .hero-points li,
    .process-list li {
        font-size: 0.97rem;
    }

    .hero-photo img {
        height: 300px;
        object-position: center 30%;
    }

    .hero-photo figcaption {
        right: 18px;
        bottom: 18px;
        left: 18px;
        max-width: none;
        font-size: 0.88rem;
    }

    .hero-note {
        padding-left: 0;
        border-left: 0;
    }

    .service-list li {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .direction-row {
        grid-template-columns: 136px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .direction-thumb {
        min-height: 132px;
    }

    .direction-copy {
        gap: 8px;
        padding: 2px 0;
    }

    .direction-header {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 8px;
    }

    .direction-copy h3 {
        font-size: 1.04rem;
    }

    .direction-copy p {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .directions-footnote {
        margin-top: 14px;
        padding: 18px 18px 4px;
    }

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

    .process-list li {
        min-height: 0;
    }

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

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

    .site-footer__inner {
        padding: 18px 0 0;
    }

    .site-footer__meta {
        display: grid;
        gap: 8px;
    }
}

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

    body::after,
    body.page-ready .site-header,
    body.page-ready .hero-copy,
    body.page-ready .hero-stage,
    body.page-ready .hero-copy::before,
    .hero-photo img {
        animation: none;
    }

    .button,
    .header-link,
    .field input,
    .field textarea,
    .hero-photo {
        transition: none;
    }
}
