:root {
    --red: #AC0E12;
    --ink: #1f1f1f;
    --muted: #666;
    --cream: #fff8ef;
    --paper: #fffdf8;
    --line: #eadfce;
    --green: #536b4f;
    --max: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
}

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

a {
    color: inherit;
}

.site-header {
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 248, .96);
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav {
    max-width: var(--max);
    margin: 0 auto;
    padding: 16px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.brand {
    font-weight: 700;
    letter-spacing: .03em;
    text-decoration: none;
    font-size: 1.15rem;
}

.nav-links {
    display: flex;
    gap: 22px;
    align-items: center;
    font-size: .96rem;
}

    .nav-links a {
        text-decoration: none;
    }

.nav-dropdown {
    position: relative;
    display: inline-block;
}

    .nav-dropdown > a {
        display: inline-block;
    }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -15px;
    min-width: 240px;
    background: white;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    padding: .5rem 0;
    z-index: 1000;
}

    .dropdown-menu a {
        display: block;
        padding: .75rem 1rem;
        text-decoration: none;
        color: inherit;
        transition: background .2s ease;
    }

        .dropdown-menu a:hover {
            background: #f7f3ec;
        }

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.button,
.nav-cta {
    display: inline-block;
    background: var(--red);
    color: white;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    border: 2px solid var(--red);
    transition: transform .15s ease, opacity .15s ease;
}

    .button:hover,
    .nav-cta:hover {
        transform: translateY(-1px);
        opacity: .92;
    }

    .button.secondary {
        background: white;
        color: var(--red);
        border: 2px solid white;
    }
        .button.secondary:hover {
            background: rgba(255,255,255,0.92);
            border-color: rgba(255,255,255,0.92);
            color: var(--red);
        }

/*.hero {
    color: white;
    min-height: 560px;
    display: flex;
    align-items: center;
}*/

.hero {
    position: relative;
    overflow: hidden;
    background: #1f1f1f;
}

    .hero,
    .hero h1,
    .hero p,
    .hero .eyebrow,
    .hero .service-area,
    .hero .quick-points {
        color: white;
    }

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.48);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
}
.home-hero {
    /*background: linear-gradient(rgba(0,0,0,.52), rgba(0,0,0,.42)), url("/content/images/homepage-hero.png") center/cover no-repeat;*/
    min-height: 680px;
}

.about-hero {
    background: linear-gradient(rgba(0,0,0,.52), rgba(0,0,0,.42)), url("/content/images/about-hero.jpg") center/cover no-repeat;
}

.faq-hero {
    background: linear-gradient(rgba(0,0,0,.52), rgba(0,0,0,.42)), url("/content/images/faq-hero.jpg") center/cover no-repeat;
}

.testimonials-hero {
    background: linear-gradient(rgba(0,0,0,.52), rgba(0,0,0,.42)), url("/content/images/testimonials-hero.jpg") center/cover no-repeat;
}

.classes-hero {
    background: linear-gradient(rgba(0,0,0,.52), rgba(0,0,0,.42)), url("/content/images/classes-hero2.jpg") center/cover no-repeat;
}


.faq-list {
    max-width: 860px;
    margin: 36px auto 0;
}

.faq-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 26px 30px;
    margin-bottom: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.035);
}

    .faq-item h2 {
        font-size: 1.45rem;
        letter-spacing: 0;
        margin-bottom: 10px;
    }

    .faq-item p,
    .faq-item ul {
        color: var(--muted);
        margin-bottom: 0;
    }

    .faq-item ul {
        margin-top: 10px;
    }
   
/*.hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 88px 22px;
    width: 100%;
}*/

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .78rem;
    font-weight: 700;
    margin-bottom: 18px;
}

h1,
h2,
h3 {
    line-height: 1.08;
    margin: 0 0 18px;
}

h1 {
    max-width: 850px;
    font-size: clamp(2.75rem, 7vw, 5.7rem);
    letter-spacing: -.04em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -.03em;
}

h3 {
    font-size: 1.38rem;
}

.hero p {
    max-width: 680px;
    font-size: 1.25rem;
    margin: 0 0 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 20px;
}

.quick-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    font-size: 1rem;
    opacity: .96;
}

.service-area {
    font-size: .98rem;
    opacity: .9;
}

section {
    padding: 76px 22px;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
}

.lead {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 760px;
}

.cream {
    background: var(--cream);
}

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

.card-grid,
.class-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 36px;
}

.card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.045);
}

.card-content {
    padding: 24px;
}

.card p {
    color: var(--muted);
    margin-bottom: 18px;
}

.image-placeholder {
    aspect-ratio: 4 / 3;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--muted);
    text-align: center;
    padding: 18px;
    font-size: .92rem;
}

.tag {
    display: inline-block;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: .82rem;
    color: var(--muted);
    margin: 0 6px 6px 0;
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 34px;
    counter-reset: step;
}

.step {
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px;
    position: relative;
}

    .step::before {
        counter-increment: step;
        content: counter(step);
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        background: var(--red);
        color: white;
        border-radius: 999px;
        font-weight: 700;
        margin-bottom: 16px;
    }

.included-list,
.option-list,
.area-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 28px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

    .included-list li,
    .option-list li,
    .area-list li {
        border-bottom: 1px solid var(--line);
        padding: 12px 0;
        font-size: 1.05rem;
    }

        .included-list li::before {
            content: "✓";
            color: var(--red);
            font-weight: 700;
            margin-right: 10px;
        }

.pricing-box,
.contact-box {
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 12px 30px rgba(0,0,0,.045);
}

    .pricing-box .price {
        font-size: 2.4rem;
        line-height: 1;
        font-weight: 700;
        color: var(--red);
        margin: 12px 0;
    }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 34px;
}

blockquote {
    margin: 0;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0,0,0,.04);
}

    blockquote p {
        margin-top: 0;
        font-size: 1.05rem;
    }

cite {
    font-style: normal;
    font-weight: 700;
    color: var(--red);
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.feature {
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
    text-align: center;
}

    .feature strong {
        display: block;
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .feature span {
        color: var(--muted);
        font-size: .95rem;
    }

.cta {
    background: var(--green);
    color: white;
    text-align: center;
}

    .cta p {
        max-width: 720px;
        margin: 0 auto 28px;
        font-size: 1.18rem;
        opacity: .96;
    }

.contact-box {
    max-width: 760px;
    margin: 34px auto 0;
    text-align: left;
    color: var(--ink);
}

    .contact-box p {
        color: var(--muted);
        margin: 0 0 14px;
    }

.footer {
    border-top: 1px solid var(--line);
    text-align: center;
    color: var(--muted);
    font-size: .94rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.social-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

.site-footer {
    background: var(--ink);
    color: white;
    padding: 54px 22px 26px;
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 38px;
    align-items: start;
}

.footer-brand h2 {
    margin: 0 0 12px;
    font-size: 1.7rem;
}

.footer-brand p {
    max-width: 420px;
    color: rgba(255,255,255,.78);
    margin: 0 0 16px;
}

.footer-email {
    color: white;
    font-weight: 700;
}

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

    .footer-links a,
    .social-link {
        color: rgba(255,255,255,.86);
        text-decoration: none;
    }

        .footer-links a:hover,
        .social-link:hover,
        .footer-email:hover {
            color: white;
        }

.footer-social {
    display: grid;
    gap: 16px;
    justify-items: start;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-icon {
    width: 18px;
    height: 18px;
}

.footer-button {
    display: inline-block;
    background: var(--red);
    color: white;
    text-decoration: none;
    padding: 11px 17px;
    border-radius: 999px;
    font-weight: 700;
}

.footer-bottom {
    max-width: var(--max);
    margin: 34px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.64);
    font-size: .92rem;
    text-align:center;
}

.travel-section .split {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.travel-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: 100%;
    min-width: 0;
    margin-top:30px;
}

    .travel-photo-grid .image-placeholder,
    .travel-photo-grid img {
        width: 100%;
        aspect-ratio: 1 / 1;
        border-radius: 18px;
        border: 1px solid var(--line);
        object-fit: cover;
        overflow: hidden;
        box-sizing: border-box;
    }


@media (max-width: 900px) {
    .travel-section .split {
        grid-template-columns: 1fr;
    }

    .travel-photo-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 850px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
    }

    .split,
    .card-grid,
    .class-grid,
    .steps,
    .included-list,
    .option-list,
    .area-list,
    .testimonial-grid,
    .feature-strip {
        grid-template-columns: 1fr;
    }

    .hero,
    .hero.home-hero {
        min-height: 520px;
    }

    section {
        padding: 58px 20px;
    }
}
