:root {
    --blanket-green: #20ab48;
    --blanket-green-deep: #0e5520;
    --blanket-green-dark: #073817;
    --blanket-green-light: #e4f5e8;
    --blanket-lime: #d8f3df;
    --blanket-cream: #f8f6ee;
    --blanket-cream-deep: #e8f5eb;
    --blanket-ink: #103319;
    --blanket-muted: #5f7164;
    --blanket-line: rgba(14, 85, 32, 0.15);
    --blanket-header-height: 78px;
}

html {
    scroll-padding-top: calc(var(--blanket-header-height) + 18px);
}

.blanket-page {
    min-width: 320px;
    color: var(--blanket-ink);
    background: var(--blanket-cream);
}

.blanket-page ::selection {
    color: #fff;
    background: var(--blanket-green-deep);
}

.blanket-page .skip-link {
    color: #fff;
    background: var(--blanket-green-dark);
}

.blanket-page main {
    transition: none;
}

.blanket-page .container {
    width: min(1260px, calc(100% - 64px));
}

.blanket-section {
    padding: 148px 0;
}

.blanket-eyebrow {
    margin-bottom: 20px;
    color: var(--blanket-green);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.18em;
    line-height: 1.2;
}

.blanket-heading {
    max-width: 800px;
    margin-bottom: 72px;
}

.blanket-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 90px;
    align-items: end;
    max-width: none;
}

.blanket-heading h2 {
    margin: 0;
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -0.06em;
}

.blanket-heading > p:last-child,
.blanket-heading--split > p {
    color: var(--blanket-muted);
    font-size: 18px;
    line-height: 1.8;
}

.blanket-button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 28px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

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

.blanket-button--green {
    color: #fff;
    background: var(--blanket-green-deep);
}

.blanket-button--green:hover {
    background: var(--blanket-green-deep);
}

.blanket-button--cream {
    color: var(--blanket-green-dark);
    background: var(--blanket-cream);
}

.blanket-button--cream:hover {
    background: #fff;
}

.blanket-button--ghost {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.blanket-button--ghost:hover {
    border-color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.14);
}

.js .blanket-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .blanket-reveal[data-delay="1"] { transition-delay: 0.09s; }
.js .blanket-reveal[data-delay="2"] { transition-delay: 0.18s; }

.js .blanket-reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Header */
.blanket-header {
    position: fixed;
    z-index: 200;
    top: 0;
    right: 0;
    left: 0;
    height: var(--blanket-header-height);
    border-bottom: 1px solid rgba(14, 85, 32, 0.14);
    background: rgba(248, 245, 236, 0.94);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.blanket-header.is-scrolled {
    background: rgba(248, 245, 236, 0.98);
    box-shadow: 0 14px 36px rgba(7, 56, 23, 0.11);
}

.blanket-header__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.blanket-brand {
    display: flex;
    min-width: 220px;
    align-items: center;
    gap: 12px;
}

.blanket-brand img {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    border-radius: 10px;
    object-fit: contain;
}

.blanket-brand__lockup {
    display: grid;
    gap: 2px;
    line-height: 1;
}

.blanket-brand__lockup strong {
    color: var(--blanket-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.blanket-brand__lockup small {
    color: #728078;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.13em;
    white-space: nowrap;
}

.blanket-desktop-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.blanket-desktop-nav a,
.blanket-header__home {
    position: relative;
    color: #46554c;
    font-size: 14px;
    font-weight: 750;
}

.blanket-desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -13px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--blanket-green);
    content: "";
    opacity: 0;
    transform: scaleX(0.35);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.blanket-desktop-nav a:hover,
.blanket-desktop-nav a.is-active {
    color: var(--blanket-green);
}

.blanket-desktop-nav a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.blanket-header__home {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 6px;
    padding: 0 17px;
    border: 1px solid var(--blanket-green-deep);
    border-radius: 999px;
    color: #fff;
    background: var(--blanket-green-deep);
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.blanket-header__home:hover {
    border-color: var(--blanket-green);
    color: #fff;
    background: var(--blanket-green);
    transform: translateY(-1px);
}

.blanket-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 11px;
    border-radius: 50%;
    color: var(--blanket-green-dark);
    background: rgba(32, 171, 72, 0.12);
}

.blanket-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.blanket-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.blanket-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.blanket-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.blanket-mobile-menu {
    position: fixed;
    z-index: 199;
    top: var(--blanket-header-height);
    right: 0;
    left: 0;
    max-height: calc(100dvh - var(--blanket-header-height));
    padding: 22px 24px 28px;
    overflow-y: auto;
    border-top: 1px solid rgba(14, 85, 32, 0.14);
    background: var(--blanket-cream);
    box-shadow: 0 30px 50px rgba(7, 56, 23, 0.16);
}

.blanket-mobile-menu nav {
    display: grid;
    margin-bottom: 22px;
}

.blanket-mobile-menu nav a {
    padding: 15px 3px;
    border-bottom: 1px solid rgba(14, 85, 32, 0.14);
    color: var(--blanket-green-dark);
    font-size: 18px;
    font-weight: 800;
}

.blanket-mobile-menu .blanket-button {
    width: 100%;
}

/* Hero */
.blanket-hero {
    position: relative;
    min-height: calc(100svh - var(--blanket-header-height));
    margin-top: var(--blanket-header-height);
    overflow: hidden;
    color: #fff;
    background: var(--blanket-green-dark);
}

.blanket-hero__image,
.blanket-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.blanket-hero__image {
    object-fit: cover;
    object-position: center 52%;
}

.blanket-hero__shade {
    background:
        linear-gradient(90deg, rgba(7, 56, 23, 0.92) 0%, rgba(7, 56, 23, 0.68) 48%, rgba(7, 56, 23, 0.18) 75%),
        linear-gradient(180deg, rgba(7, 56, 23, 0.02) 55%, rgba(7, 56, 23, 0.64) 100%);
}

.blanket-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: calc(100svh - var(--blanket-header-height));
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 56px;
    align-items: center;
    padding-top: 72px;
    padding-bottom: 86px;
}

.blanket-hero__content {
    max-width: 790px;
}

.blanket-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    font-weight: 750;
}

.blanket-kicker span {
    width: 32px;
    height: 2px;
    border-radius: 2px;
    background: var(--blanket-green);
}

.blanket-hero h1 {
    margin: 0;
    font-size: clamp(60px, 7.2vw, 102px);
    font-weight: 850;
    line-height: 0.98;
    letter-spacing: -0.075em;
}

.blanket-hero h1 em {
    color: var(--blanket-green);
    font-style: normal;
}

.blanket-hero__lead {
    margin-top: 34px;
    color: #fff;
    font-size: clamp(19px, 2vw, 24px);
    font-weight: 800;
}

.blanket-hero__copy {
    max-width: 620px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.73);
    font-size: 17px;
    line-height: 1.75;
}

.blanket-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.blanket-hero__statement {
    display: grid;
    width: 194px;
    height: 194px;
    align-content: center;
    justify-items: center;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(7, 56, 23, 0.28);
    backdrop-filter: blur(8px);
    transform: rotate(7deg);
}

.js .blanket-hero__statement {
    transform: translateY(28px) rotate(7deg);
}

.js .blanket-hero__statement.is-visible {
    transform: rotate(7deg);
}

.blanket-hero__statement span,
.blanket-hero__statement small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 8px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.blanket-hero__statement strong {
    margin-top: 4px;
    color: var(--blanket-green);
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.blanket-hero__statement i {
    width: 30px;
    height: 1px;
    margin: 15px 0;
    background: rgba(255, 255, 255, 0.5);
}

.blanket-scroll-cue {
    position: absolute;
    z-index: 3;
    bottom: 28px;
    left: 50%;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    transform: translateX(-50%);
}

.blanket-scroll-cue span {
    font-size: 14px;
}

/* Brand story */
.blanket-story {
    background: var(--blanket-cream);
}

.blanket-manifesto {
    position: relative;
    margin: 0 0 58px;
    padding: 64px 70px;
    overflow: hidden;
    border-radius: 36px;
    color: #fff;
    background: var(--blanket-green-deep);
    box-shadow: inset 0 8px 0 var(--blanket-green);
}

.blanket-manifesto::before,
.blanket-manifesto::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    content: "";
}

.blanket-manifesto::before {
    top: -130px;
    right: -70px;
    width: 340px;
    height: 340px;
}

.blanket-manifesto::after {
    right: 72px;
    bottom: -120px;
    width: 220px;
    height: 220px;
}

.blanket-manifesto p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(38px, 4.8vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.055em;
}

.blanket-manifesto footer {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
}

.blanket-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--blanket-line);
    border-bottom: 1px solid var(--blanket-line);
}

.blanket-value {
    position: relative;
    min-height: 320px;
    padding: 34px 36px 42px;
}

.blanket-value + .blanket-value {
    border-left: 1px solid var(--blanket-line);
}

.blanket-value > span {
    color: var(--blanket-green);
    font-size: 13px;
    font-weight: 850;
}

.blanket-value > p:nth-of-type(1) {
    margin-top: 62px;
    color: #89938d;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.15em;
}

.blanket-value h3 {
    margin-top: 8px;
    font-size: 28px;
    font-weight: 850;
    letter-spacing: -0.045em;
}

.blanket-value > p:last-child {
    margin-top: 16px;
    color: var(--blanket-muted);
    font-size: 15px;
    line-height: 1.75;
}

/* App flow */
.blanket-app {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--blanket-green-dark);
}

.blanket-app__orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.24;
    filter: blur(2px);
}

.blanket-app__orb--one {
    top: -220px;
    right: -150px;
    width: 580px;
    height: 580px;
    border: 1px solid var(--blanket-lime);
}

.blanket-app__orb--two {
    right: 110px;
    bottom: -280px;
    width: 480px;
    height: 480px;
    background: rgba(32, 171, 72, 0.18);
}

.blanket-app__inner {
    position: relative;
    z-index: 1;
}

.blanket-heading--light {
    max-width: 800px;
}

.blanket-heading--light .blanket-eyebrow {
    color: var(--blanket-lime);
}

.blanket-heading--light > p:last-child {
    max-width: 650px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.64);
}

.blanket-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    counter-reset: flow;
}

.blanket-flow__item {
    position: relative;
    min-height: 360px;
    padding: 32px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(12px);
}

.blanket-flow__item:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -28px;
    z-index: 2;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: var(--blanket-green-dark);
    background: var(--blanket-lime);
    content: "→";
    font-size: 17px;
    transform: translateY(-50%);
}

.blanket-flow__number {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 50%;
    color: var(--blanket-lime);
    font-size: 13px;
    font-weight: 850;
}

.blanket-flow__item > p:nth-of-type(1) {
    margin-top: 86px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.15em;
}

.blanket-flow__item h3 {
    margin-top: 8px;
    font-size: 32px;
    font-weight: 850;
    letter-spacing: -0.05em;
}

.blanket-flow__item > p:last-child {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.75;
}

.blanket-app__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 32px;
    padding: 0 4px;
}

.blanket-app__footer p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

.blanket-app__footer a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blanket-lime);
    font-size: 14px;
    font-weight: 800;
}

/* Gallery */
.blanket-space {
    background: #faf8f2;
}

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

.blanket-gallery__item {
    position: relative;
    min-height: 0;
    overflow: hidden;
    border-radius: 30px;
    background: var(--blanket-green-deep);
}

.blanket-gallery__item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.blanket-gallery__item::after {
    position: absolute;
    inset: 62% 0 0;
    background: linear-gradient(180deg, transparent, rgba(4, 20, 12, 0.7));
    content: "";
    pointer-events: none;
}

.blanket-gallery__item figcaption {
    position: absolute;
    z-index: 1;
    right: 26px;
    bottom: 26px;
    left: 26px;
    display: flex;
    align-items: flex-end;
    gap: 18px;
    color: #fff;
}

.blanket-gallery__item figcaption span {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
}

.blanket-gallery__item figcaption p {
    display: grid;
    gap: 3px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.blanket-gallery__item figcaption strong {
    color: #fff;
    font-size: 20px;
    font-weight: 850;
}

.blanket-space__fineprint {
    margin: 18px 4px 0;
    color: var(--blanket-muted);
    font-size: 12px;
    line-height: 1.65;
}

/* CTA */
.blanket-connect {
    padding: 130px 0 148px;
    background: var(--blanket-cream-deep);
}

.blanket-connect__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 46px;
}

.blanket-connect__heading .blanket-eyebrow {
    margin: 0 0 10px;
}

.blanket-connect__heading h2 {
    margin: 0;
    font-size: clamp(42px, 4.5vw, 64px);
    font-weight: 850;
    letter-spacing: -0.055em;
}

.blanket-connect__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
}

.blanket-connect-card {
    display: flex;
    min-height: 460px;
    flex-direction: column;
    justify-content: space-between;
    padding: 46px;
    overflow: hidden;
    border-radius: 32px;
}

.blanket-connect-card--contact {
    color: #fff;
    background: var(--blanket-green-deep);
    box-shadow: inset 0 8px 0 var(--blanket-green);
}

.blanket-connect-card--brand {
    position: relative;
    color: var(--blanket-green-dark);
    background: var(--blanket-green-light);
}

.blanket-connect-card--brand::before {
    position: absolute;
    right: -82px;
    bottom: -102px;
    width: 280px;
    height: 280px;
    border: 44px solid rgba(32, 171, 72, 0.16);
    border-radius: 50%;
    content: "";
}

.blanket-connect-card--brand > div {
    position: relative;
    z-index: 1;
}

.blanket-connect-card > div:first-child > span {
    display: block;
    margin-bottom: 22px;
    color: currentColor;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.16em;
    opacity: 0.6;
}

.blanket-connect-card h3 {
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 850;
    letter-spacing: -0.05em;
}

.blanket-connect-card > div:first-child > p {
    max-width: 520px;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.75;
    opacity: 0.72;
}

.blanket-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
}

.blanket-contact-action {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.blanket-contact-action:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.blanket-contact-action--primary {
    border-color: #fff;
    color: var(--blanket-green-deep);
    background: #fff;
}

.blanket-contact-action--primary:hover {
    color: var(--blanket-green-dark);
    background: var(--blanket-lime);
}

.blanket-contact-checklist {
    display: grid;
    gap: 0;
    margin-top: 26px;
}

.blanket-contact-checklist li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 15px 0;
    border-top: 1px solid rgba(14, 85, 32, 0.16);
}

.blanket-contact-checklist li > span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(14, 85, 32, 0.25);
    border-radius: 50%;
    color: var(--blanket-green-deep);
    font-size: 9px;
    font-weight: 850;
}

.blanket-contact-checklist p {
    display: grid;
    gap: 3px;
    color: rgba(7, 56, 23, 0.68);
    font-size: 13px;
    line-height: 1.55;
}

.blanket-contact-checklist strong {
    color: var(--blanket-green-dark);
    font-size: 15px;
    font-weight: 850;
}

.blanket-contact-hours {
    margin: 22px 4px 0;
    color: var(--blanket-muted);
    font-size: 12px;
}

.blanket-contact-hours strong {
    color: var(--blanket-green-dark);
}

.blanket-brand-mark {
    display: flex;
    align-items: center;
    gap: 16px;
}

.blanket-brand-mark img {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(7, 56, 23, 0.18);
}

.blanket-brand-mark span {
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.blanket-page .footer {
    background: #071d17;
}

.blanket-page .footer__company,
.blanket-page .footer__bottom {
    color: #87968e;
}

.blanket-page .top-button {
    background: rgba(7, 56, 23, 0.94);
}

@media (max-width: 1080px) {
    .blanket-brand { min-width: 176px; }
    .blanket-desktop-nav { gap: 24px; }
    .blanket-hero__statement { width: 170px; height: 170px; padding: 22px; }
    .blanket-heading--split { gap: 56px; }
    .blanket-flow__item { min-height: 340px; padding: 28px; }
}

@media (max-width: 900px) {
    :root { --blanket-header-height: 70px; }

    .blanket-page .container {
        width: min(100% - 44px, 780px);
    }

    .blanket-section { padding: 112px 0; }
    .blanket-desktop-nav,
    .blanket-header__home { display: none; }
    .blanket-menu-toggle { display: block; }
    .blanket-brand { min-width: 0; }
    .blanket-brand img { width: 46px; height: 46px; border-radius: 9px; }
    .blanket-brand__lockup strong { font-size: 20px; }

    .blanket-hero__inner {
        grid-template-columns: minmax(0, 1fr);
        padding-top: 70px;
    }

    .blanket-hero__content { max-width: 700px; }
    .blanket-hero__statement { display: none; }

    .blanket-heading--split {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }

    .blanket-heading--split > p { max-width: 680px; }
    .blanket-values { grid-template-columns: 1fr; }
    .blanket-value { min-height: auto; padding: 32px 20px 34px; }
    .blanket-value + .blanket-value { border-top: 1px solid var(--blanket-line); border-left: 0; }
    .blanket-value > p:nth-of-type(1) { margin-top: 32px; }

    .blanket-flow { grid-template-columns: 1fr; }
    .blanket-flow__item { min-height: auto; padding: 30px; }
    .blanket-flow__item:not(:last-child)::after {
        top: auto;
        right: 30px;
        bottom: -29px;
        transform: rotate(90deg);
    }
    .blanket-flow__item > p:nth-of-type(1) { margin-top: 52px; }

    .blanket-gallery {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .blanket-connect__grid { grid-template-columns: 1fr; }
    .blanket-connect-card { min-height: 340px; }
}

@media (max-width: 640px) {
    .blanket-page .container {
        width: min(100% - 32px, 560px);
    }

    .blanket-section { padding: 88px 0; }
    .blanket-heading { margin-bottom: 48px; }
    .blanket-heading h2 { font-size: clamp(39px, 11vw, 52px); }
    .blanket-heading > p:last-child,
    .blanket-heading--split > p { font-size: 16px; }

    .blanket-hero {
        min-height: 790px;
    }

    .blanket-hero__image {
        object-position: 58% center;
    }

    .blanket-hero__shade {
        background:
            linear-gradient(180deg, rgba(7, 56, 23, 0.2) 0%, rgba(7, 56, 23, 0.42) 35%, rgba(7, 56, 23, 0.95) 78%),
            linear-gradient(90deg, rgba(7, 56, 23, 0.55), transparent 75%);
    }

    .blanket-hero__inner {
        min-height: 790px;
        align-items: end;
        padding-top: 240px;
        padding-bottom: 76px;
    }

    .blanket-kicker { margin-bottom: 18px; font-size: 13px; }
    .blanket-hero h1 { font-size: clamp(48px, 14vw, 68px); }
    .blanket-hero__lead { margin-top: 25px; font-size: 18px; }
    .blanket-hero__copy { font-size: 15px; }
    .blanket-hero__copy br { display: none; }
    .blanket-hero__actions { margin-top: 28px; }
    .blanket-hero__actions .blanket-button { flex: 1 1 180px; }
    .blanket-scroll-cue { display: none; }

    .blanket-manifesto {
        margin-bottom: 38px;
        padding: 46px 30px;
        border-radius: 26px;
    }
    .blanket-manifesto p { font-size: clamp(34px, 10.5vw, 48px); }
    .blanket-manifesto footer { max-width: 220px; }

    .blanket-value { padding-inline: 4px; }
    .blanket-value h3 { font-size: 26px; }

    .blanket-flow__item { border-radius: 24px; }
    .blanket-app__footer { display: grid; gap: 14px; }

    .blanket-gallery {
        gap: 14px;
    }
    .blanket-gallery__item { border-radius: 24px; }
    .blanket-gallery__item figcaption { right: 20px; bottom: 20px; left: 20px; }

    .blanket-connect { padding: 88px 0 104px; }
    .blanket-connect__heading { display: grid; gap: 12px; align-items: start; margin-bottom: 34px; }
    .blanket-connect__heading .blanket-eyebrow { margin: 0; }
    .blanket-connect-card { min-height: 420px; padding: 32px 26px; border-radius: 26px; }
    .blanket-contact-actions { display: grid; grid-template-columns: 1fr; }
    .blanket-contact-action { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .js .blanket-reveal,
    .js .blanket-hero__statement,
    .js .blanket-hero__statement.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .blanket-gallery__item img,
    .blanket-button,
    .blanket-contact-action {
        transition: none;
    }
}
