@font-face {
    font-family: "Inter";
    src: url("./resources/Inter-VariableFont_opsz,wght.woff2") format("woff2");
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root{
    --primary: oklch(0.56 0.06 256);
    --lprimary: oklch(0.7 0.05 255);
    --dprimary: oklch(0.4 0.05 255);

    --bg: oklch(0.99 0.003 325);
    --text: oklch(0.25 0.01 325);

    --border: rgba(0,0,0,.10);
    --shadow: 0 12px 30px rgba(0,0,0,.08);

    --radius: 1.25rem;
    --radius-sm: .9rem;
}

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

img{
    max-width: 100%;
    display: block;
}

.container{
    max-width: 80rem;
    margin-inline: auto;
    padding-inline: 1rem;
}

.section{
    padding-block: 2rem;
}

.skip-link{
    position: absolute;
    left: -999px;
    top: 0;
    padding: .7rem 1rem;
    background: var(--text);
    color: var(--bg);
    border-radius: .75rem;
    z-index: 9999;
}
.skip-link:focus{
    left: 1rem;
    top: 1rem;
}

.site-header{
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--primary);
    color: var(--bg);
    border-bottom: 1px solid rgba(0,0,0,.12);
}

.header-inner{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-block: 1rem;
}

.brand img{
    width: 12rem;
    height: auto;
}

.slogan{
    margin: 0;
    opacity: .95;
    font-weight: 500;
    flex: 1;
}

.nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: .6rem;
    align-items: center;
}

.nav a{
    display: inline-block;
    text-decoration: none;
    color: var(--text);
    background: var(--lprimary);
    padding: .55rem .85rem;
    border-radius: .85rem;
    font-weight: 600;
    transition: transform .15s ease, background-color .15s ease;
}

.nav a:hover,
.nav a:focus-visible{
    background: var(--dprimary);
    transform: translateY(-1px);
}

.nav a[aria-current="page"]{
    outline: 2px solid rgba(255,255,255,.55);
    outline-offset: 2px;
}

.hero{
    background: linear-gradient(180deg, rgba(0,0,0,.05), transparent);
    padding-block: 3rem;
}

.hero-inner{
    background: var(--primary);
    color: var(--bg);
    border-radius: var(--radius);
    padding: 2.25rem;
    box-shadow: var(--shadow);
}

.hero h1{
    margin: 0 0 .6rem 0;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.15;
    letter-spacing: -.02em;
}

.hero p{
    margin: 0 0 1.25rem 0;
    opacity: .95;
    max-width: 70ch;
}

.hero-actions{
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.card{
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow);
}

.card-accent{
    border-color: rgba(0,0,0,.14);
    background: rgba(0,0,0,.02);
}

.card.subtle{
    background: rgba(0,0,0,.02);
    box-shadow: none;
}

.h3{
    margin: 0 0 .75rem 0;
    font-size: 1.1rem;
}

.muted{
    opacity: .8;
}

.bullet,
.steps{
    margin: .75rem 0 0 0;
    padding-left: 1.1rem;
}

.bullet-grid{
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: grid;
    gap: .6rem;
}

.bullet-grid li{
    padding-left: 1.4rem;
    position: relative;
}
.bullet-grid li::before{
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: .75rem;
    height: .75rem;
    border-radius: .25rem;
    background: var(--lprimary);
    border: 2px solid rgba(0,0,0,.15);
    transform: translateY(-50%);
}

.grid-2{
    display: grid;
    gap: 1rem;
}
@media (min-width: 900px){
    .grid-2{ grid-template-columns: 1fr 1fr; }
}

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .7rem 1rem;
    border-radius: .95rem;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}

.btn-primary{
    background: var(--lprimary);
    color: var(--text);
}

.btn-primary:hover,
.btn-primary:focus-visible{
    background: var(--dprimary);
    transform: translateY(-1px);
}

.btn-ghost{
    background: transparent;
    color: var(--bg);
    border-color: rgba(255,255,255,.35);
}

.hero .btn-ghost{
    color: var(--bg);
}

.btn-ghost:hover,
.btn-ghost:focus-visible{
    border-color: rgba(255,255,255,.65);
    transform: translateY(-1px);
}


.form{
    display: grid;
    gap: 1rem;
}

.field{
    display: grid;
    gap: .4rem;
}

label{
    font-weight: 700;
}

input,
select,
textarea{
    width: 100%;
    padding: .75rem .9rem;
    border-radius: .9rem;
    border: 1px solid rgba(0,0,0,.18);
    background: var(--bg);
    color: var(--text);
    outline: none;
}

input:focus,
select:focus,
textarea:focus{
    border-color: rgba(0,0,0,.35);
    box-shadow: 0 0 0 4px rgba(0,0,0,.06);
}

.form-actions{
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.map-placeholder{
    border: 1px dashed rgba(0,0,0,.25);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    min-height: 220px;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,.02);
}

.site-footer{
    background: var(--primary);
    color: var(--bg);
    margin-top: 2rem;
}

.footer-inner{
    padding-block: 1.25rem;
}


.cookie-banner{
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 9999;

    display: none;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;

    padding: 1rem;
    border-radius: 1rem;

    background: var(--text);
    color: var(--bg);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.cookie-banner a{
    color: var(--bg);
    text-decoration: underline;
}

.cookie-actions{
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.cookie-btn{
    border: 0;
    border-radius: .8rem;
    padding: .6rem .9rem;
    cursor: pointer;
    font-weight: 700;
    background: var(--lprimary);
    color: var(--text);
    transition: background-color .2s ease;
}

.cookie-btn:hover,
.cookie-btn:focus-visible{
    background: var(--dprimary);
}

.cookie-btn--ghost{
    background: transparent;
    color: var(--bg);
    border: 1px solid rgba(255,255,255,.35);
}

@media (min-width: 720px){
    .cookie-banner{
        left: auto;
        right: 1rem;
        max-width: 560px;
    }
}


.privacy{
    max-width: 70ch;
    margin-inline: auto;
    padding-block: 2rem;
}

.privacy section{
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin: 1rem 0;
    box-shadow: var(--shadow);
    background: var(--bg);
}


.brand img{
    width: clamp(8.5rem, 22vw, 12rem);
    height: auto;
}


.nav-toggle{
    display: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,.35);
    color: var(--bg);
    border-radius: .9rem;
    padding: .55rem .7rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.nav-toggle:focus-visible{
    outline: 2px solid rgba(255,255,255,.7);
    outline-offset: 3px;
}


.nav-toggle .bar{
    display: block;
    width: 22px;
    height: 2px;
    background: var(--bg);
    border-radius: 99px;
    margin: 4px 0;
    transition: transform .2s ease, opacity .2s ease;
}


@media (max-width: 720px){
    .header-inner{
        align-items: center;
        gap: .75rem;
    }


    .slogan{
        display: none;
    }


    .nav-toggle{
        display: inline-flex;
        margin-left: auto;
    }


    .nav{
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: var(--primary);
        border-bottom: 1px solid rgba(0,0,0,.12);
        display: none;
    }


    .site-header.nav-open .nav{
        display: block;
    }

    .nav ul{
        flex-direction: column;
        align-items: stretch;
        gap: .5rem;
        padding: 1rem;
    }

    .nav a{
        width: 100%;
        border-radius: .9rem;
        padding: .75rem 1rem;
    }


    .site-header.nav-open .nav-toggle .bar:nth-child(1){
        transform: translateY(6px) rotate(45deg);
    }
    .site-header.nav-open .nav-toggle .bar:nth-child(2){
        opacity: 0;
    }
    .site-header.nav-open .nav-toggle .bar:nth-child(3){
        transform: translateY(-6px) rotate(-45deg);
    }


    .site-header .header-inner{
        position: relative;
    }
}



.autocomplete{
    position: relative;
}


.suggestions{
    position: absolute;
    z-index: 80;
    left: 0;
    right: 0;
    top: calc(100% + .4rem);

    margin: 0;
    padding: .35rem;
    list-style: none;

    border-radius: var(--radius-sm);
    background: var(--bg);
    border: 1px solid var(--border);

    max-height: 240px;
    overflow: auto;

    box-shadow: var(--shadow);
}


.suggestions button{
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;

    padding: .6rem .75rem;
    border-radius: .75rem;
    cursor: pointer;

    color: var(--text);
    font: inherit;
}

.suggestions button:hover,
.suggestions button:focus-visible{
    outline: none;
    background: rgba(0,0,0,.06);
}


.suggestions .mutedline{
    opacity: .75;
    font-size: .9em;
    margin-left: .25rem;
}

textarea {
    width:90%;
    max-width:90%;
    min-width: 30%;
    max-height: 30rem;
    min-height: 10rem;
}

.contact-blocks div{
	display: flex;
	flex-direction: column;
}

.sr-only{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}
