/* Carpatiya — design tokens */
:root {
    --pine-900: #1f3b2c;
    --pine-700: #3a5a44;
    --pine-500: #587a63;
    --parchment: #efe7d6;
    --parchment-dark: #e3d9c2;
    --cranberry: #7c2d2d;
    --cranberry-dark: #641f1f;
    --ochre: #b9852e;
    --charcoal: #2a2620;
    --card-bg: #fffdf8;
    --line: rgba(42, 38, 32, 0.14);

    --font-display: "Bitter", Georgia, serif;
    --font-body: "Manrope", -apple-system, "Segoe UI", sans-serif;

    --radius: 6px;
    --shadow: 0 1px 2px rgba(31, 59, 44, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    margin: 0;
    background: var(--parchment);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-display);
    color: var(--pine-900);
    margin: 0;
    line-height: 1.15;
}

p {
    margin: 0;
}

a {
    color: inherit;
}

img, svg {
    display: block;
    max-width: 100%;
}

button, input, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

:focus-visible {
    outline: 3px solid var(--ochre);
    outline-offset: 2px;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hutsul-pattern divider — a woven zigzag band between major sections */
.pattern-divider {
    height: 18px;
    background-color: var(--parchment);
    background-image:
        linear-gradient(135deg, var(--ochre) 25%, transparent 25.5%),
        linear-gradient(225deg, var(--ochre) 25%, transparent 25.5%),
        linear-gradient(45deg, var(--ochre) 25%, transparent 25.5%),
        linear-gradient(315deg, var(--ochre) 25%, transparent 25.5%);
    background-position: 0 0, 9px 0, 9px 0, 0 0;
    background-size: 18px 18px;
    background-repeat: repeat-x;
}

/* Header */
.site-header {
    background: var(--parchment);
    border-bottom: 1px solid var(--line);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--pine-900);
    text-decoration: none;
    letter-spacing: 0.2px;
}

.logo-mark {
    display: block;
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-links {
    display: flex;
    gap: 24px;
    font-size: 15px;
}

.header-links a {
    text-decoration: none;
    color: var(--charcoal);
}

.header-links a:hover {
    color: var(--pine-900);
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    line-height: 1;
}

.btn-primary {
    background: var(--cranberry);
    color: var(--parchment);
}

.btn-primary:hover {
    background: var(--cranberry-dark);
}

.btn-ghost {
    background: transparent;
    border-color: var(--pine-900);
    color: var(--pine-900);
}

.btn-ghost:hover {
    background: var(--pine-900);
    color: var(--parchment);
}

.lang-switch {
    display: flex;
    gap: 4px;
    margin-right: 8px;
}

.lang-switch-item {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pine-700);
    text-decoration: none;
}

.lang-switch-item.is-active {
    background: var(--pine-900);
    color: var(--parchment);
}

/* Hero */
.hero {
    position: relative;
    background: var(--pine-900);
    overflow: hidden;
    padding: 72px 0 132px;
}

.hero-ridgeline {
    position: absolute;
    inset: auto 0 0 0;
    width: 100%;
    height: auto;
    line-height: 0;
}

.hero-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 110px;
}

.hero-content {
    flex: 1 1 460px;
    max-width: 520px;
}

.hero-collage {
    position: relative;
    z-index: 2;
    flex: 1 1 420px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1.6fr 1fr;
    gap: 10px;
    height: 320px;
}

.hero-collage-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--pine-700);
}

.hero-collage-item:first-child {
    grid-column: 1 / 4;
    grid-row: 1;
}

.hero-collage-item:not(:first-child) {
    grid-row: 2;
}

.hero-collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.hero-collage-item:hover img {
    transform: scale(1.04);
}

.hero-collage-watermark {
    width: 100%;
    height: 100%;
    padding: 22%;
    box-sizing: border-box;
    stroke: rgba(239, 231, 214, 0.35);
}

.hero-collage-item::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 55%;
    background: linear-gradient(to top, rgba(15, 26, 19, 0.75), transparent);
    pointer-events: none;
}

.hero-collage-caption {
    position: absolute;
    left: 10px;
    bottom: 8px;
    z-index: 1;
    color: var(--parchment);
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-eyebrow {
    color: var(--ochre);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 19px;
    margin-bottom: 10px;
}

.hero h1 {
    color: var(--parchment);
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 600;
    max-width: 20ch;
}

.hero-sub {
    color: var(--parchment);
    opacity: 0.82;
    font-size: 18px;
    margin-top: 18px;
    max-width: 60ch;
}

/* Search card */
.search-card {
    position: relative;
    z-index: 3;
    margin: -84px auto 0;
    max-width: 1040px;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(31, 59, 44, 0.22);
    padding: 22px;
}

.search-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: visible;
}

.search-field {
    position: relative;
    padding: 12px 18px;
    border-right: 1px solid var(--line);
}

.search-field:last-of-type {
    border-right: none;
}

.search-field label {
    display: block;
    font-size: 12.5px;
    color: var(--pine-700);
    font-weight: 700;
    margin-bottom: 4px;
}

.search-field input {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 15px;
    color: var(--charcoal);
    padding: 0;
}

.search-field input:focus {
    outline: none;
}

.search-field input::placeholder {
    color: #8a8271;
}

.guests-trigger {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    font-size: 15px;
    cursor: pointer;
}

.guests-panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 300px;
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 24px rgba(31, 59, 44, 0.18);
    padding: 16px;
    z-index: 10;
}

.guests-panel.is-open {
    display: block;
}

.guests-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.guests-row + .guests-row {
    border-top: 1px solid var(--line);
}

.guests-row-label {
    font-size: 15px;
}

.guests-row-hint {
    font-size: 12.5px;
    color: var(--pine-700);
}

.stepper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stepper button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--pine-900);
    background: var(--card-bg);
    color: var(--pine-900);
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
}

.stepper button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.stepper span {
    min-width: 18px;
    text-align: center;
    font-weight: 700;
}

.search-submit {
    background: var(--cranberry);
    color: var(--parchment);
    border: none;
    font-weight: 700;
    font-size: 16px;
    padding: 0 32px;
    cursor: pointer;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.search-submit:hover {
    background: var(--cranberry-dark);
}

/* Sections */
.section {
    padding: 72px 0;
}

.section-head {
    max-width: 640px;
    margin-bottom: 40px;
}

.section-head h2 {
    font-size: 30px;
}

.section-head p {
    margin-top: 10px;
    color: var(--pine-700);
    font-size: 16px;
}

/* Destination tiles */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.destination-tile {
    position: relative;
    border-radius: var(--radius);
    padding: 26px 20px;
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    color: var(--parchment);
    overflow: hidden;
}

.destination-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35) 100%);
}

.destination-tile span {
    position: relative;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
}

.destination-tile small {
    position: relative;
    font-size: 13px;
    opacity: 0.85;
    margin-top: 2px;
}

.tile-pine { background: var(--pine-900); }
.tile-cranberry { background: var(--cranberry); }
.tile-ochre { background: var(--ochre); color: var(--charcoal); }
.tile-pine-light { background: var(--pine-700); }

.catalog-filters {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.catalog-filters label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--pine-700);
    font-weight: 600;
}

.catalog-filters input,
.catalog-filters select {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 15px;
    background: var(--card-bg);
    min-width: 220px;
}

.catalog-filters .btn {
    align-self: flex-end;
}

/* Property cards */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.property-card {
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.property-card-media {
    height: 140px;
    background: linear-gradient(135deg, var(--pine-700), var(--pine-900));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.property-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-card-watermark {
    width: 64px;
    height: 64px;
    stroke: var(--parchment);
    opacity: 0.22;
}

.property-card-type {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--card-bg);
    color: var(--pine-900);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
}

.property-card-body {
    padding: 18px;
}

.property-card-body h3 {
    font-size: 18px;
}

.property-card-location {
    color: var(--pine-700);
    font-size: 14px;
    margin-top: 4px;
}

.property-card-price {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 14px;
}

.property-card-price strong {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--pine-900);
}

.empty-note {
    color: var(--pine-700);
    font-size: 15px;
}

/* Why us */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.trust-item svg {
    width: 30px;
    height: 30px;
    stroke: var(--cranberry);
    margin-bottom: 14px;
}

.trust-item h3 {
    font-size: 17px;
}

.trust-item p {
    margin-top: 8px;
    color: var(--pine-700);
    font-size: 14.5px;
}

/* Footer */
.site-footer {
    background: var(--pine-900);
    color: var(--parchment);
    padding: 48px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
}

.footer-grid h4 {
    font-family: var(--font-display);
    color: var(--parchment);
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-grid p, .footer-grid a {
    color: var(--parchment);
    opacity: 0.75;
    font-size: 14.5px;
    text-decoration: none;
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(239, 231, 214, 0.18);
    font-size: 13px;
    opacity: 0.6;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.blog-category-pill {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--card-bg);
    text-decoration: none;
    font-size: 14px;
    color: var(--pine-700);
}

.blog-category-pill.is-active {
    background: var(--pine-900);
    border-color: var(--pine-900);
    color: var(--parchment);
}

.post-body {
    max-width: 720px;
    margin-top: 24px;
    color: var(--charcoal);
    line-height: 1.7;
}

/* Property detail page */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--pine-700);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--pine-700);
}

.breadcrumb a:hover {
    color: var(--pine-900);
}

.breadcrumb-home {
    display: flex;
}

.breadcrumb-home svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.breadcrumb-sep {
    color: var(--line);
}

.breadcrumb-current {
    color: var(--charcoal);
}

.property-profile-block {
    margin-top: 28px;
    max-width: 720px;
}

.property-profile-block h2 {
    font-size: 20px;
}

.property-profile-block p {
    margin-top: 10px;
    color: var(--charcoal);
}

.price-package {
    margin-bottom: 28px;
}

.price-package:last-child {
    margin-bottom: 0;
}

.price-package h3 {
    font-size: 18px;
}

.price-package-dates {
    color: var(--pine-700);
    font-size: 14px;
    margin-top: 4px;
    margin-bottom: 12px;
}

.price-package-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.price-package-table th,
.price-package-table td {
    text-align: left;
    padding: 10px 16px;
    border-bottom: 1px solid var(--line);
    font-size: 14.5px;
}

.price-package-table thead th {
    background: var(--parchment-dark);
    font-weight: 700;
    color: var(--pine-900);
}

.price-package-table tbody tr:last-child td {
    border-bottom: none;
}

.property-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
    border-radius: var(--radius);
    overflow: hidden;
}

.property-gallery-main {
    height: 420px;
}

.property-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-gallery-thumbs {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    height: 420px;
}

.property-gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.property-gallery-placeholder {
    height: 320px;
    background: linear-gradient(135deg, var(--pine-700), var(--pine-900));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.property-gallery-placeholder svg {
    width: 84px;
    height: 84px;
    stroke: var(--parchment);
    opacity: 0.25;
}

.property-header {
    margin-bottom: 16px;
}

.property-header h1 {
    font-size: 32px;
    margin-top: 10px;
}

.property-location {
    color: var(--pine-700);
    font-size: 15px;
    margin-top: 8px;
}

.property-description {
    max-width: 720px;
    color: var(--charcoal);
    margin-top: 20px;
}

.property-amenities {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
}

.property-amenities li {
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 14px;
}

.room-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.room-type-card {
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.room-type-card-media {
    height: 160px;
}

.room-type-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-type-card-media-empty {
    background: linear-gradient(135deg, var(--pine-700), var(--pine-900));
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-type-card-media-empty svg {
    width: 48px;
    height: 48px;
    stroke: var(--parchment);
    opacity: 0.22;
}

.room-type-card-body {
    padding: 18px;
}

.room-type-card-body h3 {
    font-size: 18px;
}

.room-type-capacity {
    color: var(--pine-700);
    font-size: 14px;
    margin-top: 6px;
}

.room-type-cancellation {
    font-size: 13px;
    color: var(--pine-700);
    margin-top: 6px;
}

.room-type-book-btn {
    width: 100%;
    margin-top: 14px;
    border: none;
}

.room-type-book-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.room-type-book-btn:disabled:hover {
    background: var(--cranberry);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
}

.review-rating {
    color: var(--ochre);
    font-size: 16px;
    letter-spacing: 2px;
}

.review-text {
    margin-top: 10px;
    font-size: 14.5px;
}

.review-author {
    margin-top: 12px;
    color: var(--pine-700);
    font-size: 13px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .search-grid {
        grid-template-columns: 1fr;
    }
    .search-field {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }
    .search-submit {
        border-radius: var(--radius);
        padding: 16px;
        margin: 12px;
    }
    .destinations-grid,
    .properties-grid,
    .trust-grid,
    .room-types-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-top {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        margin-bottom: 40px;
    }
    .hero-content {
        flex: none;
        max-width: none;
    }
    .hero-collage {
        flex: none;
        height: 260px;
    }
    .property-gallery {
        grid-template-columns: 1fr;
    }
    .property-gallery-main,
    .property-gallery-thumbs {
        height: auto;
    }
    .property-gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: none;
    }
    .property-gallery-thumbs img {
        height: 90px;
    }
}

@media (max-width: 560px) {
    .header-links {
        display: none;
    }
    .destinations-grid,
    .properties-grid,
    .trust-grid,
    .room-types-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .property-gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }
    .search-card {
        margin-top: -60px;
        padding: 14px;
    }
    .hero {
        padding: 48px 0 108px;
    }
    .hero-top {
        margin-bottom: 64px;
    }
    .hero-collage {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr;
        height: 160px;
    }
    .hero-collage-item:first-child {
        grid-column: 1;
        grid-row: 1;
    }
    .hero-collage-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }
    .hero-collage-item:nth-child(3),
    .hero-collage-item:nth-child(4) {
        display: none;
    }
}

.widget-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 24px 0;
}

.widget-slider-track {
    display: flex;
    transition: transform 0.3s ease;
}

.widget-slider-slide {
    flex: 0 0 100%;
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
}

.widget-slider-slide img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.widget-slider-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: #fff;
}

.widget-slider-caption h3 {
    margin: 0 0 4px;
    color: inherit;
}

.widget-slider-caption p {
    margin: 0;
}

.widget-slider-prev,
.widget-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 20px;
    cursor: pointer;
}

.widget-slider-prev { left: 12px; }
.widget-slider-next { right: 12px; }

.widget-slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.widget-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    padding: 0;
}

.widget-slider-dot.is-active {
    background: #fff;
}

.booking-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.booking-modal-overlay.is-open {
    display: flex;
}

.booking-modal {
    background: var(--parchment);
    padding: 28px;
    border-radius: var(--radius);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.booking-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: var(--pine-900);
}

.booking-form-row {
    margin-bottom: 14px;
}

.booking-form-row label {
    display: block;
    font-size: 14px;
    color: var(--pine-900);
}

.booking-form-row input,
.booking-form-row select,
.booking-form-row textarea {
    display: block;
    width: 100%;
    margin-top: 4px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
}

.booking-form-row textarea {
    min-height: 80px;
}

.booking-form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.inquiry-banner {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin: 16px 0;
    font-size: 15px;
}

.inquiry-banner-success {
    background: #e6f4ea;
    color: #1e6b3a;
}

.inquiry-banner-error {
    background: #fbe7e7;
    color: #a33;
}
