:root {
    --ink: #17332d;
    --paper: #f5f1e8;
    --white: #fffdf8;
    --coral: #ef6a4c;
    --sea: #287d83;
    --line: rgba(23, 51, 45, 0.18);
    --display: "Fraunces", Georgia, serif;
    --body: "DM Sans", sans-serif;
    --page: min(1240px, calc(100vw - 48px));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.screen-reader-text,
.skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    background: var(--white);
    color: var(--ink);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    color: var(--white);
    transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
    background: rgba(255, 253, 248, 0.96);
    color: var(--ink);
    box-shadow: 0 1px 0 var(--line);
    backdrop-filter: blur(12px);
}

.site-header__inner {
    width: var(--page);
    height: 82px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.site-brand {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: var(--display);
    font-size: 21px;
    font-weight: 700;
}

.site-brand .custom-logo {
    max-width: 150px;
    max-height: 54px;
    width: auto;
}

.site-brand__mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.primary-nav__list {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    font-weight: 600;
}

.primary-nav a {
    position: relative;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-header__cart {
    justify-self: end;
    position: relative;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
}

.site-header__cart-count {
    position: absolute;
    top: 2px;
    right: 0;
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border-radius: 50%;
    background: var(--coral);
    color: white;
    font-size: 10px;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: inherit;
}

.hero {
    position: relative;
    min-height: min(860px, 92vh);
    overflow: hidden;
    color: var(--white);
}

.hero__media {
    position: absolute;
    inset: 0;
    background: #667d76 url("../images/coast-hero.jpg") center 57% / cover no-repeat;
    animation: hero-in 1.2s cubic-bezier(.2, .7, .2, 1) both;
}

.hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 36, 33, .64) 0%, rgba(10, 36, 33, .24) 58%, rgba(10, 36, 33, .08) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    width: var(--page);
    min-height: min(860px, 92vh);
    margin: 0 auto;
    padding-top: 12vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.eyebrow {
    margin: 0 0 15px;
    color: var(--coral);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #ffb19f;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(66px, 9vw, 132px);
    line-height: .88;
    letter-spacing: 0;
}

.hero__lede {
    max-width: 530px;
    margin: 28px 0 34px;
    font-size: 19px;
    line-height: 1.65;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 700;
    transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--light {
    background: var(--white);
    color: var(--ink);
}

.button--light:hover {
    background: var(--coral);
    color: white;
}

.button--dark {
    background: var(--ink);
    color: white;
}

.hero__scroll {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 28px;
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transform: rotate(90deg) translateX(-100%);
    transform-origin: bottom left;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.benefits div {
    display: flex;
    min-height: 96px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--line);
    text-align: center;
}

.benefits div:last-child {
    border-right: 0;
}

.benefits strong {
    font-family: var(--display);
    font-size: 17px;
}

.benefits span {
    color: rgba(23, 51, 45, .62);
    font-size: 12px;
}

.section {
    width: var(--page);
    margin: 0 auto;
}

.shop-section {
    padding: 112px 0 128px;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 44px;
}

.section h2 {
    max-width: 680px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.02;
}

.text-link {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 700;
}

.text-link span {
    transition: transform 150ms ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 38px 20px;
}

.product-card__image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #e8e4da;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(.2, .7, .2, 1);
}

.product-card:hover .product-card__image img {
    transform: scale(1.035);
}

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    background: var(--coral);
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-card__details {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 15px;
    align-items: start;
    padding-top: 16px;
}

.product-card h3 {
    margin: 0 0 2px;
    font-family: var(--display);
    font-size: 18px;
    line-height: 1.3;
}

.product-card__price {
    color: rgba(23, 51, 45, .66);
    font-size: 13px;
}

.product-card__price del {
    opacity: .55;
}

.product-card__add {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 21px;
    line-height: 1;
    transition: background 150ms ease, color 150ms ease;
}

.product-card__add:hover {
    background: var(--ink);
    color: white;
}

.empty-store {
    padding: 80px 24px;
    border: 1px solid var(--line);
    background: var(--white);
    text-align: center;
}

.empty-store h3 {
    max-width: 580px;
    margin: 0 auto 25px;
    font-family: var(--display);
    font-size: 30px;
}

.story {
    display: grid;
    width: 100%;
    max-width: none;
    grid-template-columns: 1.15fr .85fr;
    background: var(--sea);
    color: white;
}

.story__image {
    min-height: 660px;
    background: #83a3a1 url("../images/coast-story.jpg") center / cover no-repeat;
}

.story__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 70px clamp(36px, 7vw, 120px);
}

.story__content .eyebrow {
    color: #ffd0c5;
}

.story__content h2 {
    max-width: 540px;
}

.story__content p:not(.eyebrow) {
    max-width: 540px;
    margin: 26px 0;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
}

.newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    padding: 96px max(24px, calc((100vw - 1240px) / 2));
    background: var(--coral);
    color: #231e1b;
}

.newsletter .eyebrow {
    color: #5c2117;
}

.newsletter h2 {
    max-width: 580px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(38px, 4vw, 60px);
    line-height: 1.02;
}

.newsletter__form {
    display: grid;
    grid-template-columns: 1fr 56px;
    border-bottom: 2px solid #231e1b;
}

.newsletter__form input {
    min-width: 0;
    padding: 15px 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: inherit;
}

.newsletter__form input::placeholder {
    color: rgba(35, 30, 27, .65);
}

.newsletter__form button {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 24px;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    padding: 48px max(24px, calc((100vw - 1240px) / 2));
    background: var(--ink);
    color: white;
    font-size: 12px;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--display);
    font-size: 17px;
}

.site-footer nav {
    display: flex;
    gap: 26px;
}

.site-footer>p {
    justify-self: end;
    margin: 0;
    color: rgba(255, 255, 255, .58);
}

.content-page {
    min-height: 70vh;
    padding-top: 140px;
    padding-bottom: 80px;
}

.content-page h1 {
    font-family: var(--display);
    font-size: clamp(42px, 6vw, 76px);
}

.documentation-page {
    padding-top: 76px;
    background: var(--white);
}

.documentation-hero {
    padding: 88px 0 76px;
    background: var(--ink);
    color: var(--white);
}

.documentation-hero__inner,
.documentation-layout {
    width: var(--page);
    margin: 0 auto;
}

.documentation-hero h1 {
    max-width: 880px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(54px, 8vw, 104px);
    line-height: .95;
}

.documentation-hero p:not(.eyebrow) {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
}

.documentation-hero__actions,
.documentation-support__actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.documentation-hero .button--outline {
    border-color: rgba(255, 255, 255, .55);
    color: var(--white);
}

.documentation-hero .button--outline:hover {
    border-color: var(--coral);
    background: var(--coral);
}

.documentation-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 820px);
    gap: clamp(48px, 8vw, 110px);
    justify-content: center;
    padding: 88px 0 112px;
}

.documentation-nav {
    position: sticky;
    top: 112px;
    align-self: start;
    display: grid;
    gap: 4px;
    padding-left: 20px;
    border-left: 2px solid var(--coral);
}

.documentation-nav strong {
    margin-bottom: 8px;
    font-family: var(--display);
    font-size: 20px;
}

.documentation-nav a {
    padding: 6px 0;
    color: rgba(23, 51, 45, .7);
    font-size: 14px;
    font-weight: 600;
}

.documentation-nav a:hover,
.documentation-nav a:focus-visible {
    color: var(--coral);
}

.documentation-content section {
    scroll-margin-top: 110px;
    padding: 0 0 72px;
    margin: 0 0 72px;
    border-bottom: 1px solid var(--line);
}

.documentation-content h2 {
    margin: 0 0 28px;
    font-family: var(--display);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.02;
}

.documentation-content h3 {
    margin: 34px 0 8px;
    font-family: var(--display);
    font-size: 25px;
}

.documentation-content p,
.documentation-content li {
    color: rgba(23, 51, 45, .82);
}

.documentation-content ol,
.documentation-content ul {
    padding-left: 24px;
}

.documentation-content li {
    margin: 0 0 10px;
    padding-left: 5px;
}

.documentation-roles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.documentation-roles>div {
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-items: start;
    padding: 26px 24px 28px 0;
}

.documentation-roles>div+div {
    padding-left: 24px;
    border-left: 1px solid var(--line);
}

.documentation-roles h3 {
    margin-top: 0;
}

.documentation-roles p {
    margin: 12px 0 22px;
}

.documentation-roles .text-link {
    justify-self: start;
    align-self: end;
}

.documentation-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.documentation-note {
    padding: 24px;
    margin-top: 32px;
    border-left: 4px solid var(--coral);
    background: var(--paper);
}

.documentation-note p {
    margin: 6px 0 0;
}

.documentation-content details {
    border-top: 1px solid var(--line);
}

.documentation-content details:last-of-type {
    border-bottom: 1px solid var(--line);
}

.documentation-content summary {
    padding: 20px 4px;
    cursor: pointer;
    font-family: var(--display);
    font-size: 21px;
    font-weight: 700;
}

.documentation-content details p {
    margin: -4px 4px 22px;
}

.documentation-content .documentation-support {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: end;
    padding: 42px;
    border: 0;
    background: var(--paper);
}

.documentation-support h2 {
    margin-bottom: 18px;
}

.documentation-support__actions {
    align-items: flex-start;
    flex-direction: column;
    margin: 0;
}

.documentation-return {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    border-bottom: 1px solid currentColor;
    font-weight: 700;
}

@media (max-width: 900px) {
    .documentation-page {
        padding-top: 76px;
    }

    .documentation-layout {
        grid-template-columns: 1fr;
        gap: 56px;
        padding-top: 56px;
    }

    .documentation-nav {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 20px;
        border: 1px solid var(--line);
        border-top: 3px solid var(--coral);
    }

    .documentation-nav strong {
        grid-column: 1 / -1;
    }

    .documentation-roles {
        grid-template-columns: 1fr;
    }

    .documentation-roles>div,
    .documentation-roles>div+div {
        min-height: 0;
        padding: 24px 0;
        border-left: 0;
    }

    .documentation-roles>div+div {
        border-top: 1px solid var(--line);
    }

    .documentation-content .documentation-support {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .documentation-hero {
        padding: 64px 0 56px;
    }

    .documentation-hero__actions .button,
    .documentation-support__actions .button,
    .documentation-actions .button {
        width: 100%;
    }

    .documentation-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .documentation-nav {
        grid-template-columns: 1fr;
    }

    .documentation-content section {
        padding-bottom: 52px;
        margin-bottom: 52px;
    }

    .documentation-content .documentation-support {
        padding: 28px 22px;
    }
}

@keyframes hero-in {
    from {
        opacity: 0;
        transform: scale(1.04);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

@media (max-width: 900px) {
    :root {
        --page: min(100% - 32px, 700px);
    }

    .site-header__inner {
        height: 70px;
        grid-template-columns: 1fr auto auto;
        gap: 8px;
    }

    .menu-toggle {
        z-index: 2;
        display: grid;
        width: 44px;
        height: 44px;
        place-items: center;
    }

    .menu-toggle__lines {
        display: grid;
        gap: 6px;
    }

    .menu-toggle__lines span {
        display: block;
        width: 22px;
        height: 1px;
        background: currentColor;
        transition: transform 180ms ease;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__lines span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__lines span:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .primary-nav {
        position: fixed;
        inset: 0;
        display: none;
        place-items: center;
        background: var(--ink);
        color: white;
    }

    .primary-nav.is-open {
        display: grid;
    }

    .primary-nav__list {
        flex-direction: column;
        gap: 24px;
        font-family: var(--display);
        font-size: 38px;
    }

    .hero,
    .hero__content {
        min-height: 760px;
    }

    .hero__content {
        padding-top: 80px;
    }

    .hero h1 {
        font-size: clamp(62px, 18vw, 100px);
    }

    .hero__scroll {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .story {
        grid-template-columns: 1fr;
    }

    .story__image {
        min-height: 520px;
    }

    .story__content {
        padding: 80px 32px;
    }

    .newsletter {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-footer__brand,
    .site-footer nav {
        justify-content: center;
    }

    .site-footer>p {
        justify-self: center;
    }
}

@media (max-width: 560px) {

    .hero,
    .hero__content {
        min-height: 700px;
    }

    .hero__shade {
        background: linear-gradient(0deg, rgba(10, 36, 33, .7), rgba(10, 36, 33, .12));
    }

    .hero__content {
        justify-content: flex-end;
        padding-bottom: 70px;
    }

    .hero__lede {
        margin: 22px 0 28px;
        font-size: 16px;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .benefits div {
        min-height: 78px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .shop-section {
        padding: 80px 0 90px;
    }

    .section-heading {
        display: block;
    }

    .section-heading .text-link {
        margin-top: 25px;
    }

    .product-grid {
        gap: 30px 12px;
    }

    .product-card h3 {
        font-size: 16px;
    }

    .product-card__add {
        width: 34px;
        height: 34px;
    }

    .story__image {
        min-height: 420px;
    }

    .newsletter {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .site-footer nav {
        flex-wrap: wrap;
        gap: 12px 20px;
    }
}

/* Long Bay Express brand refresh. */
:root {
    --ink: #111514;
    --paper: #f3f4f0;
    --white: #ffffff;
    --coral: #e3212d;
    --sea: #087a3d;
    --line: rgba(17, 21, 20, .16);
    --display: "Barlow Condensed", sans-serif;
    --body: "Manrope", sans-serif;
}

body {
    background: var(--paper);
}

.site-header {
    color: var(--white);
    background: linear-gradient(180deg, rgba(5, 12, 14, .72), rgba(5, 12, 14, .24) 72%, transparent);
}

body.admin-bar .site-header {
    top: 32px;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
    color: var(--ink);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 2px 0 var(--coral);
}

.site-header__inner {
    height: 76px;
    display: flex;
    gap: 34px;
}

.site-brand {
    flex: 0 1 210px;
    margin-right: auto;
}

.site-brand .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.site-brand .custom-logo {
    width: auto;
    max-width: 176px;
    max-height: 58px;
    mix-blend-mode: multiply;
    filter: saturate(1.12) contrast(1.08) drop-shadow(0 2px 5px rgba(0, 0, 0, .25));
}

.site-header.is-scrolled .custom-logo,
body:not(.home) .site-header .custom-logo {
    mix-blend-mode: normal;
    filter: none;
}

.primary-nav {
    margin-left: auto;
}

.primary-nav__list {
    gap: 10px;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.primary-nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 15px;
}

.primary-nav a::after {
    bottom: -8px;
    height: 3px;
    background: var(--coral);
}

.site-header__cart {
    flex: 0 0 44px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
}

.is-scrolled .site-header__cart,
body:not(.home) .site-header__cart {
    border-color: var(--line);
}

.site-header__cart-count {
    top: -3px;
    right: -3px;
    background: var(--sea);
}

.hero,
.hero__content {
    min-height: min(820px, 92vh);
}

.hero__media {
    background-color: #26313b;
    background-image: url("../images/station-hero.jpg");
    background-position: center;
}

.hero__shade {
    background:
        linear-gradient(90deg, rgba(7, 10, 9, .9) 0%, rgba(7, 10, 9, .72) 42%, rgba(7, 10, 9, .14) 78%),
        linear-gradient(0deg, rgba(7, 10, 9, .55), transparent 45%);
}

.hero__content {
    padding-top: 110px;
}

.eyebrow {
    color: var(--sea);
    font-family: var(--display);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .12em;
}

.hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #63d38c;
}

.hero .eyebrow::before {
    content: "";
    width: 38px;
    height: 4px;
    background: var(--coral);
}

.hero h1 {
    max-width: 760px;
    font-family: var(--display);
    font-size: clamp(64px, 8vw, 118px);
    font-weight: 800;
    line-height: .89;
    text-transform: uppercase;
}

.hero__lede {
    max-width: 620px;
    margin: 28px 0 34px;
    color: rgba(255, 255, 255, .84);
    font-size: 18px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.button {
    min-height: 54px;
    padding: 13px 26px;
    border-radius: 2px;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.button--primary {
    background: var(--coral);
    color: var(--white);
}

.button--primary:hover {
    background: #bd111d;
}

.button--outline {
    border-color: rgba(255, 255, 255, .75);
    color: var(--white);
}

.button--outline:hover {
    background: var(--white);
    color: var(--ink);
}

.hero__status {
    position: absolute;
    z-index: 2;
    right: max(24px, calc((100vw - 1240px) / 2));
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.hero__status span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #46cf78;
    box-shadow: 0 0 0 5px rgba(70, 207, 120, .16);
}

.benefits {
    position: relative;
    z-index: 3;
    width: min(1240px, calc(100vw - 48px));
    margin: -1px auto 0;
    border: 0;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(11, 20, 16, .08);
}

.benefits div {
    position: relative;
    min-height: 132px;
    align-items: flex-start;
    padding: 28px 30px 26px 68px;
    text-align: left;
}

.benefits__number {
    position: absolute;
    top: 29px;
    left: 25px;
    color: var(--coral) !important;
    font-family: var(--display);
    font-size: 14px !important;
    font-weight: 800;
}

.benefits strong {
    font-family: var(--display);
    font-size: 26px;
    line-height: 1.1;
    text-transform: uppercase;
}

.benefits span {
    color: rgba(17, 21, 20, .58);
}

.shop-section {
    padding: 120px 0 130px;
}

.section h2,
.newsletter h2 {
    font-family: var(--display);
    font-weight: 800;
    letter-spacing: 0;
    line-height: .92;
    text-transform: uppercase;
}

.section h2 {
    font-size: clamp(52px, 6vw, 78px);
}

.text-link {
    border-bottom: 3px solid var(--coral);
    font-family: var(--display);
    font-size: 16px;
    text-transform: uppercase;
}

.product-grid {
    gap: 30px 18px;
}

.product-card {
    background: var(--white);
    box-shadow: 0 12px 32px rgba(11, 20, 16, .06);
}

.product-card__image {
    aspect-ratio: 1 / 1.08;
    background: #e9ece8;
}

.product-card__details {
    padding: 18px 18px 20px;
}

.product-card h3 {
    font-family: var(--display);
    font-size: 21px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-card__badge {
    background: var(--coral);
}

.product-card__add {
    border: 0;
    border-radius: 2px;
    background: var(--sea);
    color: var(--white);
}

.product-card__add:hover {
    background: var(--coral);
}

.fleet-section__choice-note {
    max-width: 680px;
    margin: 18px 0 0;
    color: rgba(17, 21, 20, .64);
    font-size: 13px;
}

.ecard-order {
    padding-top: 76px;
    background: var(--paper);
}

.ecard-order__hero {
    color: var(--white);
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .025) 0 8px, transparent 8px 18px),
        var(--ink);
}

.ecard-order__hero-inner,
.ecard-order__catalog,
.ecard-order__fleet {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.ecard-order__hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr);
    gap: 70px;
    align-items: end;
    padding: 92px 0 80px;
}

.ecard-order__hero h1,
.ecard-order__catalog h2,
.ecard-order__fleet h2 {
    margin: 0;
    font-family: var(--display);
    font-weight: 800;
    letter-spacing: 0;
    line-height: .94;
    text-transform: uppercase;
}

.ecard-order__hero h1 {
    max-width: 680px;
    font-size: clamp(58px, 7vw, 96px);
}

.ecard-order__hero p:not(.eyebrow) {
    max-width: 650px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
}

.ecard-order__steps {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.ecard-order__steps li {
    display: grid;
    grid-template-columns: 42px 110px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 76px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.ecard-order__steps span {
    color: #63d38c;
    font-family: var(--display);
    font-weight: 800;
}

.ecard-order__steps strong {
    font-family: var(--display);
    font-size: 21px;
    text-transform: uppercase;
}

.ecard-order__steps small {
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
}

.ecard-order__catalog {
    padding: 94px 0 110px;
}

.ecard-order__section-heading {
    display: flex;
    gap: 32px;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 42px;
}

.ecard-order__catalog h2,
.ecard-order__fleet h2 {
    font-size: clamp(42px, 5vw, 68px);
}

.ecard-order__products .gift-card-products {
    margin: 0;
}

.ecard-order__products .woocommerce ul.products li.product .wc-gift-card-title,
.ecard-order__products .woocommerce ul.products li.product .wc-gift-card-price {
    padding-right: 16px;
    padding-left: 16px;
}

.ecard-order__empty,
.ecard-order__admin-note {
    padding: 28px;
    border-left: 4px solid var(--coral);
    background: var(--white);
}

.ecard-order__empty h3 {
    margin: 0 0 8px;
    font-family: var(--display);
    font-size: 28px;
    text-transform: uppercase;
}

.ecard-order__admin-note {
    margin-top: 28px;
    border-left-color: var(--sea);
    font-size: 14px;
}

.ecard-order__admin-note a {
    border-bottom: 1px solid currentColor;
    font-weight: 700;
}

.ecard-order__fleet {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 50px;
    align-items: center;
    margin-bottom: 110px;
    padding: 48px;
    background: var(--white);
    box-shadow: 12px 12px 0 var(--sea);
}

.ecard-order__fleet p:not(.eyebrow) {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(17, 21, 20, .65);
}

@media (max-width: 800px) {
    .ecard-order__hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ecard-order__section-heading,
    .ecard-order__fleet {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
    }
}

@media (max-width: 560px) {

    .ecard-order__hero-inner,
    .ecard-order__catalog,
    .ecard-order__fleet {
        width: min(100% - 32px, 1180px);
    }

    .ecard-order__hero-inner {
        padding: 70px 0 58px;
    }

    .ecard-order__hero h1 {
        font-size: 54px;
    }

    .ecard-order__steps li {
        grid-template-columns: 34px 88px 1fr;
    }

    .ecard-order__catalog {
        padding: 70px 0 82px;
    }

    .ecard-order__fleet {
        gap: 30px;
        margin-bottom: 82px;
        padding: 30px 24px;
        box-shadow: 8px 8px 0 var(--sea);
    }
}

.story {
    grid-template-columns: 1fr 1fr;
    background: var(--ink);
}

.story__image {
    min-height: 610px;
    background-color: #343b43;
    background-image: linear-gradient(rgba(0, 0, 0, .08), rgba(0, 0, 0, .08)), url("../images/station-hero.jpg");
    background-position: center;
}

.story__content {
    position: relative;
    overflow: hidden;
}

.story__content::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 210px;
    height: 210px;
    border: 32px solid rgba(255, 255, 255, .035);
    transform: rotate(45deg);
}

.story__content .eyebrow {
    color: #63d38c;
}

.story__content p:not(.eyebrow) {
    color: rgba(255, 255, 255, .68);
}

.faq {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: clamp(48px, 8vw, 120px);
    padding-top: 118px;
    padding-bottom: 118px;
}

.faq__heading {
    align-self: start;
    position: sticky;
    top: 130px;
}

.faq__heading h2 {
    max-width: 430px;
}

.faq__list {
    border-top: 1px solid var(--line);
}

.faq details {
    border-bottom: 1px solid var(--line);
}

.faq summary {
    display: grid;
    min-height: 92px;
    grid-template-columns: 1fr 32px;
    gap: 20px;
    align-items: center;
    cursor: pointer;
    font-family: var(--display);
    font-size: clamp(23px, 2.5vw, 32px);
    font-weight: 700;
    line-height: 1.1;
    list-style: none;
    text-transform: uppercase;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    background: var(--sea);
    color: var(--white);
    font-family: var(--body);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

.faq details[open] summary::after {
    content: "−";
    background: var(--coral);
}

.faq details p {
    max-width: 650px;
    margin: -4px 52px 30px 0;
    color: rgba(17, 21, 20, .68);
    font-size: 16px;
}

.newsletter {
    align-items: center;
    background: var(--sea);
    color: var(--white);
}

.newsletter .eyebrow {
    color: #b7efca;
}

.newsletter h2 {
    font-size: clamp(48px, 5vw, 68px);
}

.visit-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, .35);
    border-bottom: 1px solid rgba(255, 255, 255, .35);
}

.visit-actions p {
    max-width: 340px;
    margin: 0;
    font-weight: 600;
}

.button--dark {
    flex: 0 0 auto;
    background: var(--ink);
}

.site-footer {
    background: #090b0a;
}

.site-footer__brand,
.site-footer strong {
    font-family: var(--display);
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .site-header__inner {
        height: 76px;
        gap: 6px;
    }

    .site-brand {
        flex: 1 1 auto;
        margin-right: 0;
    }

    .site-brand .custom-logo {
        max-width: 148px;
        max-height: 52px;
    }

    .site-header__cart {
        order: 2;
    }

    .menu-toggle {
        order: 3;
    }

    .primary-nav {
        order: 4;
        z-index: 1;
        margin-left: 0;
        background: var(--ink);
    }

    .primary-nav__list {
        gap: 8px;
        font-size: clamp(34px, 10vw, 48px);
    }

    .primary-nav__list a {
        display: flex;
        min-width: 180px;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        padding: 8px 24px;
    }

    .primary-nav a::after {
        bottom: 3px;
    }

    .text-link {
        min-height: 44px;
        align-items: center;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .site-footer nav a {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
        padding: 10px 4px;
    }

    .hero,
    .hero__content {
        min-height: 720px;
    }

    .hero h1 {
        font-size: clamp(64px, 15vw, 96px);
    }

    .benefits {
        width: 100%;
    }

    .benefits div {
        padding-left: 55px;
    }

    .benefits__number {
        left: 18px;
    }

    .story {
        grid-template-columns: 1fr;
    }

    .newsletter {
        grid-template-columns: 1fr;
    }

    .faq {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .faq__heading {
        position: static;
    }
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

@media (max-width: 560px) {

    .site-brand {
        min-width: 0;
    }

    .site-brand>a {
        display: flex;
        min-width: 0;
        align-items: center;
        gap: 8px;
        line-height: 1.05;
    }

    .hero,
    .hero__content {
        min-height: max(640px, 100svh);
    }

    .hero__media {
        background-position: 58% center;
    }

    .hero__shade {
        background: linear-gradient(0deg, rgba(7, 10, 9, .92) 0%, rgba(7, 10, 9, .5) 62%, rgba(7, 10, 9, .2) 100%);
    }

    .hero__content {
        padding-top: 104px;
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: clamp(48px, 16vw, 72px);
        overflow-wrap: anywhere;
    }

    .hero__status {
        display: none;
    }

    .hero__actions {
        width: 100%;
    }

    .hero__actions .button {
        flex: 1 1 150px;
    }

    .benefits div {
        min-height: 104px;
    }

    .shop-section {
        padding-top: 84px;
    }

    .section h2 {
        font-size: clamp(38px, 13vw, 48px);
        overflow-wrap: anywhere;
    }

    .product-card__details {
        padding: 14px;
    }

    .product-card h3 {
        font-size: 17px;
    }

    .story__image {
        min-height: 360px;
    }

    .faq {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .faq summary {
        min-height: 80px;
        font-size: 22px;
    }

    .visit-actions {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-card__image {
        aspect-ratio: 4 / 3;
    }

    .product-card h3 {
        font-size: 20px;
    }

    .site-footer nav {
        gap: 0 18px;
    }
}

@media (max-width: 340px) {
    .site-brand>a span:last-child {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    .hero__lede {
        line-height: 1.5;
    }
}

body.modal-open {
    overflow: hidden;
}

.commerce-page {
    min-height: 70vh;
    padding-top: 76px;
    background: var(--paper);
}

.commerce-hero {
    padding: 86px 0 64px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.commerce-hero__inner,
.commerce-content {
    width: var(--page);
    margin: 0 auto;
}

.commerce-hero__inner {
    max-width: 1240px;
}

.commerce-hero h1 {
    max-width: 820px;
    margin: 12px 0 18px;
    font-family: var(--display);
    font-size: clamp(52px, 6vw, 82px);
    font-weight: 800;
    line-height: .94;
    text-transform: uppercase;
}

.commerce-hero__inner>p:last-child {
    max-width: 650px;
    margin: 0;
    color: rgba(17, 21, 20, .66);
    font-size: 17px;
}

.commerce-content {
    padding: 64px 0 110px;
}

.commerce-content::after,
.commerce-content .woocommerce::after {
    display: table;
    clear: both;
    content: "";
}

.commerce-content .woocommerce-result-count {
    margin: 10px 0 34px;
    color: rgba(17, 21, 20, .58);
    font-size: 13px;
    font-weight: 700;
}

.commerce-content .woocommerce-ordering {
    margin: 0 0 34px;
}

.commerce-content .woocommerce-ordering select {
    min-height: 44px;
    padding: 8px 38px 8px 12px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: var(--white);
    color: var(--ink);
    font: inherit;
}

.commerce-content ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 42px 18px;
    clear: both;
    padding: 0;
    margin: 0;
    list-style: none;
}

.commerce-content ul.products::before,
.commerce-content ul.products::after {
    display: none;
}

.commerce-content ul.products li.product,
.commerce-content ul.products[class*=columns-] li.product {
    width: auto;
    margin: 0;
    float: none;
}

.commerce-content ul.products li.product a img {
    width: 100%;
    aspect-ratio: 1;
    margin: 0 0 18px;
    object-fit: cover;
    background: #e7eae6;
}

.commerce-content ul.products li.product .woocommerce-loop-product__title {
    padding: 0;
    margin: 0 0 6px;
    color: var(--ink);
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
}

.commerce-content ul.products li.product .price {
    margin: 0;
    color: var(--sea);
    font-size: 15px;
    font-weight: 800;
}

.commerce-content ul.products li.product .button {
    width: 100%;
    min-height: 44px;
    padding: 10px 16px;
    margin-top: 16px;
    background: var(--ink);
    color: var(--white);
    text-align: center;
}

.commerce-content ul.products li.product .button:hover {
    background: var(--coral);
}

.commerce-content ul.products li.product .onsale {
    top: 10px;
    right: 10px;
    left: auto;
    min-width: 0;
    min-height: 0;
    padding: 6px 9px;
    margin: 0;
    border-radius: 0;
    background: var(--coral);
    line-height: 1;
}

.commerce-content .woocommerce-pagination {
    margin-top: 56px;
}

.commerce-content .woocommerce-pagination ul.page-numbers {
    border: 0;
}

.commerce-content .woocommerce-pagination ul.page-numbers li {
    border: 0;
    margin: 0 3px;
}

.commerce-content .woocommerce-pagination .page-numbers a,
.commerce-content .woocommerce-pagination .page-numbers span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    background: var(--white);
    color: var(--ink);
}

.commerce-content .woocommerce-pagination .page-numbers .current {
    background: var(--ink);
    color: var(--white);
}

.commerce-empty {
    max-width: 720px;
    padding: 64px 0;
}

.commerce-empty h2 {
    margin: 10px 0 14px;
    font-family: var(--display);
    font-size: clamp(42px, 5vw, 64px);
    line-height: .95;
    text-transform: uppercase;
}

.commerce-empty>p:not(.eyebrow) {
    max-width: 540px;
    margin: 0 0 26px;
    color: rgba(17, 21, 20, .66);
}

.commerce-page:not(.commerce-page--catalog) .commerce-content {
    padding-top: 80px;
}

@media (max-width: 900px) {
    .commerce-content ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .commerce-hero {
        padding: 58px 0 48px;
    }

    .commerce-content {
        padding: 46px 0 80px;
    }

    .commerce-content .woocommerce-result-count,
    .commerce-content .woocommerce-ordering {
        width: 100%;
        float: none;
    }

    .commerce-content .woocommerce-ordering select {
        width: 100%;
    }

    .commerce-content ul.products {
        grid-template-columns: 1fr;
        gap: 38px;
    }
}

.fleet-section {
    padding: 112px 0;
    background: var(--paper);
    color: var(--ink);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.fleet-section__inner {
    width: var(--page);
    margin: 0 auto;
}

.fleet-section__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, .88fr);
    grid-template-areas:
        "eyebrow card"
        "title card"
        "description card"
        "actions card"
        "note card";
    gap: 18px 76px;
    align-items: start;
}

.fleet-section__intro .eyebrow,
.fleet-plans>article>span,
.fleet-benefits>article>span {
    color: var(--sea);
}

.fleet-section__intro .eyebrow {
    grid-area: eyebrow;
}

.fleet-section__intro h2 {
    grid-area: title;
    max-width: 680px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(48px, 5.4vw, 76px);
    line-height: .98;
}

.fleet-section__intro>p:not(.eyebrow):not(.fleet-section__choice-note) {
    grid-area: description;
    max-width: 540px;
    margin: 4px 0 0;
    color: rgba(17, 21, 20, .72);
    font-size: 18px;
}

.fleet-section__choice-note {
    grid-area: note;
    margin: 0;
}

.fleet-section__actions {
    grid-area: actions;
    display: flex;
    gap: 22px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.fleet-section__actions .text-link {
    color: var(--ink);
}

.fleet-card-visual {
    grid-area: card;
    width: 100%;
    max-width: 540px;
    align-self: center;
    justify-self: end;
    padding: 28px 14px 34px;
}

.fleet-card {
    position: relative;
    aspect-ratio: 1.58;
    padding: clamp(24px, 3vw, 38px);
    overflow: hidden;
    background: var(--white);
    color: var(--ink);
    border: 1px solid rgba(17, 21, 20, .12);
    border-radius: 8px;
    box-shadow: 18px 20px 0 var(--coral), -12px -12px 0 var(--sea);
    transform: rotate(-2deg);
}

.fleet-card::after {
    content: "";
    position: absolute;
    right: -12%;
    bottom: -34%;
    width: 68%;
    aspect-ratio: 1;
    border: 44px solid rgba(17, 21, 20, .05);
    border-radius: 50%;
}

.fleet-card__header,
.fleet-card__footer {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.fleet-card__logo {
    width: auto;
    max-width: 148px;
    max-height: 64px;
    object-fit: contain;
}

.fleet-card__header>span {
    padding: 6px 10px;
    background: var(--coral);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.fleet-card__route {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 12px 1fr 12px;
    align-items: center;
    width: 72%;
    margin: clamp(24px, 4vw, 46px) 0 16px;
}

.fleet-card__route span {
    width: 12px;
    height: 12px;
    background: var(--coral);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(17, 21, 20, .18);
}

.fleet-card__route span:last-child {
    background: var(--sea);
}

.fleet-card__route i {
    height: 2px;
    background: rgba(17, 21, 20, .44);
}

.fleet-card__identity {
    position: relative;
    z-index: 1;
}

.fleet-card__identity p {
    margin: 0;
    color: rgba(17, 21, 20, .62);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.fleet-card__identity strong {
    display: block;
    margin-top: 2px;
    font-family: var(--display);
    font-size: clamp(25px, 3vw, 36px);
}

.fleet-card__footer {
    position: absolute;
    right: clamp(24px, 3vw, 38px);
    bottom: clamp(20px, 2.5vw, 32px);
    left: clamp(24px, 3vw, 38px);
    color: rgba(17, 21, 20, .7);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.fleet-card__footer span {
    min-width: 0;
}

.fleet-card__footer span:last-child {
    font-size: 9px;
    text-align: right;
    white-space: nowrap;
}

.fleet-plans {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 64px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.fleet-plans article {
    min-height: 260px;
    padding: 36px 42px 38px 0;
}

.fleet-plans article+article {
    padding-left: 42px;
    border-left: 1px solid var(--line);
}

.fleet-plans span,
.fleet-benefits span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.fleet-plans h3,
.fleet-benefits h3 {
    margin: 20px 0 8px;
    font-family: var(--display);
    font-size: 30px;
}

.fleet-plans p,
.fleet-benefits p {
    margin: 0;
    color: rgba(17, 21, 20, .68);
}

.fleet-plans small {
    display: block;
    margin-top: 18px;
    color: var(--coral);
}

.fleet-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.fleet-benefits article {
    padding-top: 24px;
    border-top: 3px solid var(--coral);
}

.fleet-benefits h3 {
    font-size: 23px;
}

.fleet-alert {
    width: var(--page);
    padding: 18px 22px;
    margin: 28px auto;
    border-left: 4px solid var(--sea);
    background: #e8f5ec;
    color: var(--ink);
}

.fleet-alert--invalid,
.fleet-alert--error {
    border-left-color: var(--coral);
    background: #fff0ec;
}

.fleet-alert p {
    margin: 0;
    font-weight: 700;
}

.fleet-modal[hidden] {
    display: none;
}

.fleet-modal {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
}

.fleet-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 15, 13, .82);
}

.fleet-modal__dialog {
    position: relative;
    width: min(780px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 42px;
    border-top: 5px solid var(--coral);
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
}

.fleet-modal__dialog h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(38px, 6vw, 58px);
    line-height: 1;
}

.fleet-modal__dialog>p:not(.eyebrow) {
    max-width: 620px;
    color: rgba(23, 51, 45, .72);
}

.fleet-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.fleet-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.fleet-form label {
    display: grid;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
}

.fleet-form input,
.fleet-form select,
.fleet-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 12px;
    border: 1px solid rgba(23, 51, 45, .3);
    border-radius: 3px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.fleet-form textarea {
    min-height: 108px;
    resize: vertical;
}

.fleet-form input:focus,
.fleet-form select:focus,
.fleet-form textarea:focus {
    border-color: var(--sea);
    outline: 3px solid rgba(40, 125, 131, .18);
}

.fleet-form__wide {
    grid-column: 1 / -1;
}

.fleet-form .fleet-form__check {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: start;
    font-weight: 500;
}

.fleet-form__check input {
    width: 20px;
    min-height: 20px;
    margin: 2px 0 0;
}

.fleet-form__notice {
    margin: 0;
    color: rgba(23, 51, 45, .68);
    font-size: 12px;
}

.fleet-form__trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 900px) {
    .fleet-section {
        padding: 84px 0;
    }

    .fleet-section__intro {
        grid-template-columns: 1fr;
        grid-template-areas:
            "eyebrow"
            "title"
            "description"
            "actions"
            "note"
            "card";
        gap: 20px;
    }

    .fleet-section__actions {
        margin-top: 4px;
    }

    .fleet-card-visual {
        justify-self: start;
        margin-top: 28px;
    }

    .fleet-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {

    .fleet-plans,
    .fleet-form {
        grid-template-columns: 1fr;
    }

    .fleet-plans article,
    .fleet-plans article+article {
        min-height: 0;
        padding: 28px 0;
        border-left: 0;
    }

    .fleet-plans article+article {
        border-top: 1px solid var(--line);
    }

    .fleet-card-visual {
        padding: 18px 12px 26px;
    }

    .fleet-card {
        box-shadow: 10px 12px 0 var(--coral), -7px -7px 0 var(--sea);
    }

    .fleet-card__footer span:last-child {
        display: none;
    }

    .fleet-form__wide {
        grid-column: auto;
    }

    .fleet-modal {
        padding: 0;
    }

    .fleet-modal__dialog {
        width: 100%;
        height: 100%;
        max-height: none;
        padding: 72px 20px 32px;
        border-radius: 0;
    }

    .fleet-section__actions .button,
    .fleet-form>.button {
        width: 100%;
    }
}