:root {
    --primary: #3f2c24;
    --primary-dark: #2b1e18;
    --secondary: #a77b52;
    --secondary-light: #c6a27c;
    --cream: #f5f0e8;
    --cream-dark: #e8dfd2;
    --white: #ffffff;
    --text: #2f2926;
    --text-light: #716862;
    --border: #e4ddd4;
    --success: #2f7046;
    --shadow: 0 20px 60px rgba(54, 40, 32, 0.12);
    --small-shadow: 0 10px 35px rgba(54, 40, 32, 0.08);
    --radius: 18px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

body,
button,
input,
select,
textarea {
    font-family: "DM Sans", Arial, sans-serif;
}

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

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

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

button {
    cursor: pointer;
}

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

.section {
    padding: 110px 0;
}

.section-label {
    margin: 0 0 14px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin-top: 0;
    color: var(--primary-dark);
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.15;
}

h1 {
    font-size: clamp(48px, 6vw, 84px);
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(36px, 4vw, 55px);
}

h3 {
    font-size: 27px;
}

p {
    margin-top: 0;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(35, 25, 20, 0.92);
    backdrop-filter: blur(12px);
}

.header-container {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
}

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.logo-symbol {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--secondary-light);
    border-radius: 50%;
    color: var(--secondary-light);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 27px;
    font-weight: 700;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    color: var(--white);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    letter-spacing: 0.3px;
}

.logo-text small {
    margin-top: 7px;
    color: var(--secondary-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-navigation > a {
    position: relative;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 500;
}

.main-navigation > a:not(.header-book-button)::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    background: var(--secondary-light);
    content: "";
    opacity: 0;
    transform: scaleX(0);
    transition: 0.25s ease;
}

.main-navigation > a:hover::after,
.main-navigation > a.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.main-navigation > a:hover,
.main-navigation > a.active {
    color: var(--white);
}

.header-book-button {
    padding: 13px 22px;
    border: 1px solid var(--secondary-light);
    border-radius: 4px;
    transition: 0.25s ease;
}

.header-book-button:hover {
    background: var(--secondary);
    color: var(--white);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    padding: 8px;
    border: 0;
    background: transparent;
}

.mobile-menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 6px 0;
    background: var(--white);
}

.hero-section {
    position: relative;
    display: flex;
    min-height: 760px;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            110deg,
            rgba(34, 23, 18, 0.96),
            rgba(55, 36, 27, 0.76)
        ),
        radial-gradient(
            circle at 75% 35%,
            rgba(168, 122, 80, 0.45),
            transparent 42%
        ),
        var(--primary-dark);
}

.hero-section::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    background:
        linear-gradient(
            145deg,
            rgba(166, 121, 79, 0.28),
            rgba(40, 27, 21, 0.15)
        );
    clip-path: polygon(23% 0, 100% 0, 100% 100%, 0 100%);
    content: "";
}

.hero-section::after {
    position: absolute;
    top: 170px;
    right: 9%;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(207, 172, 135, 0.25);
    border-radius: 50%;
    content: "";
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        );
    background-size: 45px 45px;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 100px;
    padding-bottom: 150px;
}

.hero-content h1 {
    max-width: 850px;
    margin-bottom: 30px;
    color: var(--white);
}

.hero-text {
    max-width: 660px;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 19px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.primary-button,
.outline-button,
.light-button,
.transparent-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 14px 27px;
    border-radius: 4px;
    font-weight: 700;
    transition: 0.25s ease;
}

.primary-button {
    border: 1px solid var(--secondary);
    background: var(--secondary);
    color: var(--white);
}

.primary-button:hover {
    border-color: var(--secondary-light);
    background: var(--secondary-light);
    transform: translateY(-2px);
}

.outline-button {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: var(--white);
}

.outline-button:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--primary-dark);
}

.hero-statistics {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(29, 20, 16, 0.82);
    backdrop-filter: blur(12px);
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.statistic-item {
    padding: 25px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.statistic-item:last-child {
    border-right: 0;
}

.statistic-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--secondary-light);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 26px;
}

.statistic-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.booking-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -1px;
    padding: 35px 0 0;
    background: var(--cream);
}

.booking-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.booking-heading {
    display: flex;
    margin-bottom: 22px;
    align-items: center;
    justify-content: space-between;
}

.booking-heading span {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.booking-heading h2 {
    margin: 0;
    font-size: 28px;
}

.booking-form {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 0.8fr 0.8fr auto;
    align-items: end;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 54px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 5px;
    outline: none;
    background: var(--white);
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(167, 123, 82, 0.1);
}

.availability-button {
    height: 54px;
    padding: 0 24px;
    border: 1px solid var(--primary);
    border-radius: 5px;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    transition: 0.25s ease;
    white-space: nowrap;
}

.availability-button:hover {
    border-color: var(--secondary);
    background: var(--secondary);
}

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

.section-heading {
    display: grid;
    margin-bottom: 55px;
    grid-template-columns: 1fr 0.8fr;
    align-items: end;
    gap: 70px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.section-introduction {
    margin-bottom: 8px;
    color: var(--text-light);
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.hotel-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--small-shadow);
    transition: 0.3s ease;
}

.hotel-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.hotel-image-wrapper {
    position: relative;
    height: 360px;
    overflow: hidden;
}

.hotel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.hotel-card:hover .hotel-image {
    transform: scale(1.04);
}

.hotel-image-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    background:
        linear-gradient(
            135deg,
            rgba(48, 32, 24, 0.94),
            rgba(133, 92, 57, 0.82)
        );
    color: rgba(255, 255, 255, 0.85);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
}

.hotel-placeholder-2 {
    background:
        linear-gradient(
            135deg,
            rgba(52, 42, 33, 0.94),
            rgba(121, 102, 78, 0.82)
        );
}

.placeholder-logo {
    display: grid;
    width: 80px;
    height: 80px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    color: var(--secondary-light);
    font-size: 44px;
}

.hotel-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.93);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hotel-card-content {
    padding: 34px;
}

.hotel-location {
    margin-bottom: 9px;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.hotel-card-content h3 {
    margin-bottom: 15px;
    font-size: 31px;
}

.hotel-description {
    min-height: 82px;
    color: var(--text-light);
}

.hotel-features {
    display: flex;
    margin: 24px 0;
    flex-wrap: wrap;
    gap: 8px;
}

.hotel-features span {
    padding: 7px 11px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: var(--cream);
    color: var(--text-light);
    font-size: 11px;
}

.hotel-card-footer {
    display: flex;
    padding-top: 22px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
}

.hotel-link {
    color: var(--primary);
    font-weight: 700;
}

.hotel-link:hover {
    color: var(--secondary);
}

.hotel-book-button {
    padding: 11px 19px;
    border-radius: 4px;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s ease;
}

.hotel-book-button:hover {
    background: var(--secondary);
}

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.about-image {
    position: relative;
    min-height: 560px;
}

.about-image-main {
    display: flex;
    height: 520px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    border-radius: var(--radius);
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(197, 160, 121, 0.36),
            transparent 34%
        ),
        linear-gradient(145deg, #31221b, #6f4b36);
    color: var(--white);
}

.large-letter {
    display: grid;
    width: 170px;
    height: 170px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    color: var(--secondary-light);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 100px;
}

.about-image-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
}

.about-experience-card {
    position: absolute;
    right: -35px;
    bottom: 0;
    width: 260px;
    padding: 26px;
    border-radius: 10px;
    background: var(--cream);
    box-shadow: var(--shadow);
}

.about-experience-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
}

.about-experience-card span {
    color: var(--text-light);
    font-size: 13px;
}

.about-content > p:not(.section-label) {
    color: var(--text-light);
}

.about-points {
    display: grid;
    margin-top: 38px;
    gap: 25px;
}

.about-point {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
}

.point-number {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--secondary);
    border-radius: 50%;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
}

.about-point strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-dark);
    font-size: 17px;
}

.about-point p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
}

.why-choose-section {
    background: var(--cream);
}

.center-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    min-height: 290px;
    padding: 32px 27px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    transition: 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--secondary-light);
    box-shadow: var(--small-shadow);
    transform: translateY(-5px);
}

.benefit-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--cream);
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
}

.benefit-card h3 {
    margin-bottom: 14px;
    font-size: 23px;
}

.benefit-card p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 14px;
}

.contact-banner {
    padding: 80px 0;
    background:
        linear-gradient(
            115deg,
            rgba(43, 30, 24, 0.98),
            rgba(94, 63, 44, 0.92)
        );
}

.contact-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.contact-banner h2 {
    max-width: 680px;
    margin-bottom: 16px;
    color: var(--white);
}

.contact-banner p:not(.section-label) {
    max-width: 670px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.light-label {
    color: var(--secondary-light);
}

.contact-banner-actions {
    display: flex;
    flex-shrink: 0;
    gap: 12px;
}

.light-button {
    border: 1px solid var(--white);
    background: var(--white);
    color: var(--primary-dark);
}

.light-button:hover {
    border-color: var(--secondary-light);
    background: var(--secondary-light);
    color: var(--primary-dark);
}

.transparent-button {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--white);
}

.transparent-button:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.site-footer {
    padding-top: 80px;
    background: #211713;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    padding-bottom: 60px;
    grid-template-columns: 1.5fr 0.7fr 0.9fr 1fr;
    gap: 55px;
}

.footer-company p {
    max-width: 350px;
    margin-top: 25px;
    font-size: 14px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-column h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 15px;
}

.footer-column a {
    font-size: 14px;
    transition: 0.2s ease;
}

.footer-column a:hover {
    color: var(--secondary-light);
}

.footer-column p {
    margin-bottom: 0;
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    padding: 24px 0;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
}

@media (max-width: 1100px) {
    .main-navigation {
        gap: 22px;
    }

    .booking-form {
        grid-template-columns: repeat(3, 1fr);
    }

    .availability-button {
        width: 100%;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .site-header {
        background: rgba(35, 25, 20, 0.98);
    }

    .mobile-menu-button {
        display: block;
    }

    .main-navigation {
        position: absolute;
        top: 86px;
        right: 0;
        left: 0;
        display: none;
        padding: 25px 20px;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        background: var(--primary-dark);
    }

    .main-navigation.menu-open {
        display: flex;
    }

    .main-navigation > a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .header-book-button {
        margin-top: 15px;
        text-align: center;
    }

    .hero-section {
        min-height: 790px;
    }

    .hero-section::after {
        display: none;
    }

    .hero-content {
        padding-top: 145px;
        padding-bottom: 230px;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .statistic-item:nth-child(2) {
        border-right: 0;
    }

    .statistic-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .booking-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .about-image {
        min-height: 500px;
    }

    .about-image-main {
        height: 460px;
    }

    .about-experience-card {
        right: 20px;
    }

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

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

    .section {
        padding: 75px 0;
    }

    .header-container {
        min-height: 76px;
    }

    .main-navigation {
        top: 76px;
    }

    .logo-symbol {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }

    .logo-text strong {
        font-size: 17px;
    }

    .logo-text small {
        font-size: 8px;
    }

    .hero-section {
        min-height: 820px;
    }

    .hero-content {
        padding-top: 130px;
        padding-bottom: 250px;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

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

    .statistic-item {
        padding: 18px 15px;
    }

    .statistic-item strong {
        font-size: 21px;
    }

    .statistic-item span {
        font-size: 11px;
    }

    .booking-card {
        padding: 22px 18px;
    }

    .booking-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .booking-heading h2 {
        margin-top: 6px;
    }

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

    .hotel-image-wrapper {
        height: 280px;
    }

    .hotel-card-content {
        padding: 25px 22px;
    }

    .hotel-description {
        min-height: auto;
    }

    .hotel-card-footer {
        align-items: stretch;
        flex-direction: column;
        gap: 15px;
    }

    .hotel-book-button {
        text-align: center;
    }

    .about-image {
        min-height: 460px;
    }

    .about-image-main {
        height: 420px;
    }

    .large-letter {
        width: 130px;
        height: 130px;
        font-size: 75px;
    }

    .about-image-title {
        font-size: 20px;
    }

    .about-experience-card {
        right: 10px;
        bottom: -15px;
        width: 235px;
    }

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

    .contact-banner {
        padding: 65px 0;
    }

    .contact-banner-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
