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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #f8f6f1;
    color: #25231f;
    line-height: 1.6;
}

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

button {
    font-family: inherit;
}

:root {
    --color-dark: #25231f;
    --color-dark-soft: #3a3731;
    --color-cream: #f8f6f1;
    --color-white: #ffffff;
    --color-gold: #b08a4a;
    --color-gold-dark: #96733c;
    --border-light: rgba(37, 35, 31, 0.12);
    --container-width: 1280px;
}

.site-header {
    width: 100%;
    position: relative;
    z-index: 1000;
    background: var(--color-white);
    border-bottom: 1px solid var(--border-light);
}

.navbar {
    max-width: var(--container-width);
    min-height: 90px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.brand-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
}

.brand-tagline {
    margin-top: 5px;
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--color-dark-soft);
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.book-button,
.mobile-book-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 11px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.book-button {
    min-height: 44px;
    padding: 0 22px;
}

.book-button:hover,
.mobile-book-button:hover {
    background: var(--color-gold-dark);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-light);
    background: transparent;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--color-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu {
    display: none;
}

.site-footer {
    padding: 30px;
    text-align: center;
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

@media (max-width: 1100px) {
    .nav-menu {
        gap: 16px;
    }

    .navbar {
        gap: 18px;
    }

    .nav-link {
        font-size: 12px;
    }
}

@media (max-width: 900px) {

    .nav-menu,
    .book-button {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar {
        min-height: 78px;
        padding: 0 20px;
    }

    .brand-name {
        font-size: 25px;
    }

    .mobile-menu {
        display: none;
        padding: 10px 20px 25px;
        background: var(--color-white);
        border-top: 1px solid var(--border-light);
    }

    .mobile-menu.open {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu>a:not(.mobile-book-button) {
        padding: 13px 0;
        border-bottom: 1px solid var(--border-light);
        font-size: 14px;
    }

    .mobile-book-button {
        margin-top: 18px;
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 15px;
    }

    .brand-name {
        font-size: 22px;
    }

    .brand-tagline {
        font-size: 7px;
        letter-spacing: 1.4px;
    }
}

.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../assets/images/hero.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(20, 18, 15, 0.78),
            rgba(20, 18, 15, 0.42),
            rgba(20, 18, 15, 0.25));
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container-width);
    padding: 80px 30px;
    color: var(--color-white);
}

.hero-subtitle {
    display: block;
    margin-bottom: 18px;
    color: #d6b77b;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 750px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 6vw, 82px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -1px;
}

.hero p {
    max-width: 560px;
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
}

.hero-primary-button,
.hero-secondary-button {
    min-height: 50px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero-primary-button {
    background: var(--color-gold);
    color: var(--color-white);
}

.hero-primary-button:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
}

.hero-secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: var(--color-white);
}

.hero-secondary-button:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

@media (max-width: 768px) {
    .hero {
        min-height: 620px;
        background-position: center;
    }

    .hero-content {
        padding: 70px 20px;
    }

    .hero h1 {
        font-size: clamp(45px, 12vw, 65px);
    }

    .hero p {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 250px;
    }

    .hero-primary-button,
    .hero-secondary-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 580px;
    }

    .hero-content {
        padding: 60px 15px;
    }

    .hero-subtitle {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: 45px;
    }
}

.availability-section {
    position: relative;
    z-index: 5;
    margin-top: -45px;
    padding: 0 30px;
}

.availability-container {
    max-width: 1180px;
    min-height: 100px;
    margin: 0 auto;
    padding: 20px 25px;
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1fr 1fr 0.9fr auto;
    align-items: end;
    gap: 15px;
    background: var(--color-white);
    box-shadow: 0 12px 40px rgba(37, 35, 31, 0.12);
}

.availability-item {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.availability-item label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--color-gold-dark);
}

.availability-item input,
.availability-item select {
    width: 100%;
    height: 43px;
    padding: 0 12px;
    border: 1px solid var(--border-light);
    outline: none;
    background: var(--color-cream);
    color: var(--color-dark);
    font-family: "Inter", sans-serif;
    font-size: 12px;
}

.availability-item input:focus,
.availability-item select:focus {
    border-color: var(--color-gold);
}

.availability-button {
    height: 43px;
    padding: 0 22px;
    border: none;
    background: var(--color-dark);
    color: var(--color-white);
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.availability-button:hover {
    background: var(--color-gold-dark);
}

@media (max-width: 1100px) {
    .availability-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .availability-button {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .availability-section {
        margin-top: -25px;
        padding: 0 15px;
    }

    .availability-container {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 16px;
    }

    .availability-item input,
    .availability-item select,
    .availability-button {
        height: 48px;
    }
}

.about-section {
    padding: 110px 30px;
    background: var(--color-cream);
}

.about-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.about-image {
    position: relative;
    height: 570px;
    overflow: hidden;
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-content {
    max-width: 560px;
}

.section-subtitle {
    display: block;
    margin-bottom: 16px;
    color: var(--color-gold-dark);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.about-content h2 {
    max-width: 500px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-dark);
}

.about-content p {
    margin-top: 20px;
    color: #625e56;
    font-size: 14px;
    line-height: 1.9;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 35px;
    padding: 25px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.about-highlight {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 15px;
    border-right: 1px solid var(--border-light);
}

.about-highlight:last-child {
    padding-left: 15px;
    padding-right: 0;
    border-right: none;
}

.about-highlight:nth-child(2) {
    padding-left: 15px;
}

.about-highlight strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--color-gold-dark);
}

.about-highlight span {
    font-size: 10px;
    line-height: 1.5;
    color: #625e56;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.about-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 32px;
    padding: 0 27px;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.3s ease;
}

.about-button:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .about-section {
        padding: 80px 20px;
    }

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

    .about-image {
        height: 500px;
    }

    .about-content {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 70px 15px;
    }

    .about-image {
        height: 400px;
    }

    .about-image::after {
        inset: 12px;
    }

    .about-highlights {
        gap: 10px;
    }

    .about-highlight strong {
        font-size: 25px;
    }

    .about-highlight span {
        font-size: 8px;
    }
}

.rooms-section {
    padding: 110px 30px;
    background: var(--color-white);
}

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

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

.section-heading h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 58px);
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-dark);
}

.section-heading p {
    max-width: 540px;
    margin: 18px auto 0;
    color: #625e56;
    font-size: 14px;
    line-height: 1.8;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.room-card {
    background: var(--color-cream);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(37, 35, 31, 0.12);
}

.room-image {
    position: relative;
    height: 310px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.room-label {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 11px;
    background: var(--color-gold);
    color: var(--color-white);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.2px;
}

.room-content {
    padding: 28px;
}

.room-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 31px;
    font-weight: 600;
    color: var(--color-dark);
}

.room-content > p {
    min-height: 50px;
    margin-top: 10px;
    color: #625e56;
    font-size: 12px;
    line-height: 1.7;
}

.room-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
    padding: 14px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.room-info span {
    padding-right: 9px;
    border-right: 1px solid var(--border-light);
    color: #625e56;
    font-size: 9px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.room-info span:last-child {
    padding-right: 0;
    border-right: none;
}

.room-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    margin-top: 22px;
}

.room-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    column-gap: 5px;
}

.room-price small {
    width: 100%;
    margin-bottom: 2px;
    color: #777168;
    font-size: 8px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.room-price strong {
    color: var(--color-gold-dark);
    font-size: 21px;
    font-weight: 600;
}

.room-price span {
    color: #777168;
    font-size: 9px;
}

.room-details {
    color: var(--color-dark);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 4px;
    white-space: nowrap;
}

.rooms-action {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.rooms-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.3s ease;
}

.rooms-button:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
}

@media (max-width: 1000px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .room-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 650px) {
    .rooms-section {
        padding: 80px 15px;
    }

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

    .room-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .room-image {
        height: 280px;
    }

    .room-content {
        padding: 24px;
    }
}

.amenities-section {
    padding: 110px 30px;
    background: var(--color-dark);
}

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

.amenities-section .section-heading {
    max-width: 700px;
}

.amenities-section .section-subtitle {
    color: #d6b77b;
}

.amenities-section .section-heading h2 {
    color: var(--color-white);
}

.amenities-section .section-heading p {
    color: rgba(255, 255, 255, 0.65);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 55px;
    background: rgba(255, 255, 255, 0.12);
}

.amenity-card {
    min-height: 250px;
    padding: 38px 35px;
    background: var(--color-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
}

.amenity-card:hover {
    background: #302d28;
}

.amenity-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border: 1px solid var(--color-gold);
    color: #d6b77b;
    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
}

.amenity-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--color-white);
}

.amenity-card p {
    max-width: 300px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    line-height: 1.8;
}

.amenities-action {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.amenities-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.amenities-button:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

@media (max-width: 900px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .amenities-section {
        padding: 80px 15px;
    }

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

    .amenity-card {
        min-height: 220px;
        padding: 30px;
    }
}

.dining-section {
    padding: 110px 30px;
    background: var(--color-cream);
}

.dining-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 80px;
}

.dining-image {
    position: relative;
    height: 570px;
    overflow: hidden;
}

.dining-image::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    pointer-events: none;
}

.dining-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.dining-content {
    max-width: 560px;
}

.dining-content h2 {
    max-width: 520px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-dark);
}

.dining-content > p {
    margin-top: 22px;
    color: #625e56;
    font-size: 14px;
    line-height: 1.9;
}

.dining-details {
    margin-top: 30px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.dining-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid var(--border-light);
}

.dining-detail:last-child {
    border-bottom: none;
}

.dining-detail span {
    color: var(--color-gold-dark);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.dining-detail strong {
    color: var(--color-dark-soft);
    font-size: 11px;
    font-weight: 500;
}

.dining-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 32px;
    padding: 0 27px;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dining-button:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .dining-section {
        padding: 80px 20px;
    }

    .dining-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .dining-image {
        height: 500px;
    }

    .dining-content {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .dining-section {
        padding: 70px 15px;
    }

    .dining-image {
        height: 400px;
    }

    .dining-image::after {
        inset: 12px;
    }

    .dining-detail {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }
}

.offers-section {
    padding: 110px 30px;
    background: var(--color-white);
}

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

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 55px;
}

.offer-card {
    background: var(--color-cream);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(37, 35, 31, 0.12);
}

.offer-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.offer-discount {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 8px 12px;
    background: var(--color-gold);
    color: var(--color-white);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
}

.offer-content {
    padding: 28px;
}

.offer-type {
    color: var(--color-gold-dark);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.offer-content h3 {
    margin-top: 8px;
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--color-dark);
}

.offer-content > p {
    min-height: 50px;
    margin-top: 10px;
    color: #625e56;
    font-size: 12px;
    line-height: 1.7;
}

.offer-features {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 22px;
    padding: 17px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.offer-features span {
    position: relative;
    padding-left: 15px;
    color: #625e56;
    font-size: 10px;
}

.offer-features span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    border: 1px solid var(--color-gold);
}

.offer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 22px;
    padding: 0 22px;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.offer-button:hover {
    background: var(--color-gold-dark);
}

.offers-action {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.offers-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border: 1px solid var(--color-dark);
    color: var(--color-dark);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.offers-button:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

@media (max-width: 950px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 650px) {
    .offers-section {
        padding: 80px 15px;
    }

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

    .offer-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .offer-image {
        height: 260px;
    }

    .offer-content {
        padding: 24px;
    }
}

.gallery-section {
    padding: 110px 0;
    background: #ffffff;
}

.gallery-container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

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

.gallery-section .section-heading p {
    max-width: 620px;
    margin: 18px auto 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 18px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-large {
    grid-row: span 2;
}

.gallery-action {
    text-align: center;
    margin-top: 45px;
}

.gallery-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 15px 28px;
    background: #25231f;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.gallery-button:hover {
    background: #b08a4a;
}

@media (max-width: 900px) {
    .gallery-section {
        padding: 85px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 240px);
    }

    .gallery-large {
        grid-row: span 2;
    }
}

@media (max-width: 600px) {
    .gallery-section {
        padding: 70px 0;
    }

    .gallery-container {
        width: min(100% - 30px, 1280px);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 240px);
        gap: 12px;
    }

    .gallery-large {
        grid-row: span 1;
    }

    .gallery-section .section-heading {
        margin-bottom: 35px;
    }
}

.reviews-section {
    padding: 110px 0;
    background: #f8f6f1;
}

.reviews-container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

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

.reviews-section .section-heading p {
    max-width: 620px;
    margin: 18px auto 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    padding: 40px 35px;
    background: #ffffff;
    border: 1px solid rgba(37, 35, 31, 0.1);
}

.review-rating {
    margin-bottom: 25px;
    color: #b08a4a;
    font-size: 16px;
    letter-spacing: 4px;
}

.review-text {
    min-height: 135px;
    margin-bottom: 30px;
    color: #5d5952;
    font-size: 15px;
    line-height: 1.9;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid rgba(37, 35, 31, 0.1);
}

.review-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: #25231f;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
}

.review-author strong {
    display: block;
    margin-bottom: 4px;
    color: #25231f;
    font-size: 14px;
}

.review-author span {
    color: #8a857d;
    font-size: 12px;
}

@media (max-width: 900px) {
    .reviews-section {
        padding: 85px 0;
    }

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

    .review-text {
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .reviews-section {
        padding: 70px 0;
    }

    .reviews-container {
        width: min(100% - 30px, 1280px);
    }

    .reviews-section .section-heading {
        margin-bottom: 35px;
    }

    .review-card {
        padding: 30px 25px;
    }
}

.location-section {
    padding: 110px 0;
    background: #ffffff;
}

.location-container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.location-content h2 {
    max-width: 520px;
    margin: 14px 0 22px;
    color: #25231f;
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
}

.location-content > p {
    max-width: 520px;
    color: #5d5952;
    font-size: 15px;
    line-height: 1.9;
}

.location-details {
    margin: 35px 0;
}

.location-detail {
    padding: 17px 0;
    border-bottom: 1px solid rgba(37, 35, 31, 0.1);
}

.location-detail:first-child {
    border-top: 1px solid rgba(37, 35, 31, 0.1);
}

.location-detail span {
    display: block;
    margin-bottom: 6px;
    color: #8a857d;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.location-detail strong {
    color: #25231f;
    font-size: 14px;
    font-weight: 500;
}

.location-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    background: #25231f;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.location-button:hover {
    background: #b08a4a;
}

.location-map {
    min-height: 500px;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 500px;
    display: block;
    border: 0;
    filter: grayscale(100%);
}

@media (max-width: 900px) {
    .location-section {
        padding: 85px 0;
    }

    .location-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .location-content h2 {
        font-size: 42px;
    }

    .location-map,
    .location-map iframe {
        height: 420px;
        min-height: 420px;
    }
}

@media (max-width: 600px) {
    .location-section {
        padding: 70px 0;
    }

    .location-container {
        width: min(100% - 30px, 1280px);
    }

    .location-content h2 {
        font-size: 36px;
    }

    .location-map,
    .location-map iframe {
        height: 350px;
        min-height: 350px;
    }
}

.final-cta-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: url("../assets/images/final-cta.jpg") center center / cover no-repeat;
    text-align: center;
}

.final-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(37, 35, 31, 0.88),
        rgba(37, 35, 31, 0.62)
    );
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.final-cta-content .section-subtitle {
    color: #d2b477;
}

.final-cta-content h2 {
    margin: 15px 0 22px;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    font-weight: 500;
    line-height: 1.08;
}

.final-cta-content p {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.8;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 35px;
}

.final-cta-primary,
.final-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    padding: 15px 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.final-cta-primary {
    background: #b08a4a;
    color: #ffffff;
}

.final-cta-primary:hover {
    background: #96733c;
}

.final-cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.final-cta-secondary:hover {
    background: #ffffff;
    color: #25231f;
}

@media (max-width: 900px) {
    .final-cta-section {
        min-height: 480px;
    }

    .final-cta-content h2 {
        font-size: 48px;
    }
}

@media (max-width: 600px) {
    .final-cta-section {
        min-height: 520px;
        padding: 80px 20px;
    }

    .final-cta-content h2 {
        font-size: 39px;
    }

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

    .final-cta-primary,
    .final-cta-secondary {
        width: 100%;
    }
}

.site-footer {
    background: #25231f;
    color: #ffffff;
    padding-top: 80px;
}

.footer-container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 55px;
    padding-bottom: 65px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 2px;
}

.footer-brand p {
    max-width: 300px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.9;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 11px;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    background: #b08a4a;
    border-color: #b08a4a;
}

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

.footer-column h3 {
    margin-bottom: 23px;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    font-weight: 500;
}

.footer-column a,
.footer-column p,
.footer-column span {
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.7;
    transition: 0.3s ease;
}

.footer-column a:hover {
    color: #d2b477;
}

.footer-contact p {
    max-width: 220px;
    margin-top: 0;
}

.footer-bottom {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom a:hover {
    color: #d2b477;
}

@media (max-width: 1000px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding-top: 60px;
    }

    .footer-container {
        width: min(100% - 30px, 1280px);
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 45px;
    }

    .footer-bottom {
        width: min(100% - 30px, 1280px);
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-links {
        gap: 18px;
    }
}

.rooms-page-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../assets/images/rooms-hero.jpg") center center / cover no-repeat;
    text-align: center;
}

.rooms-page-overlay {
    position: absolute;
    inset: 0;
    background: rgba(37, 35, 31, 0.58);
}

.rooms-page-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 40px 20px;
}

.rooms-page-content .hero-subtitle {
    color: #d2b477;
}

.rooms-page-content h1 {
    margin: 15px 0 20px;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 62px;
    font-weight: 500;
    line-height: 1.05;
}

.rooms-page-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
}

.rooms-intro-section {
    padding: 100px 0 65px;
    background: #ffffff;
    text-align: center;
}

.rooms-intro-container {
    width: min(760px, calc(100% - 40px));
    margin: 0 auto;
}

.rooms-intro-container h2 {
    margin: 14px 0 20px;
    color: #25231f;
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
}

.rooms-intro-container p {
    color: #5d5952;
    font-size: 15px;
    line-height: 1.9;
}

.rooms-list-section {
    padding: 30px 0 110px;
    background: #ffffff;
}

.rooms-list-container {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    gap: 35px;
}

.room-page-card {
    display: grid;
    grid-template-columns: 45% 55%;
    background: #f8f6f1;
    overflow: hidden;
}

.room-page-image {
    position: relative;
    min-height: 390px;
    overflow: hidden;
}

.room-page-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-page-card:hover .room-page-image img {
    transform: scale(1.04);
}

.room-page-label {
    position: absolute;
    top: 22px;
    left: 22px;
    padding: 8px 13px;
    background: #b08a4a;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.room-page-content {
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-page-type {
    color: #b08a4a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.room-page-content h2 {
    margin: 10px 0 15px;
    color: #25231f;
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    font-weight: 500;
}

.room-page-content > p {
    max-width: 520px;
    color: #5d5952;
    font-size: 14px;
    line-height: 1.85;
}

.room-page-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 25px;
    margin: 25px 0;
    padding: 18px 0;
    border-top: 1px solid rgba(37, 35, 31, 0.12);
    border-bottom: 1px solid rgba(37, 35, 31, 0.12);
}

.room-page-features span {
    color: #6c675f;
    font-size: 12px;
}

.room-page-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.room-page-price span {
    display: block;
    margin-bottom: 4px;
    color: #8a857d;
    font-size: 11px;
}

.room-page-price strong {
    color: #25231f;
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 600;
}

.room-page-price small {
    color: #8a857d;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 400;
}

.room-page-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    background: #25231f;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s ease;
}

.room-page-button:hover {
    background: #b08a4a;
}

@media (max-width: 900px) {
    .rooms-page-hero {
        min-height: 430px;
    }

    .rooms-page-content h1 {
        font-size: 50px;
    }

    .rooms-intro-section {
        padding: 80px 0 50px;
    }

    .rooms-intro-container h2 {
        font-size: 42px;
    }

    .room-page-card {
        grid-template-columns: 1fr;
    }

    .room-page-image {
        min-height: 350px;
    }
}

@media (max-width: 600px) {
    .rooms-page-hero {
        min-height: 400px;
    }

    .rooms-page-content h1 {
        font-size: 40px;
    }

    .rooms-intro-section {
        padding: 70px 0 40px;
    }

    .rooms-intro-container {
        width: min(100% - 30px, 760px);
    }

    .rooms-intro-container h2 {
        font-size: 36px;
    }

    .rooms-list-section {
        padding: 25px 0 70px;
    }

    .rooms-list-container {
        width: min(100% - 30px, 1100px);
    }

    .room-page-image {
        min-height: 270px;
    }

    .room-page-content {
        padding: 30px 25px;
    }

    .room-page-content h2 {
        font-size: 34px;
    }

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

    .room-page-button {
        width: 100%;
    }
}

.room-details-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.room-details-hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-details-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(37, 35, 31, 0.75), rgba(37, 35, 31, 0.25));
}

.room-details-hero-content {
    position: absolute;
    left: max(20px, calc((100% - 1280px) / 2));
    bottom: 70px;
    max-width: 700px;
}

.room-details-hero-content span {
    color: #d2b477;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
}

.room-details-hero-content h1 {
    margin-top: 14px;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 1.08;
}

.room-details-section {
    padding: 100px 0;
    background: #ffffff;
}

.room-details-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 80px;
    align-items: start;
}

.room-details-main h2 {
    max-width: 650px;
    margin: 14px 0 25px;
    color: #25231f;
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
}

.room-details-main > p {
    max-width: 700px;
    color: #5d5952;
    font-size: 15px;
    line-height: 1.9;
}

.room-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    border-top: 1px solid rgba(37, 35, 31, 0.12);
    border-bottom: 1px solid rgba(37, 35, 31, 0.12);
}

.room-overview div {
    padding: 22px 20px;
    border-right: 1px solid rgba(37, 35, 31, 0.12);
}

.room-overview div:last-child {
    border-right: 0;
}

.room-overview span,
.booking-card-info span {
    display: block;
    margin-bottom: 6px;
    color: #8a857d;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-overview strong,
.booking-card-info strong {
    color: #25231f;
    font-size: 14px;
    font-weight: 500;
}

.room-amenities {
    margin-top: 50px;
}

.room-amenities h3 {
    margin-bottom: 25px;
    color: #25231f;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 500;
}

.room-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 30px;
}

.room-amenities-grid span {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(37, 35, 31, 0.1);
    color: #5d5952;
    font-size: 13px;
}

.room-booking-card {
    position: sticky;
    top: 30px;
    padding: 35px;
    background: #f8f6f1;
    border: 1px solid rgba(37, 35, 31, 0.1);
}

.room-booking-card > span {
    display: block;
    margin-bottom: 8px;
    color: #8a857d;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.3px;
}

.room-booking-card > strong {
    color: #25231f;
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    font-weight: 600;
}

.room-booking-card > strong small {
    color: #8a857d;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 400;
}

.booking-card-line {
    margin: 25px 0;
    border-top: 1px solid rgba(37, 35, 31, 0.12);
}

.booking-card-info {
    padding: 14px 0;
    border-bottom: 1px solid rgba(37, 35, 31, 0.1);
}

.room-book-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 25px;
    padding: 16px;
    background: #25231f;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.room-book-button:hover {
    background: #b08a4a;
}

.room-booking-card > p {
    margin-top: 18px;
    color: #8a857d;
    font-size: 11px;
    line-height: 1.7;
    text-align: center;
}

.related-rooms-section {
    padding: 100px 0;
    background: #f8f6f1;
}

.related-rooms-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.related-rooms-section .section-heading {
    margin-bottom: 50px;
    text-align: center;
}

.related-rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.related-room-card {
    background: #ffffff;
}

.related-room-card > img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
}

.related-room-content {
    padding: 30px;
}

.related-room-content > span {
    color: #b08a4a;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.4px;
}

.related-room-content h3 {
    margin: 9px 0 12px;
    color: #25231f;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 500;
}

.related-room-content p {
    color: #5d5952;
    font-size: 13px;
    line-height: 1.8;
}

.related-room-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(37, 35, 31, 0.1);
}

.related-room-bottom strong {
    color: #25231f;
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
}

.related-room-bottom small {
    color: #8a857d;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 400;
}

.related-room-bottom a {
    color: #25231f;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.related-room-bottom a:hover {
    color: #b08a4a;
}

@media (max-width: 900px) {
    .room-details-hero {
        height: 450px;
    }

    .room-details-hero-content {
        bottom: 50px;
    }

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

    .room-details-section {
        padding: 80px 0;
    }

    .room-details-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .room-booking-card {
        position: static;
    }

    .related-rooms-section {
        padding: 80px 0;
    }
}

@media (max-width: 600px) {
    .room-details-hero {
        height: 400px;
    }

    .room-details-hero-content {
        left: 15px;
        right: 15px;
        bottom: 35px;
    }

    .room-details-hero-content h1 {
        font-size: 38px;
    }

    .room-details-container,
    .related-rooms-container {
        width: min(100% - 30px, 1200px);
    }

    .room-details-main h2 {
        font-size: 38px;
    }

    .room-overview {
        grid-template-columns: 1fr;
    }

    .room-overview div {
        border-right: 0;
        border-bottom: 1px solid rgba(37, 35, 31, 0.12);
    }

    .room-overview div:last-child {
        border-bottom: 0;
    }

    .room-amenities-grid {
        grid-template-columns: 1fr;
    }

    .room-booking-card {
        padding: 28px 22px;
    }

    .related-rooms-grid {
        grid-template-columns: 1fr;
    }

    .related-room-card > img {
        height: 250px;
    }
}

.booking-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    background: linear-gradient(rgba(37, 35, 31, 0.72), rgba(37, 35, 31, 0.72)), url("../assets/images/rooms-hero.jpg") center/cover no-repeat;
}

.booking-hero-content {
    max-width: 760px;
}

.booking-hero-content span,
.section-label {
    display: block;
    color: #b08a4a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.booking-hero-content h1 {
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    line-height: 1;
    margin: 0 0 20px;
}

.booking-hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.booking-section {
    padding: 100px 20px;
    background: #f8f6f1;
}

.booking-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 60px;
    align-items: start;
}

.booking-heading {
    margin-bottom: 28px;
}

.booking-heading h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    line-height: 1.1;
    color: #25231f;
    margin: 0 0 12px;
}

.booking-heading p {
    color: #6b675f;
    line-height: 1.7;
    margin: 0;
}

.booking-card {
    background: #ffffff;
    padding: 36px;
    border: 1px solid rgba(37, 35, 31, 0.12);
    margin-bottom: 55px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    color: #25231f;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 9px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(37, 35, 31, 0.16);
    background: #ffffff;
    color: #25231f;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    padding: 14px 15px;
    outline: none;
    transition: border-color 0.25s ease;
}

.form-group input,
.form-group select {
    height: 50px;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #b08a4a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9a968e;
}

.guest-heading {
    margin-top: 5px;
}

.booking-summary {
    position: sticky;
    top: 110px;
}

.summary-card {
    background: #ffffff;
    border: 1px solid rgba(37, 35, 31, 0.12);
    padding: 32px;
}

.summary-title {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(37, 35, 31, 0.12);
}

.summary-title h2 {
    font-family: "Cormorant Garamond", serif;
    color: #25231f;
    font-size: 34px;
    line-height: 1.1;
    margin: 0;
}

.summary-room {
    display: flex;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(37, 35, 31, 0.12);
}

.summary-room-image {
    width: 100px;
    height: 80px;
    flex-shrink: 0;
}

.summary-room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-room-info h3 {
    color: #25231f;
    font-size: 17px;
    margin: 5px 0 8px;
}

.summary-room-info p {
    color: #77736b;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.summary-details {
    padding: 24px 0;
    border-bottom: 1px solid rgba(37, 35, 31, 0.12);
}

.summary-details > div,
.summary-price > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 17px;
}

.summary-details > div:last-child,
.summary-price > div:last-child {
    margin-bottom: 0;
}

.summary-details span,
.summary-price span {
    color: #77736b;
    font-size: 13px;
}

.summary-details strong,
.summary-price strong {
    color: #25231f;
    font-size: 13px;
    font-weight: 600;
    text-align: right;
}

.summary-price {
    padding: 24px 0;
}

.summary-price .summary-total {
    padding-top: 20px;
    margin-top: 5px;
    border-top: 1px solid rgba(37, 35, 31, 0.12);
}

.summary-total span {
    color: #25231f;
    font-weight: 600;
}

.summary-total strong {
    color: #b08a4a;
    font-size: 20px;
}

.continue-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    background: #25231f;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.25s ease;
}

.continue-button:hover {
    background: #96733c;
}

.secure-text {
    color: #8a867e;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
    margin: 17px 0 0;
}

@media (max-width: 900px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .booking-summary {
        position: static;
    }

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

@media (max-width: 600px) {
    .booking-section {
        padding: 70px 16px;
    }

    .booking-hero {
        min-height: 350px;
        padding: 100px 20px 60px;
    }

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

    .booking-heading h2 {
        font-size: 36px;
    }

    .booking-card,
    .summary-card {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .summary-room-image {
        width: 85px;
        height: 70px;
    }
}

.payment-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    background: linear-gradient(rgba(37, 35, 31, 0.72), rgba(37, 35, 31, 0.72)), url("../assets/images/rooms-hero.jpg") center/cover no-repeat;
}

.payment-hero-content {
    max-width: 760px;
}

.payment-hero-content span {
    display: block;
    color: #b08a4a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
}

.payment-hero-content h1 {
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    line-height: 1;
    margin: 0 0 20px;
}

.payment-hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.payment-section {
    padding: 100px 20px;
    background: #f8f6f1;
}

.payment-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 60px;
    align-items: start;
}

.payment-heading {
    margin-bottom: 28px;
}

.payment-heading h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    line-height: 1.1;
    color: #25231f;
    margin: 0 0 12px;
}

.payment-heading p {
    color: #6b675f;
    line-height: 1.7;
    margin: 0;
}

.payment-card {
    background: #ffffff;
    border: 1px solid rgba(37, 35, 31, 0.12);
    padding: 36px;
}

.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(37, 35, 31, 0.12);
    cursor: pointer;
}

.payment-option:first-child {
    padding-top: 0;
}

.payment-option input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: #b08a4a;
    flex-shrink: 0;
}

.payment-option-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.payment-option-content strong {
    color: #25231f;
    font-size: 15px;
}

.payment-option-content small {
    color: #77736b;
    font-size: 12px;
    line-height: 1.6;
}

.payment-notice {
    margin: 28px 0;
    padding: 18px 20px;
    background: #f8f6f1;
    border-left: 3px solid #b08a4a;
}

.payment-notice strong {
    display: block;
    color: #25231f;
    font-size: 13px;
    margin-bottom: 6px;
}

.payment-notice p {
    color: #77736b;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}

.pay-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    background: #25231f;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.25s ease;
}

.pay-button:hover {
    background: #96733c;
}

.payment-summary {
    position: sticky;
    top: 110px;
}

.payment-summary-card {
    background: #ffffff;
    border: 1px solid rgba(37, 35, 31, 0.12);
    padding: 32px;
}

.payment-summary-title {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(37, 35, 31, 0.12);
}

.payment-summary-title h2 {
    font-family: "Cormorant Garamond", serif;
    color: #25231f;
    font-size: 34px;
    line-height: 1.1;
    margin: 0;
}

.payment-room {
    display: flex;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(37, 35, 31, 0.12);
}

.payment-room img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.payment-room h3 {
    color: #25231f;
    font-size: 17px;
    margin: 5px 0 8px;
}

.payment-room p {
    color: #77736b;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.payment-details {
    padding: 24px 0;
    border-bottom: 1px solid rgba(37, 35, 31, 0.12);
}

.payment-details > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 17px;
}

.payment-details > div:last-child {
    margin-bottom: 0;
}

.payment-details span {
    color: #77736b;
    font-size: 13px;
}

.payment-details strong {
    color: #25231f;
    font-size: 13px;
    font-weight: 600;
    text-align: right;
}

.payment-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
}

.payment-total span {
    color: #25231f;
    font-size: 14px;
    font-weight: 600;
}

.payment-total strong {
    color: #b08a4a;
    font-size: 22px;
}

@media (max-width: 900px) {
    .payment-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .payment-summary {
        position: static;
    }

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

@media (max-width: 600px) {
    .payment-section {
        padding: 70px 16px;
    }

    .payment-hero {
        min-height: 350px;
        padding: 100px 20px 60px;
    }

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

    .payment-heading h2 {
        font-size: 36px;
    }

    .payment-card,
    .payment-summary-card {
        padding: 24px;
    }

    .payment-room img {
        width: 85px;
        height: 70px;
    }
}

.confirmation-section {
    padding: 120px 20px;
    background: #f8f6f1;
    min-height: calc(100vh - 100px);
}

.confirmation-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.confirmation-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border: 1px solid #b08a4a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-icon span {
    color: #b08a4a;
    font-size: 34px;
    font-weight: 500;
}

.confirmation-container > .section-label {
    margin-bottom: 12px;
}

.confirmation-container h1 {
    font-family: "Cormorant Garamond", serif;
    color: #25231f;
    font-size: 58px;
    line-height: 1.05;
    margin: 0 0 18px;
}

.confirmation-message {
    max-width: 600px;
    margin: 0 auto;
    color: #6b675f;
    font-size: 15px;
    line-height: 1.8;
}

.booking-id {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    margin: 30px auto;
    padding: 14px 28px;
    background: #ffffff;
    border: 1px solid rgba(37, 35, 31, 0.12);
}

.booking-id span {
    color: #77736b;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.booking-id strong {
    color: #25231f;
    font-size: 15px;
    letter-spacing: 1px;
}

.confirmation-card {
    background: #ffffff;
    border: 1px solid rgba(37, 35, 31, 0.12);
    padding: 36px;
    text-align: left;
}

.confirmation-room {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(37, 35, 31, 0.12);
}

.confirmation-room img {
    width: 150px;
    height: 105px;
    object-fit: cover;
}

.confirmation-room span {
    color: #b08a4a;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
}

.confirmation-room h2 {
    font-family: "Cormorant Garamond", serif;
    color: #25231f;
    font-size: 32px;
    margin: 5px 0 5px;
}

.confirmation-room p {
    color: #77736b;
    font-size: 12px;
    margin: 0;
}

.confirmation-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(37, 35, 31, 0.12);
}

.confirmation-details div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.confirmation-details span {
    color: #77736b;
    font-size: 12px;
}

.confirmation-details strong {
    color: #25231f;
    font-size: 14px;
    font-weight: 600;
}

.confirmation-note {
    margin: 28px 0;
    padding: 18px 20px;
    background: #f8f6f1;
    border-left: 3px solid #b08a4a;
}

.confirmation-note strong {
    display: block;
    color: #25231f;
    font-size: 13px;
    margin-bottom: 6px;
}

.confirmation-note p {
    color: #77736b;
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
}

.confirmation-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.print-button,
.home-button {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.print-button {
    background: #25231f;
    color: #ffffff;
}

.home-button {
    background: #b08a4a;
    color: #ffffff;
}

.print-button:hover {
    background: #96733c;
}

.home-button:hover {
    background: #96733c;
}

@media print {
    .site-header,
    .site-footer,
    .confirmation-actions {
        display: none;
    }

    .confirmation-section {
        padding: 30px;
        min-height: auto;
    }

    .confirmation-container h1 {
        font-size: 44px;
    }
}

@media (max-width: 600px) {
    .confirmation-section {
        padding: 80px 16px;
    }

    .confirmation-container h1 {
        font-size: 46px;
    }

    .confirmation-card {
        padding: 24px;
    }

    .confirmation-room {
        align-items: flex-start;
    }

    .confirmation-room img {
        width: 100px;
        height: 75px;
    }

    .confirmation-room h2 {
        font-size: 26px;
    }

    .confirmation-details {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .confirmation-actions {
        grid-template-columns: 1fr;
    }
}

.pay-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 14px 24px;
    border: 1px solid #b08a4a;
    border-radius: 0;
    background: #b08a4a;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
    box-sizing: border-box;
}

.pay-button:hover {
    background: #96733c;
    border-color: #96733c;
}
.dining-hero {
    min-height: 620px;
    position: relative;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(rgba(37, 35, 31, 0.2), rgba(37, 35, 31, 0.72)), url("../assets/images/dining.jpg") center/cover no-repeat;
}

.dining-hero-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 32px;
    color: #ffffff;
}

.dining-hero-content span {
    display: block;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.dining-hero-content h1 {
    max-width: 720px;
    margin: 0 0 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 7vw, 88px);
    line-height: 0.95;
    font-weight: 600;
}

.dining-hero-content p {
    max-width: 620px;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
}

.dining-intro {
    padding: 120px 32px;
    background: #f8f6f1;
}

.dining-intro-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.dining-intro-image img,
.dining-highlight-image img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.dining-intro-content h2,
.dining-highlight-content h2 {
    margin: 18px 0 24px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
    font-weight: 600;
    color: #25231f;
}

.dining-intro-content p,
.dining-highlight-content p {
    margin: 0 0 20px;
    color: #5f5a52;
    font-size: 16px;
    line-height: 1.9;
}

.dining-experiences {
    padding: 120px 32px;
    background: #ffffff;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 60px;
}

.section-heading h2 {
    margin: 18px 0 16px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
    font-weight: 600;
    color: #25231f;
}

.section-heading p {
    margin: 0;
    color: #6b665e;
    line-height: 1.8;
}

.section-label {
    display: inline-block;
    color: #b08a4a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.dining-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.dining-card {
    background: #f8f6f1;
}

.dining-card-image {
    overflow: hidden;
}

.dining-card-image img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.dining-card-content {
    padding: 32px;
}

.dining-card-content > span {
    color: #b08a4a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.dining-card-content h3 {
    margin: 14px 0 14px;
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    color: #25231f;
}

.dining-card-content p {
    margin: 0 0 24px;
    color: #68635b;
    font-size: 15px;
    line-height: 1.8;
}

.dining-card-content strong {
    color: #25231f;
    font-size: 13px;
    letter-spacing: 0.04em;
}

.dining-highlight {
    padding: 120px 32px;
    background: #f8f6f1;
}

.dining-highlight-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.dining-features {
    margin-top: 40px;
    display: grid;
    gap: 22px;
}

.dining-features div {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(37, 35, 31, 0.12);
}

.dining-features strong,
.dining-features span {
    display: block;
}

.dining-features strong {
    margin-bottom: 6px;
    color: #25231f;
    font-size: 15px;
}

.dining-features span {
    color: #777168;
    font-size: 14px;
}

.dining-cta {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 32px;
    text-align: center;
    background: linear-gradient(rgba(37, 35, 31, 0.65), rgba(37, 35, 31, 0.65)), url("../assets/images/dining.jpg") center/cover no-repeat;
}

.dining-cta-content {
    max-width: 700px;
    color: #ffffff;
}

.dining-cta-content > span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.dining-cta-content h2 {
    margin: 18px 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 6vw, 68px);
    line-height: 1;
    font-weight: 600;
}

.dining-cta-content p {
    margin: 0 auto 30px;
    max-width: 560px;
    line-height: 1.8;
    font-size: 16px;
}

.dining-cta-content .book-button {
    display: inline-flex;
}

@media (max-width: 900px) {
    .dining-intro-container,
    .dining-highlight-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .dining-hero {
        min-height: 560px;
    }
}

@media (max-width: 600px) {
    .dining-hero-content {
        padding: 70px 20px;
    }

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

    .dining-intro,
    .dining-experiences,
    .dining-highlight {
        padding: 80px 20px;
    }

    .dining-cta {
        min-height: 420px;
        padding: 70px 20px;
    }

    .dining-card-content {
        padding: 26px;
    }
}
.amenities-hero {
    min-height: 620px;
    position: relative;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(rgba(37, 35, 31, 0.2), rgba(37, 35, 31, 0.72)), url("../assets/images/about-hotel.jpg") center/cover no-repeat;
}

.amenities-hero-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 32px;
    color: #ffffff;
}

.amenities-hero-content span {
    display: block;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.amenities-hero-content h1 {
    max-width: 800px;
    margin: 0 0 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(50px, 7vw, 82px);
    line-height: 0.95;
    font-weight: 600;
}

.amenities-hero-content p {
    max-width: 620px;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
}

.amenities-intro {
    padding: 120px 32px;
    background: #f8f6f1;
}

.amenities-intro-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.amenities-intro-content h2,
.amenities-experience-content h2 {
    margin: 18px 0 24px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
    font-weight: 600;
    color: #25231f;
}

.amenities-intro-content p,
.amenities-experience-content p {
    margin: 0 0 20px;
    color: #5f5a52;
    font-size: 16px;
    line-height: 1.9;
}

.amenities-intro-image img,
.amenities-experience-image img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.amenities-list {
    padding: 120px 32px;
    background: #ffffff;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(37, 35, 31, 0.12);
    border: 1px solid rgba(37, 35, 31, 0.12);
}

.amenity-card {
    min-height: 250px;
    padding: 34px;
    background: #ffffff;
}

.amenity-number {
    margin-bottom: 30px;
    color: #b08a4a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.amenity-card h3 {
    margin: 0 0 14px;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 600;
    color: #25231f;
}

.amenity-card p {
    margin: 0;
    color: #6b665e;
    font-size: 14px;
    line-height: 1.8;
}

.amenities-experience {
    padding: 120px 32px;
    background: #f8f6f1;
}

.amenities-experience-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.amenities-points {
    margin-top: 40px;
    display: grid;
    gap: 22px;
}

.amenities-points div {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(37, 35, 31, 0.12);
}

.amenities-points strong,
.amenities-points span {
    display: block;
}

.amenities-points strong {
    margin-bottom: 6px;
    color: #25231f;
    font-size: 15px;
}

.amenities-points span {
    color: #777168;
    font-size: 14px;
}

.amenities-cta {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 32px;
    text-align: center;
    background: linear-gradient(rgba(37, 35, 31, 0.65), rgba(37, 35, 31, 0.65)), url("../assets/images/about-hotel.jpg") center/cover no-repeat;
}

.amenities-cta-content {
    max-width: 700px;
    color: #ffffff;
}

.amenities-cta-content > span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.amenities-cta-content h2 {
    margin: 18px 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 6vw, 68px);
    line-height: 1;
    font-weight: 600;
}

.amenities-cta-content p {
    max-width: 560px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.8;
}

.amenities-cta-content .book-button {
    display: inline-flex;
}

@media (max-width: 1000px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-intro-container,
    .amenities-experience-container {
        gap: 50px;
    }
}

@media (max-width: 900px) {
    .amenities-intro-container,
    .amenities-experience-container {
        grid-template-columns: 1fr;
    }

    .amenities-hero {
        min-height: 560px;
    }
}

@media (max-width: 600px) {
    .amenities-hero-content {
        padding: 70px 20px;
    }

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

    .amenities-intro,
    .amenities-list,
    .amenities-experience {
        padding: 80px 20px;
    }

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

    .amenities-cta {
        min-height: 420px;
        padding: 70px 20px;
    }
}
.gallery-hero {
    min-height: 620px;
    position: relative;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(rgba(37, 35, 31, 0.2), rgba(37, 35, 31, 0.72)), url("../assets/images/gallery-1.jpg") center/cover no-repeat;
}

.gallery-hero-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 32px;
    color: #ffffff;
}

.gallery-hero-content span {
    display: block;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.gallery-hero-content h1 {
    max-width: 760px;
    margin: 0 0 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 7vw, 86px);
    line-height: 0.95;
    font-weight: 600;
}

.gallery-hero-content p {
    max-width: 620px;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
}

.gallery-section {
    padding: 120px 32px;
    background: #f8f6f1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: #25231f;
    cursor: pointer;
    text-align: left;
}

.gallery-item-large {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, rgba(37, 35, 31, 0.75));
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item span {
    position: absolute;
    left: 26px;
    bottom: 22px;
    z-index: 2;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 600;
}

.gallery-cta {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 32px;
    text-align: center;
    background: linear-gradient(rgba(37, 35, 31, 0.68), rgba(37, 35, 31, 0.68)), url("../assets/images/gallery-6.jpg") center/cover no-repeat;
}

.gallery-cta-content {
    max-width: 700px;
    color: #ffffff;
}

.gallery-cta-content > span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.gallery-cta-content h2 {
    margin: 18px 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 6vw, 68px);
    line-height: 1;
    font-weight: 600;
}

.gallery-cta-content p {
    max-width: 560px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.8;
}

.gallery-cta-content .book-button {
    display: inline-flex;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(20, 19, 17, 0.94);
}

.gallery-lightbox.open {
    display: flex;
}

.gallery-lightbox-content {
    max-width: 1100px;
    max-height: 90vh;
    text-align: center;
}

.gallery-lightbox-content img {
    max-width: 100%;
    max-height: 78vh;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.gallery-lightbox-content span {
    display: block;
    margin-top: 18px;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
}

.gallery-lightbox-close {
    position: absolute;
    top: 22px;
    right: 28px;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-wide {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .gallery-hero {
        min-height: 560px;
    }

    .gallery-hero-content {
        padding: 70px 20px;
    }

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

    .gallery-section {
        padding: 80px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
        gap: 14px;
    }

    .gallery-item-large,
    .gallery-item-wide {
        grid-column: auto;
        grid-row: span 1;
    }

    .gallery-cta {
        min-height: 420px;
        padding: 70px 20px;
    }

    .gallery-lightbox {
        padding: 20px;
    }

    .gallery-lightbox-content img {
        max-height: 70vh;
    }

    .gallery-lightbox-close {
        top: 15px;
        right: 18px;
    }
}
.offers-hero {
    min-height: 620px;
    position: relative;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(rgba(37, 35, 31, 0.2), rgba(37, 35, 31, 0.72)), url("../assets/images/weekend-escape.jpg") center/cover no-repeat;
}

.offers-hero-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 32px;
    color: #ffffff;
}

.offers-hero-content span {
    display: block;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.offers-hero-content h1 {
    max-width: 800px;
    margin: 0 0 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 7vw, 86px);
    line-height: 0.95;
    font-weight: 600;
}

.offers-hero-content p {
    max-width: 620px;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
}

.offers-section {
    padding: 120px 32px;
    background: #f8f6f1;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.offer-card {
    background: #ffffff;
}

.offer-image {
    position: relative;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.offer-image > span {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 12px;
    background: #b08a4a;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.offer-content {
    padding: 34px;
}

.offer-label {
    color: #b08a4a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.offer-content h3 {
    margin: 14px 0 16px;
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    line-height: 1;
    font-weight: 600;
    color: #25231f;
}

.offer-content p {
    margin: 0 0 26px;
    color: #68635b;
    font-size: 15px;
    line-height: 1.8;
}

.offer-includes {
    display: grid;
    gap: 10px;
    margin-bottom: 30px;
}

.offer-includes span {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(37, 35, 31, 0.1);
    color: #5f5a52;
    font-size: 13px;
}

.offer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 13px 20px;
    border: 1px solid #25231f;
    background: #25231f;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease;
    box-sizing: border-box;
}

.offer-button:hover {
    background: #b08a4a;
    border-color: #b08a4a;
}

.offers-note {
    padding: 90px 32px;
    background: #ffffff;
}

.offers-note-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.offers-note h2 {
    max-width: 560px;
    margin: 18px 0 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 60px);
    line-height: 1;
    font-weight: 600;
    color: #25231f;
}

.offers-note-container > p {
    margin: 0;
    color: #68635b;
    font-size: 15px;
    line-height: 1.9;
}

.offers-cta {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 32px;
    text-align: center;
    background: linear-gradient(rgba(37, 35, 31, 0.68), rgba(37, 35, 31, 0.68)), url("../assets/images/romantic-getaway.jpg") center/cover no-repeat;
}

.offers-cta-content {
    max-width: 700px;
    color: #ffffff;
}

.offers-cta-content > span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.offers-cta-content h2 {
    margin: 18px 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 6vw, 68px);
    line-height: 1;
    font-weight: 600;
}

.offers-cta-content p {
    max-width: 560px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.8;
}

.offers-cta-content .book-button {
    display: inline-flex;
}

@media (max-width: 1000px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offers-note-container {
        gap: 50px;
    }
}

@media (max-width: 900px) {
    .offers-note-container {
        grid-template-columns: 1fr;
    }

    .offers-hero {
        min-height: 560px;
    }
}

@media (max-width: 600px) {
    .offers-hero-content {
        padding: 70px 20px;
    }

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

    .offers-section,
    .offers-note {
        padding: 80px 20px;
    }

    .offer-content {
        padding: 26px;
    }

    .offers-cta {
        min-height: 420px;
        padding: 70px 20px;
    }
}
.about-hero {
    min-height: 620px;
    position: relative;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(rgba(37, 35, 31, 0.2), rgba(37, 35, 31, 0.72)), url("../assets/images/about-hotel.jpg") center/cover no-repeat;
}

.about-hero-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 32px;
    color: #ffffff;
}

.about-hero-content span {
    display: block;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.about-hero-content h1 {
    max-width: 800px;
    margin: 0 0 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 7vw, 86px);
    line-height: 0.95;
    font-weight: 600;
}

.about-hero-content p {
    max-width: 620px;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
}

.about-intro {
    padding: 120px 32px;
    background: #f8f6f1;
}

.about-intro-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro-image img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-intro-content h2,
.about-experience-content h2 {
    margin: 18px 0 24px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
    font-weight: 600;
    color: #25231f;
}

.about-intro-content p,
.about-experience-content p {
    margin: 0 0 20px;
    color: #5f5a52;
    font-size: 16px;
    line-height: 1.9;
}

.about-values {
    padding: 120px 32px;
    background: #ffffff;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(37, 35, 31, 0.12);
    border: 1px solid rgba(37, 35, 31, 0.12);
}

.about-value-card {
    min-height: 270px;
    padding: 34px;
    background: #ffffff;
}

.about-value-card > span {
    display: block;
    margin-bottom: 30px;
    color: #b08a4a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.about-value-card h3 {
    margin: 0 0 14px;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 600;
    color: #25231f;
}

.about-value-card p {
    margin: 0;
    color: #6b665e;
    font-size: 14px;
    line-height: 1.8;
}

.about-experience {
    padding: 120px 32px;
    background: #f8f6f1;
}

.about-experience-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-experience-image img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-points {
    margin-top: 40px;
    display: grid;
    gap: 22px;
}

.about-points div {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(37, 35, 31, 0.12);
}

.about-points strong,
.about-points span {
    display: block;
}

.about-points strong {
    margin-bottom: 6px;
    color: #25231f;
    font-size: 15px;
}

.about-points span {
    color: #777168;
    font-size: 14px;
}

.about-cta {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 32px;
    text-align: center;
    background: linear-gradient(rgba(37, 35, 31, 0.68), rgba(37, 35, 31, 0.68)), url("../assets/images/hero.jpg") center/cover no-repeat;
}

.about-cta-content {
    max-width: 700px;
    color: #ffffff;
}

.about-cta-content > span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.about-cta-content h2 {
    margin: 18px 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 6vw, 68px);
    line-height: 1;
    font-weight: 600;
}

.about-cta-content p {
    max-width: 560px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.8;
}

.about-cta-content .book-button {
    display: inline-flex;
}

@media (max-width: 1000px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .about-intro-container,
    .about-experience-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-hero {
        min-height: 560px;
    }
}

@media (max-width: 600px) {
    .about-hero-content {
        padding: 70px 20px;
    }

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

    .about-intro,
    .about-values,
    .about-experience {
        padding: 80px 20px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-cta {
        min-height: 420px;
        padding: 70px 20px;
    }
}
.contact-hero {
    min-height: 620px;
    position: relative;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(rgba(37, 35, 31, 0.2), rgba(37, 35, 31, 0.72)), url("../assets/images/hero.jpg") center/cover no-repeat;
}

.contact-hero-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 32px;
    color: #ffffff;
}

.contact-hero-content span {
    display: block;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.contact-hero-content h1 {
    max-width: 800px;
    margin: 0 0 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 7vw, 86px);
    line-height: 0.95;
    font-weight: 600;
}

.contact-hero-content p {
    max-width: 620px;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
}

.contact-section {
    padding: 120px 32px;
    background: #f8f6f1;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
    align-items: start;
}

.contact-info h2 {
    max-width: 560px;
    margin: 18px 0 24px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
    font-weight: 600;
    color: #25231f;
}

.contact-info > p {
    max-width: 520px;
    margin: 0;
    color: #5f5a52;
    font-size: 16px;
    line-height: 1.9;
}

.contact-details {
    margin-top: 50px;
    display: grid;
    gap: 28px;
}

.contact-details > div {
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(37, 35, 31, 0.12);
}

.contact-details span {
    display: block;
    margin-bottom: 8px;
    color: #b08a4a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.contact-details strong {
    display: block;
    margin-bottom: 5px;
    color: #25231f;
    font-size: 15px;
}

.contact-details p {
    margin: 0;
    color: #777168;
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-card {
    padding: 50px;
    background: #ffffff;
    border: 1px solid rgba(37, 35, 31, 0.1);
}

.contact-form-card h3 {
    margin: 16px 0 34px;
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 600;
    color: #25231f;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.contact-field-full {
    grid-column: 1 / -1;
}

.contact-field label {
    color: #25231f;
    font-size: 12px;
    font-weight: 600;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid rgba(37, 35, 31, 0.16);
    border-radius: 0;
    outline: none;
    background: #ffffff;
    color: #25231f;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.25s ease;
}

.contact-field textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #b08a4a;
}

.contact-submit {
    width: 100%;
    min-height: 54px;
    margin-top: 28px;
    padding: 14px 24px;
    border: 1px solid #b08a4a;
    background: #b08a4a;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.contact-submit:hover {
    background: #96733c;
    border-color: #96733c;
}

.contact-location {
    padding: 120px 32px;
    background: #ffffff;
}

.contact-location-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.contact-location-content h2 {
    margin: 18px 0 24px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
    font-weight: 600;
    color: #25231f;
}

.contact-location-content > p {
    max-width: 560px;
    margin: 0;
    color: #5f5a52;
    font-size: 16px;
    line-height: 1.9;
}

.location-points {
    margin-top: 40px;
    display: grid;
    gap: 22px;
}

.location-points div {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(37, 35, 31, 0.12);
}

.location-points strong,
.location-points span {
    display: block;
}

.location-points strong {
    margin-bottom: 6px;
    color: #25231f;
    font-size: 15px;
}

.location-points span {
    color: #777168;
    font-size: 14px;
    line-height: 1.6;
}

.contact-map {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25231f;
    text-align: center;
}

.contact-map div {
    max-width: 350px;
    padding: 30px;
    color: #ffffff;
}

.contact-map span {
    display: block;
    margin-bottom: 14px;
    color: #b08a4a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.contact-map strong {
    display: block;
    margin-bottom: 12px;
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 600;
}

.contact-map p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

.contact-cta {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 32px;
    text-align: center;
    background: linear-gradient(rgba(37, 35, 31, 0.68), rgba(37, 35, 31, 0.68)), url("../assets/images/about-hotel.jpg") center/cover no-repeat;
}

.contact-cta-content {
    max-width: 720px;
    color: #ffffff;
}

.contact-cta-content > span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.contact-cta-content h2 {
    margin: 18px 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 6vw, 68px);
    line-height: 1;
    font-weight: 600;
}

.contact-cta-content p {
    max-width: 560px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.8;
}

.contact-cta-content .book-button {
    display: inline-flex;
}

@media (max-width: 1000px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-location-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 900px) {
    .contact-hero {
        min-height: 560px;
    }
}

@media (max-width: 600px) {
    .contact-hero-content {
        padding: 70px 20px;
    }

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

    .contact-section,
    .contact-location {
        padding: 80px 20px;
    }

    .contact-form-card {
        padding: 30px 22px;
    }

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

    .contact-field-full {
        grid-column: auto;
    }

    .contact-map {
        min-height: 380px;
    }

    .contact-cta {
        min-height: 420px;
        padding: 70px 20px;
    }
}
.policy-hero {
    min-height: 520px;
    position: relative;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(rgba(37, 35, 31, 0.25), rgba(37, 35, 31, 0.78)), url("../assets/images/about-hotel.jpg") center/cover no-repeat;
}

.policy-hero-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 32px;
    color: #ffffff;
}

.policy-hero-content span {
    display: block;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.policy-hero-content h1 {
    margin: 0 0 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 7vw, 82px);
    line-height: 0.95;
    font-weight: 600;
}

.policy-hero-content p {
    max-width: 620px;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
}

.policy-section {
    padding: 110px 32px;
    background: #f8f6f1;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background: #ffffff;
    border: 1px solid rgba(37, 35, 31, 0.1);
}

.policy-updated {
    margin: 0 0 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(37, 35, 31, 0.12);
    color: #b08a4a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.policy-block {
    margin-bottom: 42px;
}

.policy-block:last-child {
    margin-bottom: 0;
}

.policy-block h2 {
    margin: 0 0 14px;
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    color: #25231f;
}

.policy-block p {
    margin: 0;
    color: #625d55;
    font-size: 15px;
    line-height: 1.9;
}

@media (max-width: 700px) {
    .policy-hero {
        min-height: 480px;
    }

    .policy-hero-content {
        padding: 70px 20px;
    }

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

    .policy-section {
        padding: 70px 20px;
    }

    .policy-container {
        padding: 35px 24px;
    }

    .policy-block {
        margin-bottom: 34px;
    }

    .policy-block h2 {
        font-size: 29px;
    }
}