﻿:root {
    --bg: #f3f0e8;
    --surface: #fffdf8;
    --surface-strong: #0f2a22;
    --text: #17312a;
    --text-soft: #4a665f;
    --accent: #1f8f6a;
    --accent-dark: #14644b;
    --gold: #c9a75d;
    --ring: rgba(31, 143, 106, 0.2);
    --shadow: 0 18px 45px rgba(13, 32, 27, 0.12);
    --radius: 18px;
    --radius-lg: 28px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background:
        radial-gradient(circle at 10% 15%, rgba(201, 167, 93, 0.12) 0%, transparent 34%),
        radial-gradient(circle at 85% 6%, rgba(31, 143, 106, 0.12) 0%, transparent 32%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    width: min(1180px, calc(100% - 2.4rem));
    margin: 0 auto;
}

.top-ribbon {
    background: linear-gradient(90deg, #0f2a22, #1d4c3f);
    color: #f7f6f2;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    padding: 0.55rem 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(14px);
    background: rgba(243, 240, 232, 0.84);
    border-bottom: 1px solid rgba(23, 49, 42, 0.08);
    transition: all 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(243, 240, 232, 0.95);
    box-shadow: 0 8px 24px rgba(12, 29, 24, 0.08);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    text-decoration: none;
    color: var(--text);
    line-height: 1;
}

.logo-main {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    letter-spacing: 0.08em;
}

.logo-sub {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    color: var(--text-soft);
    margin-top: 0.28rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.96rem;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.3rem;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    background: linear-gradient(90deg, var(--accent), var(--gold));
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-cta,
.btn {
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.nav-cta {
    padding: 0.72rem 1.2rem;
    background: linear-gradient(120deg, var(--accent), #34a67f);
    color: #fff;
    box-shadow: 0 8px 18px rgba(31, 143, 106, 0.25);
}

.nav-cta:hover {
    transform: translateY(-2px);
}

.burger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(23, 49, 42, 0.14);
    background: #fffaf0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 19px;
    height: 2px;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger.toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.toggle span:nth-child(2) {
    opacity: 0;
}

.burger.toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    padding: 5.8rem 0 4.2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 2rem;
    align-items: stretch;
}

.hero-copy,
.hero-panel {
    border-radius: var(--radius-lg);
    padding: 2.3rem;
    box-shadow: var(--shadow);
}

.hero-copy {
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88)),
        url("https://images.unsplash.com/photo-1493238792000-8113da705763?q=80&w=1600&auto=format&fit=crop") center/cover;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.12;
    margin: 0.8rem 0 1rem;
    max-width: 16ch;
}

.hero p {
    color: var(--text-soft);
    max-width: 54ch;
}

.eyebrow {
    color: var(--accent-dark);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 800;
}

.hero-actions {
    margin-top: 1.7rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.btn {
    padding: 0.82rem 1.5rem;
}

.btn-primary {
    background: linear-gradient(120deg, var(--accent), #2ea37b);
    color: #fff;
    box-shadow: 0 10px 22px rgba(31, 143, 106, 0.24);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.85);
    color: var(--text);
    border: 1px solid rgba(23, 49, 42, 0.16);
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-panel {
    background: linear-gradient(180deg, var(--surface-strong), #173b31);
    color: #f2fbf7;
}

.hero-panel h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.55rem;
    margin-bottom: 1rem;
}

.hero-panel ul {
    list-style: none;
    display: grid;
    gap: 0.95rem;
}

.hero-panel li {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
}

.hero-panel strong {
    color: #ffffff;
    margin-right: 0.3rem;
}

.section-head {
    margin-bottom: 1.8rem;
}

.section-head h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.2;
    margin-top: 0.45rem;
}

.services {
    padding: 2.5rem 0 4.8rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.service-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(23, 49, 42, 0.1);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 35, 29, 0.16);
}

.service-image {
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
}

.service-body {
    padding: 1.35rem;
}

.service-body h3 {
    margin-bottom: 0.55rem;
    font-size: 1.15rem;
}

.service-body p {
    color: var(--text-soft);
}

.service-body a {
    display: inline-block;
    margin-top: 0.9rem;
    color: var(--accent-dark);
    text-decoration: none;
    font-weight: 700;
}

.process {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.step {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(23, 49, 42, 0.1);
    padding: 1.35rem;
    box-shadow: 0 10px 26px rgba(14, 33, 27, 0.08);
}

.step span {
    display: inline-block;
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 0.55rem;
}

.step h3 {
    margin-bottom: 0.45rem;
}

.step p {
    color: var(--text-soft);
}

.cta {
    padding: 1.5rem 0 5rem;
}

.cta-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.8rem;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(125deg, rgba(15, 42, 34, 0.95), rgba(24, 67, 56, 0.92)),
        url("https://images.unsplash.com/photo-1511919884226-fd3cad34687c?q=80&w=1600&auto=format&fit=crop") center/cover;
    box-shadow: 0 18px 40px rgba(8, 23, 18, 0.26);
}

.cta-wrap h2,
.cta-wrap p {
    color: #ecf6f2;
}

.booking {
    padding: 1.3rem 0 5.2rem;
}

.booking-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    align-items: stretch;
}

.booking-showcase {
    border-radius: var(--radius-lg);
    padding: 2rem;
    background:
        linear-gradient(148deg, rgba(14, 41, 33, 0.95), rgba(20, 62, 50, 0.88)),
        url("https://images.unsplash.com/photo-1489824904134-891ab64532f1?q=80&w=1600&auto=format&fit=crop") center/cover;
    color: #edf7f4;
    box-shadow: 0 20px 45px rgba(10, 26, 21, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.booking-showcase .eyebrow {
    color: #bde4d6;
}

.booking-showcase h2 {
    margin: 0.45rem 0 0.8rem;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.1;
}

.booking-showcase p {
    color: #d9ece5;
    max-width: 42ch;
}

.booking-pill-row {
    margin-top: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.booking-pill-row span {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    padding: 0.3rem 0.65rem;
}

.booking-mini-steps {
    margin-top: 1.25rem;
    display: grid;
    gap: 0.75rem;
}

.booking-mini-steps article {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 0.85rem;
}

.booking-mini-steps span {
    font-size: 0.72rem;
    font-weight: 800;
    color: #d5b774;
    letter-spacing: 0.12em;
}

.booking-mini-steps h3 {
    margin: 0.35rem 0 0.2rem;
    font-size: 1.03rem;
}

.booking-mini-steps p {
    color: #d3e7df;
    font-size: 0.9rem;
}

.booking-form {
    display: grid;
    gap: 0.85rem;
}

.booking-form-head {
    margin-bottom: 0.9rem;
}

.booking-form-head h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    margin-bottom: 0.2rem;
}

.booking-form-head p {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.booking-form-wrap {
    background: linear-gradient(180deg, #fffefe, #f7f5ef);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(23, 49, 42, 0.12);
    box-shadow: var(--shadow);
    padding: 1.6rem;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.field-row {
    display: grid;
    gap: 0.4rem;
}

.booking-form label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(23, 49, 42, 0.2);
    background: #fff;
    padding: 0.78rem 0.86rem;
    font: inherit;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--ring);
}

.inline-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.checkbox-row {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    margin-top: 0.15rem;
}

.checkbox-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 0.15rem;
}

.checkbox-row span {
    font-weight: 500;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.booking-submit {
    margin-top: 0.2rem;
    width: 100%;
    text-align: center;
}

.form-alert {
    border-radius: 12px;
    padding: 0.85rem 0.95rem;
    margin-bottom: 0.9rem;
    font-weight: 600;
    font-size: 0.92rem;
}

.form-alert-success {
    background: rgba(31, 143, 106, 0.12);
    border: 1px solid rgba(31, 143, 106, 0.32);
    color: #0f5a42;
}

.form-alert-error {
    background: rgba(167, 48, 54, 0.12);
    border: 1px solid rgba(167, 48, 54, 0.28);
    color: #7e2529;
}

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

.site-footer {
    margin-top: 0.8rem;
    padding: 3.3rem 0 1.4rem;
    background: #0f2a22;
    color: #e4efe9;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.site-footer h3,
.site-footer h4 {
    margin-bottom: 0.5rem;
}

.site-footer p {
    color: #bdd3ca;
}

.copy {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 1.3rem;
    padding-top: 1rem;
    text-align: center;
    color: #aac5bb;
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .hero-grid,
    .cards,
    .steps,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .booking-shell {
        grid-template-columns: 1fr;
    }

    .nav-cta {
        display: none;
    }

    .burger {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 1px);
        right: 1rem;
        width: min(300px, calc(100% - 2rem));
        background: #fff;
        border: 1px solid rgba(23, 49, 42, 0.12);
        border-radius: 14px;
        box-shadow: 0 16px 35px rgba(18, 41, 34, 0.14);
        padding: 1rem;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .nav-links.nav-active {
        display: flex;
    }
}

@media (max-width: 720px) {
    .top-ribbon {
        font-size: 0.68rem;
    }

    .hero {
        padding-top: 4.6rem;
    }

    .hero-copy,
    .hero-panel,
    .cta-wrap {
        padding: 1.35rem;
    }

    .cards,
    .steps,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .booking-showcase,
    .booking-form-wrap {
        padding: 1.25rem;
    }

    .field-grid,
    .inline-fields {
        grid-template-columns: 1fr;
    }

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