:root {
    --bg: #f4efe6;
    --bg-soft: #fbf8f1;
    --surface: rgba(255, 252, 246, 0.82);
    --surface-strong: #fffaf2;
    --text: #1d2a22;
    --text-soft: #536155;
    --line: rgba(29, 42, 34, 0.12);
    --line-strong: rgba(29, 42, 34, 0.22);
    --sage: #3f6a56;
    --sage-deep: #284637;
    --accent: #c46d45;
    --accent-soft: #efd6c7;
    --shadow: 0 24px 80px rgba(72, 52, 39, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --shell: 1200px;
    --header-height: 86px;
    --font-display: "Fraunces", serif;
    --font-body: "Manrope", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    scroll-padding-top: calc(var(--header-height) + 20px);
    color-scheme: light;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(196, 109, 69, 0.12), transparent 30%),
        radial-gradient(circle at right 10%, rgba(63, 106, 86, 0.12), transparent 26%),
        linear-gradient(180deg, #f7f1e8 0%, var(--bg) 42%, #efe7da 100%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    background: rgba(196, 109, 69, 0.22);
    color: var(--text);
}

body.menu-scrolled .site-header {
    background: rgba(244, 239, 230, 0.9);
    box-shadow: 0 10px 30px rgba(40, 70, 55, 0.08);
}

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

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

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

:focus-visible {
    outline: 3px solid rgba(63, 106, 86, 0.35);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--sage-deep);
    color: #fff;
    z-index: 1000;
    transition: top 0.2s ease;
}

.site-header,
section[id],
#top-anchor {
    scroll-margin-top: calc(var(--header-height) + 20px);
}

.skip-link:focus-visible {
    top: 16px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.shell {
    width: min(calc(100% - 2rem), var(--shell));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 0.58rem 0;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    padding: 0.9rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.78);
    box-shadow: 0 10px 30px rgba(72, 52, 39, 0.05);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 5.6rem;
    height: 3rem;
    padding: 0 0.8rem;
    border: 1px solid rgba(40, 70, 55, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
    color: var(--text);
    box-shadow: 0 8px 18px rgba(72, 52, 39, 0.06);
}

.menu-toggle__label {
    font-size: 0.92rem;
    font-weight: 700;
}

.menu-toggle__icon {
    display: inline-flex;
    flex-direction: column;
    gap: 0.22rem;
}

.menu-toggle__icon span {
    display: block;
    width: 0.95rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

body.menu-open .menu-toggle__icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle__icon span:nth-child(2) {
    opacity: 0;
}

body.menu-open .menu-toggle__icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.08rem;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    font-weight: 600;
    letter-spacing: -0.03em;
}

.brand-name {
    line-height: 1;
}

.brand-role {
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.2rem 0;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--text-soft);
    position: relative;
    transition: color 0.2s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: rgba(196, 109, 69, 0.55);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 10.75rem;
    padding: 0.86rem 1.22rem;
    border-radius: 999px;
    background: var(--sage-deep);
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(40, 70, 55, 0.13);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    box-shadow: 0 14px 28px rgba(40, 70, 55, 0.18);
}

.hero {
    padding: 0.1rem 0 3rem;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 2rem;
    align-items: center;
    min-height: calc(100svh - var(--header-height) - 2rem);
}

.hero-copy {
    padding: 1.25rem 0 3.4rem;
}

.eyebrow {
    margin: 0 0 1rem;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--sage);
}

.type-line {
    display: inline-flex;
    align-items: baseline;
    gap: 0.12rem;
    min-width: 9.5ch;
    color: var(--accent);
}

.hero-rotator {
    margin: 0.75rem 0 0;
    color: var(--text-soft);
    font-size: 1rem;
    font-weight: 700;
}

.typewriter-word {
    display: inline-block;
}

.type-caret {
    width: 0.08em;
    height: 1.05em;
    border-radius: 999px;
    background: currentColor;
    animation: caret-blink 1s steps(1) infinite;
}

h1,
h2,
h3 {
    margin: 0;
    text-wrap: balance;
}

h1,
h2 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

h1 {
    max-width: 10ch;
    font-size: clamp(3.6rem, 8vw, 6.6rem);
}

h2 {
    font-size: clamp(2.1rem, 4vw, 3.45rem);
    max-width: 15ch;
    line-height: 1.08;
}

h3 {
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.hero-lead,
.fit-copy p,
.contact-copy p,
.project-copy p,
.offer-card p,
.process-step p,
.notes-grid p {
    color: var(--text-soft);
}

.hero-lead {
    max-width: 61ch;
    margin: 1.5rem 0 0;
    font-size: clamp(1.08rem, 1.8vw, 1.24rem);
    line-height: 1.72;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0.95rem 1.45rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

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

.button:active {
    transform: translateY(0);
}

.button-primary {
    background: var(--sage-deep);
    color: #fff;
    box-shadow: 0 14px 30px rgba(40, 70, 55, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--sage);
}

.button-secondary {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.45);
    color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(40, 70, 55, 0.26);
    background: rgba(255, 255, 255, 0.7);
}

.hero-points {
    display: grid;
    gap: 0.8rem;
    padding: 0;
    margin: 2rem 0 0;
    list-style: none;
}

.hero-points li {
    position: relative;
    padding-left: 1.45rem;
    color: var(--text-soft);
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--accent);
}

.hero-panel {
    position: relative;
    padding: 1rem 0;
}

.hero-panel::before,
.hero-panel::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(6px);
    z-index: -1;
}

.hero-panel::before {
    width: 180px;
    height: 180px;
    top: 5%;
    right: 5%;
    background: rgba(196, 109, 69, 0.18);
}

.hero-panel::after {
    width: 220px;
    height: 220px;
    bottom: 2%;
    left: 0;
    background: rgba(63, 106, 86, 0.16);
}

.chat-card {
    position: relative;
    padding: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-xl);
    background: rgba(255, 250, 243, 0.82);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.chat-top,
.chat-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.chat-top {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.chat-person {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.chat-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #335646, #537e68);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(40, 70, 55, 0.18);
}

.chat-title,
.offer-kicker,
.step-number {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.chat-title {
    display: block;
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: none;
}

.chat-subtitle {
    display: block;
    margin-top: 0.15rem;
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 700;
}

.chat-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(196, 109, 69, 0.12);
    color: var(--accent);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.chat-thread {
    display: grid;
    gap: 0.95rem;
    padding: 1.25rem 0;
}

.message {
    width: fit-content;
    max-width: min(100%, 26rem);
    padding: 1.55rem 1rem 0.95rem;
    border-radius: 20px;
    line-height: 1.45;
    box-shadow: 0 14px 30px rgba(72, 52, 39, 0.06);
    position: relative;
    opacity: 0;
    animation: message-in 0.5s forwards ease;
    animation-delay: var(--message-delay, 0ms);
}

.message-in {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    border-top-left-radius: 10px;
}

.message-out {
    margin-left: auto;
    background: #dcecdf;
    color: #183223;
    border-top-right-radius: 10px;
    transform: translateX(-0.2rem);
}

.message-time {
    position: absolute;
    top: 0.55rem;
    left: 1rem;
    color: rgba(29, 42, 34, 0.46);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.message-typing {
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
    min-height: 3.2rem;
    padding-top: 0.95rem;
    background: rgba(255, 255, 255, 0.9);
}

.message-typing span {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(29, 42, 34, 0.35);
    animation: bubble-bounce 1.2s infinite ease-in-out;
}

.message-typing span:nth-child(2) {
    animation-delay: 0.15s;
}

.message-typing span:nth-child(3) {
    animation-delay: 0.3s;
}

.chat-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    color: var(--text-soft);
    font-size: 0.98rem;
    font-weight: 600;
    justify-content: flex-start;
    line-height: 1.5;
}

.trust-strip {
    padding-bottom: 2rem;
}

.trust-shell {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-shell p {
    margin: 0;
    font-weight: 700;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.trust-shell strong {
    color: var(--accent);
    font-size: 1.2rem;
}

.section {
    padding: 5.5rem 0;
}

.section-heading {
    margin-bottom: 2.5rem;
}

.section-heading.narrow h2 {
    max-width: 16ch;
}

.section-heading h2 {
    max-width: 16ch;
}

.offer-grid,
.process-grid,
.notes-grid {
    display: grid;
    gap: 1.4rem;
}

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

.offer-card,
.process-step,
.contact-card,
.notes-grid > div {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: 0 16px 50px rgba(72, 52, 39, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.offer-card:hover,
.offer-card:focus-within,
.process-step:hover,
.process-step:focus-within,
.notes-grid > div:hover,
.notes-grid > div:focus-within {
    transform: translateY(-4px);
    border-color: rgba(196, 109, 69, 0.25);
    box-shadow: 0 24px 55px rgba(72, 52, 39, 0.11);
}

.offer-kicker,
.step-number,
.project-type {
    margin-bottom: 0.8rem;
    color: var(--accent);
}

.project-type {
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
}

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

.process-step {
    padding-top: 1.5rem;
}

.process-step h3 {
    margin-bottom: 0.75rem;
    font-size: 1.7rem;
}

.step-number {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.fit-shell,
.contact-shell,
.footer-shell {
    display: grid;
    gap: 2rem;
}

.fit-shell {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: center;
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255, 250, 242, 0.9), rgba(239, 214, 199, 0.55));
    box-shadow: var(--shadow);
}

.fit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: flex-start;
}

.fit-list span {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0.68rem 0.98rem;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 4px 12px rgba(72, 52, 39, 0.04);
    font-weight: 700;
    color: var(--text);
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.project-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--surface-strong);
    box-shadow: 0 22px 50px rgba(72, 52, 39, 0.1);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.project-card:hover,
.project-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(72, 52, 39, 0.14);
}

.project-media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #ddd3c3;
    position: relative;
}

.project-media img,
.project-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-media img,
.project-card:hover .project-media video,
.project-card:focus-visible .project-media img,
.project-card:focus-visible .project-media video {
    transform: scale(1.04);
}

.project-copy {
    padding: 1.4rem;
}

.project-media-paddys {
    background: linear-gradient(180deg, #2a221d 0%, #0f0d0c 100%);
}

.project-media-paddys video {
    object-fit: contain;
    background: transparent;
}

.project-card:hover .project-media-paddys video,
.project-card:focus-visible .project-media-paddys video {
    transform: none;
}

.project-copy p:last-child,
.offer-card p,
.process-step p,
.notes-grid p,
.contact-note {
    margin-bottom: 0;
}

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

.contact-shell {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    align-items: start;
}

.contact-card {
    background: rgba(255, 250, 243, 0.95);
}

.contact-list {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    color: var(--text-soft);
}

.contact-list li + li {
    margin-top: 0.65rem;
}

.contact-note {
    margin-top: 1.2rem;
    color: var(--text-soft);
    font-size: 0.96rem;
}

.contact-note a,
.site-footer a {
    color: var(--sage-deep);
    text-decoration: underline;
    text-underline-offset: 0.16em;
    text-decoration-thickness: 1.5px;
}

.contact-note a:hover,
.contact-note a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--accent);
}

.site-footer {
    padding: 1.2rem 0 2.5rem;
}

.footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.footer-shell p {
    margin: 0;
    color: var(--text-soft);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes bubble-bounce {
    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: 0.45;
    }

    40% {
        transform: translateY(-0.28rem);
        opacity: 1;
    }
}

@keyframes message-in {
    from {
        opacity: 0;
        transform: translateY(0.5rem) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes caret-blink {
    0%,
    45% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

@media (max-width: 980px) {
    .hero-shell,
    .fit-shell,
    .contact-shell,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .nav-shell {
        align-items: center;
        flex-wrap: wrap;
        border-radius: 30px;
        padding: 0.95rem 1rem;
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
        gap: 0.8rem 1rem;
    }

    .site-nav .nav-cta {
        margin-left: auto;
    }

    .hero-copy {
        padding: 0.55rem 0 0;
    }

    .hero-shell,
    .process-grid,
    .projects-grid,
    .notes-grid,
    .offer-grid {
        grid-template-columns: 1fr;
    }

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

    .hero {
        padding: 0 0 2.6rem;
    }

    .hero-shell {
        min-height: auto;
        gap: 1.4rem;
        align-items: start;
    }

    h1 {
        max-width: none;
        font-size: clamp(2.9rem, 9vw, 4.85rem);
    }

    h2 {
        max-width: none;
        font-size: clamp(2.05rem, 5.8vw, 3.15rem);
    }

    .hero-panel {
        padding: 0;
    }

    .hero-panel::before,
    .hero-panel::after {
        opacity: 0.75;
        transform: scale(0.82);
        transform-origin: center;
    }

    .section {
        padding: 4.4rem 0;
    }

    .section-heading {
        margin-bottom: 2rem;
    }
}

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

    .site-header {
        padding-top: 0.35rem;
    }

    .nav-shell {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.35rem 0.75rem;
        padding: 0.82rem 0.9rem;
        border-radius: 24px;
    }

    .menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .site-nav {
        grid-column: 1 / -1;
        display: none;
        gap: 0.3rem;
        width: 100%;
        padding-top: 0.15rem;
        border-top: 1px solid var(--line);
    }

    body.menu-open .site-nav {
        display: grid;
    }

    .site-nav a {
        min-height: 44px;
        justify-content: flex-start;
        padding: 0.15rem 0;
        font-size: 0.96rem;
    }

    .site-nav .nav-cta {
        display: inline-flex;
        width: fit-content;
        margin-top: 0.25rem;
        padding: 0.78rem 1rem;
    }

    .hero {
        padding: 0.15rem 0 1.7rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero-shell {
        gap: 0.9rem;
    }

    .hero-copy {
        padding-top: 0.2rem;
        padding-bottom: 0;
        padding-inline: 0.9rem;
    }

    .offer-card,
    .process-step,
    .contact-card,
    .notes-grid > div,
    .fit-shell {
        padding: 1.18rem;
    }

    .chat-card {
        padding: 0.9rem;
        border-radius: 24px;
    }

    .message {
        max-width: 100%;
        padding: 1.1rem 0.88rem 0.74rem;
        font-size: 0.95rem;
    }

    .chat-top,
    .chat-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .chat-thread {
        gap: 0.62rem;
        padding: 0.82rem 0;
    }

    .chat-tag {
        font-size: 0.82rem;
        padding: 0.34rem 0.58rem;
    }

    .chat-footer {
        font-size: 0.92rem;
    }

    h1 {
        max-width: 12ch;
        font-size: clamp(2.35rem, 8.9vw, 3.05rem);
        line-height: 0.97;
    }

    .hero-lead {
        max-width: 31ch;
        margin-top: 0.8rem;
        font-size: 0.98rem;
        line-height: 1.48;
    }

    .hero-rotator {
        margin-top: 0.55rem;
        font-size: 0.96rem;
    }

    .hero-actions,
    .contact-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.6rem;
        margin-top: 1.4rem;
    }

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

    .hero-actions .button-secondary {
        width: 100%;
        min-height: 52px;
        justify-self: stretch;
        padding: 0.88rem 1.1rem;
        border: 1px solid rgba(40, 70, 55, 0.16);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.54);
        box-shadow: 0 10px 24px rgba(72, 52, 39, 0.05);
        color: var(--text);
        font-weight: 700;
    }

    .hero-actions .button-secondary:hover,
    .hero-actions .button-secondary:focus-visible {
        transform: translateY(-1px);
        color: var(--text);
        border-color: rgba(196, 109, 69, 0.28);
        background: rgba(255, 255, 255, 0.78);
    }

    .hero-points {
        display: none;
    }

    .hero-panel {
        padding-top: 0.55rem;
    }

    .trust-strip {
        padding-bottom: 1.2rem;
    }

    .trust-shell {
        gap: 0.8rem;
        padding: 0.9rem 0.25rem;
    }

    .trust-shell p {
        align-items: flex-start;
        font-size: 0.95rem;
        gap: 0.7rem;
        padding: 0.88rem 0.95rem;
        border: 1px solid rgba(255, 255, 255, 0.45);
        border-radius: 18px;
        background: rgba(255, 250, 243, 0.72);
    }

    .section-heading {
        margin-bottom: 1.55rem;
    }

    .section-heading h2 {
        max-width: 11ch;
    }

    .process-step h3 {
        font-size: 1.35rem;
    }

    .process-grid {
        gap: 0.75rem;
    }

    .process-step {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 0.2rem 0.9rem;
        padding: 1rem 0;
        border: 0;
        border-top: 1px solid var(--line);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .process-step:hover,
    .process-step:focus-within {
        transform: none;
        border-color: var(--line);
        box-shadow: none;
    }

    .process-step h3,
    .process-step p {
        grid-column: 2;
    }

    .step-number {
        grid-row: 1 / span 2;
        margin: 0;
        padding-top: 0.15rem;
        font-size: 1rem;
    }

    .project-media {
        aspect-ratio: 4 / 3;
    }

    .project-copy {
        padding: 1.15rem;
    }

    .fit-list span {
        min-height: 0;
        padding: 0.65rem 0.88rem;
        border-radius: 999px;
        font-size: 0.95rem;
    }

    .footer-shell {
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .brand {
        gap: 0.04rem;
        font-size: 1.14rem;
    }

    .menu-toggle {
        min-width: 5rem;
        height: 2.8rem;
        border-radius: 16px;
        padding: 0 0.72rem;
    }

    .brand-role {
        font-size: 0.65rem;
        letter-spacing: 0.07em;
    }

    .site-nav a {
        font-size: 0.9rem;
    }

    h1 {
        max-width: 12.2ch;
        font-size: clamp(2.12rem, 8.8vw, 2.6rem);
    }

    h2 {
        font-size: clamp(1.8rem, 8.6vw, 2.3rem);
    }

    .hero-copy {
        padding-top: 0.05rem;
        padding-inline: 0.6rem;
    }

    .eyebrow {
        margin-bottom: 0.65rem;
        font-size: 0.88rem;
    }

    .type-line {
        min-width: 8.4ch;
    }

    .hero-lead {
        max-width: 29ch;
        font-size: 0.95rem;
    }

    .hero-rotator {
        margin-top: 0.5rem;
        font-size: 0.92rem;
    }

    .type-caret {
        display: none;
    }

    .chat-card {
        padding: 0.82rem;
    }

    .chat-top {
        padding-bottom: 0.72rem;
    }

    .chat-avatar {
        width: 2.3rem;
        height: 2.3rem;
    }

    .chat-title {
        font-size: 0.95rem;
    }

    .chat-subtitle {
        font-size: 0.76rem;
    }

    .chat-tag {
        font-size: 0.78rem;
        padding: 0.32rem 0.56rem;
    }

    .chat-thread {
        gap: 0.55rem;
        padding: 0.72rem 0;
    }

    .message {
        padding: 1rem 0.82rem 0.72rem;
        font-size: 0.92rem;
    }

    .hero-panel::before,
    .hero-panel::after {
        display: none;
    }

    .message-time {
        top: 0.44rem;
        left: 0.84rem;
        font-size: 0.66rem;
    }

    .chat-thread .message:nth-child(3),
    .chat-thread .message:nth-child(4) {
        display: none;
    }

    .chat-footer {
        font-size: 0.88rem;
    }

    .hero-lead,
    .offer-card p,
    .process-step p,
    .notes-grid p,
    .project-copy p,
    .contact-note,
    .contact-list {
        color: #47544a;
    }
}

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

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

    [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .message {
        opacity: 1;
    }
}
