@font-face {
    font-family: "Inter";
    src: url("fonts/InterVariable.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}


:root {
    --bg: #f1f1ef;
    --surface: #fff;
    --text: #1e1e1e;
    --muted: #696969;
    --orange: #d97a1a;
    --blue: #0d6fa3;
    --grey: #e4e4df;
    --max: 1280px;
    --shadow: 0 12px 35px rgba(30, 30, 30, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.65;
}

img {
    max-width: 100%;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--max));
    margin: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--grey);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(30, 30, 30, .08);
}

.nav {
    position: relative;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    width: 170px;
    height: auto;
    margin-bottom: 5px;
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 10px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 27px;
    height: 2px;
    background: var(--text);
    margin: 6px;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
    font-size: clamp(1rem, 1vw, 1rem);
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 2px;
    background: var(--orange);
    transition: .25s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    right: 0;
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 21px;
    border: 1px solid var(--orange);
    border-radius: 5px;
    background: var(--orange);
    color: #fff;
    transition: .25s;
    cursor: pointer;
}

.btn:hover,
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn.secondary {
    background: transparent;
    color: var(--text);
    border-color: var(--text);
}

.btn.blue {
    background: var(--blue);
    border-color: var(--blue);
}

h1,
h2,
h3 {
    line-height: 1.16;
    font-weight: 500;
}

h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 0 0 25px;
}

h2 {
    font-size: clamp(1.6rem, 2vw, 2rem);
    margin: 0 0 22px;
}

h3 {
    font-size: 1.2rem;
    font-weight: 400;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--orange);
    font-size: .75rem;
    font-weight: 600;
}

.lead {
    font-size: clamp(1.05rem, 1.3vw, 1.3rem);
    color: var(--muted);
}

.section {
    padding: 25px 0;
}

.section.extended {
    margin-top: 40px;
}

.section-head {
    display: flex;
    align-items: end;
    margin-bottom: 20px;
}

.section-head p {
    color: var(--muted);
}

.hero {
    min-height: calc(100vh - 190px);
    position: relative;
    display: grid;
    align-items: end;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.3s;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .67), rgba(0, 0, 0, .18) 65%, rgba(0, 0, 0, .05));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 90px 50px;
}

.hero-content .lead {
    color: rgba(255, 255, 255, .85);
}

.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.hero .secondary {
    color: #fff;
    border-color: #fff;
}

.slider-dots {
    position: absolute;
    z-index: 3;
    right: 30px;
    bottom: 30px;
    display: flex;
    gap: 8px
}

.slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid white;
    background: transparent
}

.slider-dot.active {
    background: #fff
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.image-card {
    position: relative;
    overflow: hidden;
    background: #ddd
}

.image-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: .6s
}

.image-card::after {
    content: "";
    position: absolute;
    inset: 30% 0 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .75))
}

.image-card-content {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 25px;
    color: #fff
}

.image-card:hover img {
    transform: scale(1.045)
}

.image-card h3 {
    margin: 0 0 6px
}

.split {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: center;
}

.split img {
    width: 100%;
    aspect-ratio: 4/4;
    object-fit: cover;
}

.feature-list {
    display: grid;
    gap: 18px;
    margin: 30px 0
}

.feature {
    padding: 20px 0;
    border-top: 1px solid #cfcfcb
}

.cta {
    background: var(--muted);
    color: var(--bg);
    padding: 75px 0;
    margin-top: 20px;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px
}

.cta h2 {
    margin: 0
}

.page-hero {
    padding: 65px 0 15px
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 4rem)
}

.portfolio-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 35px
}

.filter-btn {
    background: transparent;
    border: 1px solid #aaa;
    border-radius: 5px;
    padding: 10px 16px;
    cursor: pointer
}

.filter-btn.active {
    background: var(--text);
    color: #fff;
    border-color: var(--text)
}

.gallery {
    columns: 3;
    column-gap: 18px
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
    background: #ddd;
    margin: 18px;
}

.gallery-item img {
    width: 100%;
    transition: .4s
}

.gallery-item:hover img {
    transform: scale(1.025)
}

.gallery-item.hidden {
    display: none
}

.guide-grid,
.spot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px
}

.info-card {
    background: var(--surface);
    padding: 40px;
    border-radius: 5px;
}

.info-card ul {
    padding-left: 19px
}

.spot-card {
    background: var(--surface)
}

.spot-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover
}

.spot-card-content {
    padding: 28px
}

.tag {
    display: inline-block;
    background: #e5eef2;
    color: var(--blue);
    padding: 5px 9px;
    border-radius: 5px;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-align: center;
}

.coming-soon {
    padding: 25px;
    border-left: 3px solid var(--orange);
    background: #f7eadc
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 70px;
    margin-bottom: 20px;
}

.contact-details {
    display: grid;
    gap: 20px;
    margin-top: 35px
}

.contact-form {
    background: #fff;
    padding: 45px;
    border-radius: 5px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.field {
    display: grid;
    gap: 7px;
    margin-bottom: 20px
}

.field label {
    font-size: .85rem;
    font-weight: 600
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #bdbdb8;
    background: #fafafa
}

.field textarea {
    min-height: 160px;
    resize: vertical
}

.check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .84rem;
    margin: 15px 0 25px
}

.form-status {
    margin-top: 16px;
    padding: 12px;
    display: none
}

.form-status.show {
    display: block;
    background: #e7f2e9
}

.notice {
    font-size: .8rem;
    color: var(--muted)
}

.site-footer {
    background: var(--grey);
    color: var(--text);
    padding: 25px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.footer-logo {
    width: 220px;
    margin: 0;
}

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 20px;
    padding-top: 10px;
    display: flex;
    justify-content: center;
    color: #888;
    font-size: .8rem;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .93);
    z-index: 100;
    display: none;
    place-items: center;
    padding: 50px
}

.lightbox.open {
    display: grid
}

.lightbox img {
    max-height: 88vh;
    max-width: 90vw
}

.lightbox-close {
    position: absolute;
    right: 25px;
    top: 15px;
    color: white;
    background: none;
    border: 0;
    font-size: 2.4rem;
    cursor: pointer
}

@media(max-width:900px) {
    .menu-toggle {
        display: block
    }

    .nav-links {
        position: absolute;
        top: calc(100% - 10px);
        left: 0;
        right: auto;

        width: min(320px, calc(100vw - 40px));

        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        padding: 12px 0;

        background: var(--bg);
        border: 1px solid rgba(30, 30, 30, 0.1);
        box-shadow: 0 14px 30px rgba(30, 30, 30, 0.14);

        z-index: 100;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 20px;
    }

    .nav-links a:hover {
        background: rgba(30, 30, 30, 0.05);
    }

    .nav-links .nav-cta {
        width: auto;
        margin: 12px 20px 6px;
        justify-content: center;
    }

    .nav-links.open {
        display: flex
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a.active {
        color: var(--orange);
        font-weight: 600;
    }

    .cards {
        grid-template-columns: 1fr
    }

    .split,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 20px;
    }

    .gallery {
        columns: 2
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column
    }

    .section {
        padding: 10px 0
    }

    .section.extended {
        margin-top: 10px;
    }

    .brand img {
        width: 115px
    }
}

@media(max-width:620px) {
    .container {
        width: min(calc(100% - 28px), var(--max))
    }

    .nav {
        height: 76px
    }

    .hero {
        min-height: calc(100vh - 376px)
    }

    .hero-content {
        padding: 65px 20px
    }

    .gallery {
        columns: 1
    }

    .guide-grid,
    .spot-grid,
    .field-row {
        grid-template-columns: 1fr
    }

    .section {
        padding: 10px 0
    }

    .section.extended {
        margin-top: 10px;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px
    }

    .contact-form {
        padding: 25px
    }

    .page-hero {
        padding-top: 70px
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--surface);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-radius: 5px;

    display: flex;
    flex-direction: column;
    height: 100%;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.pricing-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.pricing-content {
    padding: 2rem;

    display: flex;
    flex-direction: column;
    flex: 1;
}

.pricing-content h2 {
    margin: 18px 0 5px;
    font-size: 2rem;
}

.price {
    margin: 10px 0;
    color: var(--orange);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.1;
}

.subtitle {
    margin: 0 0 1rem;
    color: var(--muted);
}

.pricing-content ul {
    margin: 1rem 0 1.5rem;
    padding-left: 1.2rem;
}

.pricing-content li {
    margin-bottom: 0.5rem;
}

.pricing-content p {
    color: var(--muted);
}

.pricing-content small {
    display: block;
    margin-top: auto;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;

    color: var(--muted);
    line-height: 1.5;
}

.pricing-content .btn {
    width: 100%;
    margin-top: 0;
    text-align: center;
}

/* Tablet */

@media (max-width: 1000px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Smartphone */

@media (max-width: 700px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card img {
        height: 230px;
    }

    .pricing-content {
        padding: 1.5rem;
    }

    .price {
        font-size: 2.4rem;
    }
}

.icon {
    color: var(--orange);
    margin-right: 8px;
}

.info-card-icon {
    color: var(--orange);
    font-size: 1.7rem;
    margin-bottom: 18px;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.pricing-features i {
    color: var(--orange);
    font-size: 1.1rem;
}

.guide-highlight {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-bottom: 40px;
    padding: 25px 30px;

    background: #f7eadc;
    border-left: 3px solid var(--orange);
}

.guide-highlight i {
    color: var(--orange);
    font-size: 1.8rem;
}

.guide-highlight p {
    margin: 0;
}