/* Got Lift Foils - design tokens and site styles */

@font-face {
    font-family: "Bricolage Grotesque";
    src: url("../fonts/bricolage-grotesque-var.woff2") format("woff2");
    font-weight: 200 800;
    font-display: swap;
}

@font-face {
    font-family: "Instrument Sans";
    src: url("../fonts/instrument-sans-var.woff2") format("woff2");
    font-weight: 400 700;
    font-display: swap;
}

:root {
    --deep: #0C2B3A;
    --foam: #F7FBFC;
    --shallow: #E3F2F4;
    --teal: #1FC4CC;
    --teal-ink: #0E7C86;
    --sunset: #F0A951;
    --muted: #46626F;
    --display: "Bricolage Grotesque", "Arial Black", sans-serif;
    --body: "Instrument Sans", system-ui, sans-serif;
    --radius: 14px;
    --wrap: 1120px;
}

/* base */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    margin: 0;
    font-family: var(--body), sans-serif;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--deep);
    background: var(--foam);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--teal-ink);
}

h1, h2, h3 {
    font-family: var(--display), sans-serif;
    line-height: 1.05;
    margin: 0 0 0.5em;
}

p {
    margin: 0 0 1em;
}

:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 2px;
}

.wrap {
    width: min(var(--wrap), 100% - 2.5rem);
    margin-inline: auto;
}

.wrap.narrow {
    max-width: 660px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--deep);
    color: #fff;
    padding: 0.6rem 1rem;
    z-index: 100;
}

.skip-link:focus {
    left: 0;
}

/* type helpers */

.eyebrow {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal-ink);
    margin-bottom: 0.9rem;
}

.section-title {
    font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.6rem);
    font-weight: 600;
    max-width: 22ch;
}

/* buttons */

.btn {
    display: inline-block;
    font-family: var(--body), sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    min-height: 44px;
}

.btn-primary {
    background: var(--teal);
    color: var(--deep);
}

.btn-primary:hover {
    background: #3ad2d9;
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
}

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

.btn-ghost-dark:hover {
    background: var(--deep);
    color: var(--foam);
}

.btn-small {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    min-height: 40px;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

/* header */

.site-head {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 251, 252, 0.88);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(12, 43, 58, 0.08);
}

.head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 60px;
}

.wordmark {
    font-family: var(--display), sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--deep);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.head-nav {
    display: none;
}

.head-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.menu-btn {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--deep);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

body.menu-open .menu-btn span:first-child {
    transform: translateY(4.3px) rotate(45deg);
}

body.menu-open .menu-btn span:last-child {
    transform: translateY(-4.3px) rotate(-45deg);
}

/* mobile menu overlay */

.menu[hidden] {
    display: none;
}

.menu {
    position: fixed;
    inset: 60px 0 0 0;
    z-index: 40;
    background: var(--foam);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 0.3rem;
}

.menu a {
    font-family: var(--display), sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--deep);
    text-decoration: none;
    padding: 0.65rem 0.5rem;
    border-radius: 8px;
}

.menu a:hover {
    background: var(--shallow);
}

.menu .menu-call {
    margin-top: auto;
    font-family: var(--body), sans-serif;
    font-size: 1.05rem;
    text-align: center;
    background: var(--teal);
    border-radius: 999px;
    padding: 1rem;
}

/* hero */

.hero {
    position: relative;
    min-height: 88svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 40%;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 43, 58, 0.18) 0%, rgba(12, 43, 58, 0.05) 40%, rgba(12, 43, 58, 0.72) 100%);
}

.hero-content {
    position: relative;
    color: #fff;
    padding: 4.5rem 0 3.2rem;
    text-shadow: 0 1px 14px rgba(12, 43, 58, 0.4);
}

.hero-content .eyebrow {
    color: rgba(255, 255, 255, 0.92);
}

.hero h1 {
    font-size: clamp(2.7rem, 1.6rem + 6vw, 5.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.35em;
    text-wrap: balance;
}

.waterline {
    width: 150px;
    color: var(--teal);
    margin: 0 0 1.1rem;
}

.hero-sub {
    font-size: 1.1rem;
    max-width: 34ch;
    margin-bottom: 1.6rem;
    color: rgba(255, 255, 255, 0.94);
}

/* sections */

.section {
    padding: 4rem 0;
}

.section-tint {
    background: var(--shallow);
}

/* service cards */

.cards {
    display: grid;
    gap: 1.1rem;
}

.card {
    background: #fff;
    border: 1px solid rgba(12, 43, 58, 0.08);
    border-radius: var(--radius);
    padding: 1.6rem 1.5rem;
}

.card h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.card p {
    margin: 0;
    color: var(--muted);
}

/* pricing */

.price-list {
    list-style: none;
    margin: 2rem 0;
    padding: 1.6rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(12, 43, 58, 0.08);
    border-radius: var(--radius);
}

.price-list li {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
    padding: 0.55rem 0;
    font-size: 1.05rem;
}

.price-list .dots {
    flex: 1;
    border-bottom: 2px dotted rgba(12, 43, 58, 0.22);
    transform: translateY(-4px);
}

.price-list .price {
    font-family: var(--display), sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
}

/* story */

.story-grid {
    display: grid;
    gap: 2rem;
}

.story-photo {
    margin: 0;
}

.story-photo img {
    border-radius: var(--radius);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-badge {
    width: 130px;
    height: auto;
    margin-bottom: 1.3rem;
}

.story-text p:not(.eyebrow) {
    color: var(--muted);
}

.story-text .btn {
    margin-top: 0.4rem;
}

/* gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
    margin-top: 1.6rem;
}

.tile {
    padding: 0;
    border: 0;
    background: none;
    cursor: zoom-in;
    border-radius: 10px;
    overflow: hidden;
}

.tile img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.tile:hover img {
    transform: scale(1.04);
}

/* community */

.community-list {
    list-style: none;
    margin: 1.6rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.community-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid rgba(12, 43, 58, 0.08);
    border-radius: var(--radius);
    padding: 1rem 1.3rem;
    text-decoration: none;
    color: var(--deep);
    font-weight: 600;
    min-height: 44px;
}

.community-list a:hover {
    border-color: var(--teal);
}

.community-list span {
    color: var(--teal-ink);
}

/* contact */

.contact-grid {
    display: grid;
    gap: 2.5rem;
}

.contact-intro p:not(.eyebrow) {
    color: var(--muted);
    max-width: 38ch;
}

.contact-actions {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.contact-form {
    background: #fff;
    border: 1px solid rgba(12, 43, 58, 0.08);
    border-radius: var(--radius);
    padding: 1.6rem 1.5rem;
}

.honey {
    display: none;
}

.field {
    margin-bottom: 1.1rem;
}

.field label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.field input,
.field textarea {
    width: 100%;
    font: inherit;
    color: var(--deep);
    background: var(--foam);
    border: 1.5px solid rgba(12, 43, 58, 0.18);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    min-height: 44px;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(31, 196, 204, 0.25);
}

.contact-form .btn {
    width: 100%;
    border: 0;
}

/* closer */

.closer {
    position: relative;
    min-height: 56svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.closer-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.closer-scrim {
    position: absolute;
    inset: 0;
    background: rgba(12, 43, 58, 0.45);
}

.closer-content {
    position: relative;
    text-align: center;
    padding: 4rem 0;
}

.closer-mark {
    font-family: var(--display), sans-serif;
    font-size: clamp(3rem, 2rem + 7vw, 6rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.4rem;
    letter-spacing: -0.02em;
}

.closer .btn-primary {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}

/* footer */

.site-foot {
    background: var(--deep);
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0 2rem;
}

.foot-grid {
    display: grid;
    gap: 2rem;
    padding-bottom: 2rem;
}

.foot-mark {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0 0.8rem;
}

.foot-line {
    margin: 0 0 0.4rem;
    font-size: 0.98rem;
}

.foot-line a {
    color: rgba(255, 255, 255, 0.85);
}

.foot-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-content: start;
}

.foot-social a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.3rem 0;
}

.foot-social a:hover {
    color: var(--teal);
    border-color: var(--teal);
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.4rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.waterline-foot {
    color: var(--teal);
    width: 110px;
    margin-bottom: 0.9rem;
}

/* dialogs */

.lightbox, .video-dialog {
    border: 0;
    padding: 0;
    background: transparent;
    max-width: 100vw;
    max-height: 100vh;
}

.lightbox::backdrop, .video-dialog::backdrop {
    background: rgba(6, 20, 28, 0.92);
}

.lightbox img {
    max-width: min(92vw, 1100px);
    max-height: 84vh;
    object-fit: contain;
    border-radius: 8px;
}

.lb-close {
    position: fixed;
    top: 0.8rem;
    right: 0.8rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
}

.lb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
}

.lb-prev {
    left: 0.8rem;
}

.lb-next {
    right: 0.8rem;
}

.lb-close:hover, .lb-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.video-frame {
    width: min(92vw, 960px);
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* reveal animation */

html.motion-ok .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

html.motion-ok .reveal.in {
    opacity: 1;
    transform: none;
}

html.motion-ok .hero-content > * {
    animation: rise 0.7s ease backwards;
}

html.motion-ok .hero-content > :nth-child(2) {
    animation-delay: 0.12s;
}

html.motion-ok .hero-content > :nth-child(3) {
    animation-delay: 0.22s;
}

html.motion-ok .hero-content > :nth-child(4) {
    animation-delay: 0.3s;
}

html.motion-ok .hero-content > :nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

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

    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* desktop */

@media (min-width: 720px) {
    .cards {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .story-grid {
        grid-template-columns: 1.05fr 1fr;
        align-items: center;
        gap: 3.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 3.5rem;
        align-items: start;
    }

    .contact-form {
        padding: 2rem;
    }

    .section {
        padding: 5.5rem 0;
    }

    .hero-content {
        padding-bottom: 4.5rem;
    }
}

@media (min-width: 900px) {
    .head-nav {
        display: flex;
        gap: 1.8rem;
    }

    .head-nav a {
        color: var(--deep);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.98rem;
        padding: 0.4rem 0;
    }

    .head-nav a:hover {
        color: var(--teal-ink);
    }

    .menu-btn {
        display: none;
    }

    .foot-grid {
        grid-template-columns: 1fr auto;
        align-items: start;
    }
}
