/* Internet Managers — workshop editorial aesthetic */

:root {
    --ink: #182433;
    --ink-soft: #3a4a5c;
    --cream: #d8e4f0;
    --cream-dark: #c0cfdc;
    --paper: #edf2f7;
    --blue-mist: #e4ecf4;
    --blue-slate: #cfdce8;
    --blue-dusk: #1e2d42;
    --copper: #b85c38;
    --copper-light: #d4784f;
    --copper-glow: rgba(184, 92, 56, 0.15);
    --sage: #4a6b5d;
    --sage-light: #6a8f7e;
    --grid: rgba(24, 36, 51, 0.07);
    --radius: 6px;
    --radius-lg: 12px;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Source Sans 3', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --nav-h: 72px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
}

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

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

.container {
    width: min(1120px, calc(100% - 3rem));
    margin-inline: auto;
}

/* ── Navigation ── */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 1.5rem;
    background: rgba(237, 242, 247, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.nav.is-scrolled {
    border-color: var(--grid);
    box-shadow: 0 1px 0 var(--grid);
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.nav__mark {
    width: 10px;
    height: 10px;
    background: var(--copper);
    border-radius: 2px;
    transform: rotate(45deg);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color 0.2s;
}

.nav__links a:hover {
    color: var(--ink);
}

.nav__cta {
    background: var(--ink) !important;
    color: var(--paper) !important;
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius);
    transition: background 0.2s, transform 0.2s !important;
}

.nav__cta:hover {
    background: var(--copper) !important;
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav__toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.mobile-drawer {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--paper);
    border-bottom: 1px solid var(--grid);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.35s;
}

.mobile-drawer.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 0;
}

/* ── Buttons ── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 1.6rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn--primary {
    background: var(--copper);
    color: #fff;
    box-shadow: 0 4px 20px var(--copper-glow);
}

.btn--primary:hover {
    background: var(--copper-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--copper-glow);
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--cream-dark);
}

.btn--ghost:hover {
    border-color: var(--ink);
    background: var(--cream);
}

.btn--full {
    width: 100%;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ── Hero ── */

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: var(--nav-h);
    display: flex;
    align-items: center;
    position: relative;
    background:
        linear-gradient(var(--grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 48px 48px;
    background-position: center top;
}

/* Page-wide sketch flowchart */

.page {
    position: relative;
    isolation: isolate;
}

.page > section,
.strip {
    position: relative;
    z-index: 3;
}

.page-sketch {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.65;
    mask-image: linear-gradient(to right, transparent 0%, black 30%, black 72%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%, black 72%, transparent 100%);
}

.sketch-flowchart {
    position: absolute;
    left: 50%;
    top: 0;
    width: min(90vw, 960px);
    height: auto;
    transform: translateX(-42%) translateY(var(--sketch-y, 0));
    color: var(--sage);
    will-change: transform;
}

.sketch-stroke--intro {
    opacity: 0.55;
    animation: sketch-draw 1.4s var(--ease-out) calc(var(--i, 0) * 0.35s) forwards;
}

.sketch-stroke--scroll {
    animation: none;
    stroke-dashoffset: 1;
    opacity: 0.35;
}

.sketch-label--intro {
    opacity: 0;
    animation: sketch-fade-in 0.5s var(--ease-out) calc(var(--i, 0) * 0.35s + 0.9s) forwards;
}

.sketch-label--scroll {
    animation: none;
    opacity: 0;
}

.sketch-stroke {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.sketch-stroke--intro.sketch-stroke--connector {
    stroke-width: 1.5;
    animation-duration: 0.9s;
}

.sketch-stroke--intro.sketch-stroke--doodle {
    stroke-width: 1.25;
    animation-duration: 1.8s;
}

.sketch-stroke--intro.sketch-stroke--arrow {
    stroke-width: 1.25;
    fill: currentColor;
    stroke: none;
    opacity: 0;
    animation: sketch-fade-in 0.4s var(--ease-out) calc(var(--i, 0) * 0.35s + 0.6s) forwards;
}

.sketch-stroke--scroll.sketch-stroke--arrow {
    fill: currentColor;
    stroke: none;
    animation: none;
    opacity: 0;
}

.sketch-label {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    fill: var(--ink-soft);
    text-anchor: middle;
}

.sketch-label--sm {
    font-size: 11px;
    letter-spacing: 0.08em;
}

.sketch-stroke--scroll.sketch-stroke--dot {
    stroke-width: 2.5;
    fill: currentColor;
}

.sketch-stroke--scroll.sketch-stroke--diamond {
    stroke-width: 1.5;
    fill: none;
}

@keyframes sketch-draw {
    to { stroke-dashoffset: 0; }
}

@keyframes sketch-fade-in {
    to { opacity: 0.5; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 40%, var(--copper-glow), transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.hero__inner {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 3rem));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-block: 4rem;
}

.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1.25rem;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero__title em {
    font-style: italic;
    color: var(--copper);
}

.hero__lead {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 32rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.hero__trust {
    font-size: 0.88rem;
    color: var(--ink-soft);
    max-width: 28rem;
    padding-left: 1rem;
    border-left: 2px solid var(--copper);
    opacity: 0.85;
}

/* Hero media */

.hero__media-wrap {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    box-shadow:
        0 1px 2px rgba(28, 31, 36, 0.04),
        0 12px 40px rgba(28, 31, 36, 0.08);
    overflow: hidden;
}

.hero__media {
    display: block;
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-lg) - 4px);
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

/* Blueprint visual (legacy) */

.blueprint__frame {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow:
        0 1px 2px rgba(28, 31, 36, 0.04),
        0 12px 40px rgba(28, 31, 36, 0.08);
    position: relative;
}

.blueprint__frame::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(28, 31, 36, 0.1);
    border-radius: calc(var(--radius-lg) - 4px);
    pointer-events: none;
}

.blueprint__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 1rem;
}

.blueprint__steps {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
}

.blueprint__step {
    flex: 1;
    text-align: center;
    padding: 0.5rem 0.25rem;
    border-radius: var(--radius);
    background: rgba(28, 31, 36, 0.04);
    transition: background 0.4s, transform 0.4s;
    cursor: default;
}

.blueprint__step.is-active {
    background: var(--ink);
    color: var(--paper);
    transform: scale(1.04);
}

.blueprint__num {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    opacity: 0.6;
    letter-spacing: 0.05em;
}

.blueprint__name {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 0.15rem;
}

.blueprint__preview {
    position: relative;
    height: 200px;
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
}

.preview-card {
    position: absolute;
    inset: 0;
    padding: 1.25rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

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

.preview-card__bar {
    height: 8px;
    width: 40%;
    background: var(--cream-dark);
    border-radius: 2px;
    margin-bottom: 1rem;
}

.preview-card__line {
    height: 6px;
    background: var(--cream-dark);
    border-radius: 2px;
    margin-bottom: 0.6rem;
    width: 75%;
}

.preview-card__line--wide { width: 90%; }
.preview-card__line--short { width: 45%; }

.preview-card__grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(var(--grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.5;
}

.preview-card__block--hero {
    height: 60px;
    background: var(--copper-glow);
    border: 1px dashed var(--copper);
    border-radius: 4px;
    margin-bottom: 0.75rem;
    position: relative;
}

.preview-card__block--text {
    height: 8px;
    width: 80%;
    background: var(--cream-dark);
    border-radius: 2px;
    position: relative;
}

.preview-card__code {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--sage);
    line-height: 1.8;
}

.preview-card__live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sage);
    margin-bottom: 1rem;
}

.preview-card__dot {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.preview-card__chart {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    height: 120px;
    padding-top: 2rem;
}

.preview-card__bar-chart {
    flex: 1;
    height: var(--h);
    background: linear-gradient(to top, var(--copper), var(--copper-light));
    border-radius: 3px 3px 0 0;
    animation: growBar 1s var(--ease-out) backwards;
}

.preview-card__bar-chart:nth-child(2) { animation-delay: 0.1s; }
.preview-card__bar-chart:nth-child(3) { animation-delay: 0.2s; }
.preview-card__bar-chart:nth-child(4) { animation-delay: 0.3s; }

@keyframes growBar {
    from { height: 0; }
}

/* ── Strip ── */

.strip {
    background: var(--blue-dusk);
    color: var(--paper);
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.strip__inner p {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 400;
}

.strip__inner strong {
    color: var(--copper-light);
    font-weight: 600;
}

/* ── Sections ── */

.section {
    padding: 6rem 0;
}

.section--dark {
    background: var(--blue-dusk);
    color: var(--paper);
}

.section--cta {
    background: var(--blue-mist);
    padding-bottom: 5rem;
}

.section__header {
    max-width: 36rem;
    margin-bottom: 3.5rem;
}

.section__eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 0.75rem;
}

.section--dark .section__eyebrow {
    color: var(--copper-light);
}

.section__header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section__sub {
    margin-top: 1rem;
    color: rgba(237, 242, 247, 0.65);
    font-size: 1.05rem;
}

.section__sub--light {
    color: var(--ink-soft);
}

/* Services */

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--blue-mist);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(28, 31, 36, 0.08);
    border-color: transparent;
}

.service-card__icon {
    width: 48px;
    height: 48px;
    color: var(--copper);
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.65;
}

/* Work examples */

.work {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.work-card {
    background: var(--blue-mist);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

.work-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(28, 31, 36, 0.08);
    border-color: transparent;
}

.work-card__frame {
    background: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
    padding: 0.75rem 0.75rem 0;
}

.work-card__chrome {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 0.65rem;
    padding-left: 0.15rem;
}

.work-card__chrome span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cream-dark);
}

.work-card__screen {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    border-radius: var(--radius) var(--radius) 0 0;
}

.work-card__screen--allflorists {
    flex-direction: column;
    gap: 0.65rem;
    background: linear-gradient(145deg, #22c55e 0%, #15803d 100%);
}

.work-card__logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(21, 128, 61, 0.35);
}

.work-card__site-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.01em;
}

.work-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.work-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.work-card h3 a:hover {
    color: var(--copper);
}

.work-card__screen--bakery {
    background: linear-gradient(145deg, #c4a484 0%, #8b6b4a 100%);
}

.work-card__screen--surveyors {
    background: linear-gradient(145deg, #6b8a9e 0%, #3d5a6c 100%);
}

.work-card__screen--hub {
    background: linear-gradient(145deg, #7a9e8a 0%, #4a6b5d 100%);
}

.work-card__initial {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 600;
    color: rgba(250, 248, 244, 0.9);
    line-height: 1;
}

.work-card__body {
    padding: 1.5rem 1.5rem 1.75rem;
}

.work-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    margin-bottom: 0.85rem;
}

.work-card__tags li {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--copper);
    background: var(--copper-glow);
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
}

.work-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.work-card__sector {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--sage);
    margin-bottom: 0.65rem;
}

.work-card__body > p:last-child {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.65;
}

/* Process */

.process {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    counter-reset: none;
}

.process__step {
    position: relative;
    padding-top: 0.5rem;
}

.process__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--copper);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.25rem;
}

.process__step h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process__step p {
    font-size: 0.92rem;
    color: rgba(237, 242, 247, 0.6);
    line-height: 1.65;
}

/* Pitch */

.pitch {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
    padding: 3rem;
    background: var(--blue-slate);
    border-radius: var(--radius-lg);
    border: 1px solid var(--cream-dark);
}

.pitch__quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.35;
    color: var(--ink);
    border: none;
}

.pitch__lead {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.pitch__figure {
    margin: 0;
    max-width: 20rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--cream-dark);
    background: var(--paper);
    box-shadow: 0 8px 24px rgba(28, 31, 36, 0.06);
}

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

.pitch__aside p {
    color: var(--ink-soft);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.pitch__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pitch__list li {
    font-size: 0.92rem;
    font-weight: 500;
    padding-left: 1.25rem;
    position: relative;
}

.pitch__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: var(--copper);
    border-radius: 1px;
    transform: rotate(45deg);
}

/* CTA / Form */

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.cta-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.cta-copy > p {
    color: var(--ink-soft);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-contact__item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 1rem 1.25rem;
    background: var(--paper);
    border-radius: var(--radius);
    border: 1px solid var(--cream-dark);
    transition: border-color 0.2s, transform 0.2s;
}

.cta-contact__item:hover {
    border-color: var(--copper);
    transform: translateX(4px);
}

.cta-contact__label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.cta-contact__item span:last-child {
    font-weight: 600;
    color: var(--ink);
}

.contact-form {
    background: var(--paper);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(28, 31, 36, 0.06);
}

.form-row {
    margin-bottom: 1.15rem;
}

.form-row label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--ink);
}

.optional {
    font-weight: 400;
    color: var(--ink-soft);
}

.form-row input,
.form-row textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--copper);
    box-shadow: 0 0 0 3px var(--copper-glow);
}

.form-row textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row--hp {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.form-recaptcha-note {
    margin-top: 1rem;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--muted, #6b7280);
}

.form-recaptcha-note a {
    color: inherit;
    text-decoration: underline;
}

.form-status {
    margin-top: 0.85rem;
    font-size: 0.88rem;
    min-height: 1.3em;
}

.form-status.is-success { color: var(--sage); font-weight: 500; }
.form-status.is-error { color: #c0392b; font-weight: 500; }

/* Footer */

.footer {
    position: relative;
    z-index: 3;
    padding: 2.5rem 0;
    border-top: 1px solid var(--cream-dark);
    background: var(--paper);
}

.footer__inner {
    text-align: center;
}

.footer__brand {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.footer__meta {
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin-bottom: 0.75rem;
}

.footer__copy {
    font-size: 0.78rem;
    color: var(--ink-soft);
    opacity: 0.7;
}

/* ── Reveal animations ── */

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

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

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ── Responsive ── */

@media (max-width: 960px) {
    .page-sketch {
        opacity: 0.45;
        mask-image: linear-gradient(to right, black 40%, transparent 95%);
        -webkit-mask-image: linear-gradient(to right, black 40%, transparent 95%);
    }

    .sketch-flowchart {
        width: 140vw;
        transform: translateX(-50%);
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero__lead,
    .hero__trust {
        margin-inline: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        text-align: left;
    }

    .services,
    .work,
    .process {
        grid-template-columns: 1fr;
    }

    .pitch,
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pitch {
        padding: 2rem;
    }

    .pitch__figure {
        margin-inline: auto;
    }
}

@media (max-width: 720px) {
    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .blueprint__steps {
        flex-wrap: wrap;
    }

    .blueprint__step {
        flex: 1 1 calc(33% - 0.35rem);
    }

    .section {
        padding: 4rem 0;
    }
}

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

    .sketch-stroke {
        stroke-dashoffset: 0;
        opacity: 0.5;
    }

    .sketch-label,
    .sketch-stroke--arrow {
        opacity: 0.5;
    }

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