:root {
    --bg: #f6f2e9;
    --surface: #ffffff;
    --surface-2: #f1eadb;
    --text: #2c271f;
    --muted: #6f6558;
    --brand: #4d6f2c;
    --shadow: 0 10px 28px rgba(44, 39, 31, .08);
    --container: 1100px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, var(--bg), #faf8f2 55%, var(--bg));
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(246, 242, 233, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(44, 39, 31, 0.08);
}

.header-inner {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    position: relative;
    padding: .75rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text);
}

.brand-mark {
    width: 54px;
    height: 54px;
    object-fit: contain;
    display: block;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.08;
}

.brand-copy strong {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text);
}

.brand-copy small {
    font-size: 1.2rem;
    color: var(--muted);
}

.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 54px;
    padding: 0 1.3rem;
    border: 2px solid #2e4118;
    border-radius: 999px;
    background: #5e8531;
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.menu-toggle-icon {
    font-size: 1rem;
    line-height: 1;
}

.main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(280px, 100%);
    padding: .85rem;
    border-radius: 24px;
    background: #fffdf8;
    border: 1px solid rgba(44, 39, 31, 0.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
    flex-direction: column;
    gap: .35rem;
}

.main-nav.is-open {
    display: flex;
}

.main-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: .8rem 1rem;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
}

.main-nav a:hover {
    background: rgba(95, 135, 48, 0.10);
    color: #486a22;
}

/* HERO */

.page-hero {
    padding: 1rem 0 1rem;
}

.hero-card {
    background: linear-gradient(135deg, rgba(91, 192, 235, .14), rgba(244, 214, 78, .18)), var(--surface);
    border: 1px solid rgba(44, 39, 31, .08);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 360px;
}

.hero-copy {
    padding: clamp(1.4rem, 3vw, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: .4rem .75rem;
    border-radius: 999px;
    background: rgba(77, 111, 44, .12);
    color: var(--brand);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: 'Lato', sans-serif;
    line-height: 1.05;
    margin: 0;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    margin-top: .9rem;
    max-width: 12ch;
}

.hero-copy p {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 60ch;
}

.hero-visual {
    position: relative;
    min-height: 280px;
    background: url('images/carousel1.jpg') center/cover no-repeat;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .22));
}

.hero-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 1;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    padding: 1rem 1.1rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    max-width: 260px;
}

.hero-badge strong {
    display: block;
    margin-bottom: .25rem;
}

/* GENERAL SECTIONS */

.section {
    padding: 1rem 0 0;
}

.panel {
    background: var(--surface);
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(44, 39, 31, .08);
    overflow: hidden;
    margin-top: 1rem;
}

.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--surface-2);
    border-bottom: 1px solid rgba(44, 39, 31, .08);
}

.panel-head h2 {
    font-size: 1.2rem;
}

.panel-body {
    padding: 1.2rem;
}

.intro {
    text-align: center;
    color: var(--muted);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.intro a {
    color: var(--brand);
    font-weight: 700;
}

/* CARDS */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
}

.item-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(44, 39, 31, .08);
    display: flex;
    flex-direction: column;
}

.item-title {
    display: grid;
    place-items: center;
    padding: 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    background: #fff176;
    color: #241f13;
    text-align: center;
}

.item-image {
    aspect-ratio: 16 / 10;
    background: #faf8f2;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-image-cover {
    aspect-ratio: 4 / 3;
    padding: 0;
    overflow: hidden;
    background: #faf8f2;
}

.item-image-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-meta,
.item-spec,
.item-action {
    padding-left: 1rem;
    padding-right: 1rem;
}

.item-meta {
    padding-top: .8rem;
    text-align: center;
    color: var(--text);
    font-weight: 700;
}

.item-spec {
    padding-top: .3rem;
    text-align: center;
    color: var(--muted);
}

.item-action {
    margin-top: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: .8rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    background: var(--brand);
    color: #fff;
    transition: .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

/* CONTACT */

.contact-grid,
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.contact-box {
    background: #fff;
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(44, 39, 31, .08);
}

.contact-box p {
    line-height: 1.75;
    color: var(--muted);
    margin: 0 0 .9rem;
}

.contact-box strong {
    color: var(--text);
}

.small-note,
.muted-text {
    font-size: .95rem;
    color: var(--muted);
}

.contact-mail a {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--brand);
    text-decoration: none;
}

.contact-mail a:hover {
    text-decoration: underline;
}

.route-intro {
    margin-bottom: 1rem;
}

.map-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: var(--shadow);
    background: #f3efe4;
    aspect-ratio: 16 / 9;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* INFO BLOCKS */

.compact-gap {
    margin-top: 0.5rem;
}

.compact-list {
    margin: 0;
    padding-left: 1.2rem;
}

.compact-list li {
    margin-bottom: .5rem;
    line-height: 1.6;
}

.big-amount {
    font-size: 2rem;
    font-weight: 800;
    margin: .25rem 0 1rem;
}

.strong-note {
    font-weight: 700;
    line-height: 1.7;
    margin: 0;
}

/* PHOTO PAGE */

.photo-nav {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1rem;
}

.photo-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: .65rem 1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(44, 39, 31, .08);
    box-shadow: var(--shadow);
    font-weight: 700;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.photo-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow);
    background: #faf8f2;
}

.photo-grid-wide-first .wide-photo {
    grid-column: span 2;
    height: 320px;
}

/* FOOTER SPACE */

.footer-space {
    height: 2.5rem;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .hero-grid,
    .contact-grid,
    .two-column {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 240px;
    }
}

@media (max-width: 700px) {
    .header-inner {
        width: calc(100% - 20px);
        min-height: 86px;
    }

    .brand {
        gap: .75rem;
    }

    .brand-mark {
        width: 44px;
        height: 44px;
    }

    .brand-copy strong {
        font-size: 1.35rem;
    }

    .brand-copy small {
        font-size: .98rem;
    }

    .menu-toggle {
        min-height: 48px;
        padding: 0 1rem;
        font-size: .98rem;
    }

    .main-nav {
        width: min(240px, calc(100vw - 20px));
    }

    .photo-grid-wide-first .wide-photo {
        grid-column: span 1;
        height: 260px;
    }
}
.offer-form {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    font-weight: 700;
    color: var(--text);
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    min-height: 48px;
    padding: .85rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(44,39,31,.14);
    background: #fff;
    color: var(--text);
    font: inherit;
}

.form-field textarea {
    min-height: 140px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: rgba(77,111,44,.55);
    box-shadow: 0 0 0 4px rgba(77,111,44,.12);
}

.form-actions {
    margin-top: 1.25rem;
}

.form-success {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(77,111,44,.12);
    color: #2d4a14;
    font-weight: 700;
}

.form-error {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(170, 56, 42, .10);
    color: #8b2c22;
}

.form-error ul {
    margin: 0;
    padding-left: 1.2rem;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 800px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-field-full {
        grid-column: auto;
    }
}