:root {
    --maroon: #6d1f2a;
    --maroon-dark: #41121a;
    --gold: #c6982b;
    --gold-light: #e9cd8a;
    --sandstone: #f3e9d6;
    --cream: #faf6ec;
    --ink: #2a1810;
    --ink-soft: #5c483e;
    --arch: 130px 130px 6px 6px;
    --shadow: 0 18px 40px -18px rgba(65, 18, 26, .35);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--ink);
    background: #ffffff;
    overflow-x: hidden;
    font-weight: 300;
}

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

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--maroon-dark);
    line-height: 1.15;
}

.eyebrow {
    font-family: 'Cinzel', serif;
    font-size: .72rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .6em;
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--gold);
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    font-family: 'Cinzel', serif;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 15px 32px;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .3s ease;
    font-weight: 600;
}

.btn-gold {
    background: var(--gold);
    color: var(--maroon-dark);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-line {
    border-color: var(--maroon);
    color: var(--maroon);
}

.btn-line:hover {
    background: var(--maroon);
    color: var(--cream);
}

.btn-cream {
    background: transparent;
    border-color: rgba(250, 246, 236, .6);
    color: var(--cream);
}

.btn-cream:hover {
    background: var(--cream);
    color: var(--maroon-dark);
}

/* ---------- ARCH SIGNATURE ---------- */
.arch-frame {
    border-radius: var(--arch);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(198, 152, 43, .5);
}

.arch-frame::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(233, 205, 138, .25);
}

.divider-jaali {
    height: 34px;
    background-image: radial-gradient(circle at 10px 0, transparent 9px, var(--sandstone) 10px);
    background-size: 20px 20px;
    background-position: top;
    background-color: var(--cream);
}

/* ---------- HEADER ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(to bottom, rgba(42, 24, 16, .55), transparent);
    transition: background .35s ease, box-shadow .35s ease;
}

header.scrolled {
    background: var(--cream);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: .02em;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

header.scrolled .logo {
    color: var(--maroon-dark);
}

.logo span {
    font-family: 'Cinzel', serif;
    font-size: .55rem;
    letter-spacing: .32em;
    color: var(--gold);
    margin-top: 4px;
}

nav.mainnav {
    display: flex;
    align-items: center;
    gap: 38px;
}

nav.mainnav a {
    font-family: 'Cinzel', serif;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cream);
    position: relative;
    padding-bottom: 4px;
}

header.scrolled nav.mainnav a {
    color: var(--ink);
}

nav.mainnav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background: var(--gold);
    transition: width .3s ease;
}

nav.mainnav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-phone {
    color: var(--cream);
    font-size: .85rem;
    display: flex;
    gap: 8px;
    align-items: center;
}

header.scrolled .header-phone {
    color: var(--ink-soft);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 250;
}

.burger span {
    width: 26px;
    height: 2px;
    background: var(--cream);
}

header.scrolled .burger span {
    background: var(--ink);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(42, 18, 12, .55) 0%, rgba(42, 18, 12, .35) 45%, rgba(42, 18, 12, .82) 100%);
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--cream);
    padding: 0 20px 130px;
}

.hero-content .eyebrow {
    color: var(--gold-light);
}

.hero-content .eyebrow::before,
.hero-content .eyebrow::after {
    background: var(--gold-light);
}

.hero-content h1 {
    color: var(--cream);
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    margin: 18px 0 20px;
    max-width: 900px;
    font-style: italic;
    font-weight: 600;
}

.hero-content p {
    max-width: 560px;
    font-size: 1rem;
    color: #f2e6d4;
    margin-bottom: 34px;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-dots {
    position: absolute;
    bottom: 270px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: 10px;
}

.hero-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--gold-light);
    background: transparent;
    cursor: pointer;
}

.hero-dots button.active {
    background: var(--gold-light);
}

.hero-arrows {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 6;
    pointer-events: none;
}

.hero-arrows button {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(250, 246, 236, .5);
    background: rgba(42, 24, 16, .25);
    color: var(--cream);
    cursor: pointer;
    font-size: .9rem;
}

.hero-arrows button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--maroon-dark);
}

/* ---------- SEARCH BAR ---------- */
.search-wrap {
    position: relative;
    z-index: 20;
}

.search-card {
    background: var(--cream);
    border-radius: 24px 24px 24px 24px;
    box-shadow: var(--shadow);
    margin: -92px auto 0;
    max-width: 1080px;
    padding: 30px 34px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr auto;
    gap: 22px;
    border-top: 3px solid var(--gold);
    position: relative;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-right: 1px solid #e6d8bd;
    padding-right: 20px;
}

.field:last-of-type {
    border-right: none;
}

.field label {
    font-family: 'Cinzel', serif;
    font-size: .64rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--maroon);
    display: flex;
    align-items: center;
    gap: 8px;
}

.field input,
.field select {
    border: none;
    font-family: 'Jost';
    font-size: .95rem;
    color: var(--ink);
    background: transparent;
    padding: 2px 0;
}

.field input:focus,
.field select:focus {
    outline: none;
}

.guests-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
}

.counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .8rem;
}

.counter .ctrl {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-left: 5px !important;
}

.counter button {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--maroon);
    background: none;
    color: var(--maroon);
    cursor: pointer;
    font-size: .7rem;
    line-height: 1;
}

.search-card .btn {
    width: 100%;
    height: 56px;
    align-self: end;
}

/* ---------- SECTION SHELL ---------- */
section {
    padding: 100px 0 100px;
    position: relative;
}

.section-head {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-top: 14px;
}

.section-head p {
    color: var(--ink-soft);
    margin-top: 16px;
    font-size: .98rem;
}

.section-head.left {
    margin: 0 0 40px;
    text-align: left;
}




/* ---------- ABOUT ---------- */
.about {
    background: var(--maroon);
    color: var(--cream);
}

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

.about-imgs {
    position: relative;
}

.about-imgs img.main {
    border-radius: 200px 200px 6px 6px;
    border: 1px solid rgba(233, 205, 138, .4);
}

.about-imgs img.small {
    position: absolute;
    width: 46%;
    bottom: -40px;
    right: -30px;
    border-radius: 130px 130px 6px 6px;
    border: 4px solid var(--maroon-dark);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
}

.about h2,
.about .eyebrow {
    color: var(--cream);
}

.about .eyebrow {
    color: var(--gold-light);
}

.about .eyebrow::before,
.about .eyebrow::after {
    background: var(--gold-light);
}

.about p {
    color: #e9d9c8;
    margin: 20px 0 26px;
    line-height: 1.8;
    font-size: .98rem;
}

.about ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.about ul li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: .94rem;
    color: #f2e6d4;
}

.about ul li i {
    color: var(--gold-light);
    margin-top: 4px;
}

/* ---------- ACTIVITIES ---------- */
.activities-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.activity-card {
    position: relative;
    border-radius: 18px 18px 6px 6px;
    overflow: hidden;
    height: 340px;
    box-shadow: var(--shadow);
}

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.activity-card:hover img {
    transform: scale(1.08);
}

.activity-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(42, 18, 12, .92) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--cream);
}

.activity-card .overlay span {
    font-family: 'Cinzel';
    font-size: .6rem;
    letter-spacing: .14em;
    color: var(--gold-light);
    text-transform: uppercase;
}

.activity-card .overlay h4 {
    color: var(--cream);
    font-size: 1.3rem;
    margin-top: 8px;
}

.activity-card .overlay p {
    font-size: .82rem;
    color: #eaddcb;
    margin-top: 8px;
    font-weight: 300;
}

.activity-meta {
    display: flex;
    gap: 14px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(233, 205, 138, .25);
}

.activity-meta div {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    color: var(--gold-light);
    font-family: 'Jost';
    font-weight: 400;
}

.activity-meta i {
    font-size: .78rem;
}

.activity-meta .price b {
    font-family: 'Cormorant Garamond';
    font-size: 1.05rem;
    color: var(--cream);
    font-weight: 700;
    margin-left: 2px;
}

/* ---------- ROOMS ---------- */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 30px;
}

.room-card {
    background: var(--cream);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #ecdfc4;
}

.room-media {
    position: relative;
    height: 230px;
    overflow: hidden;
    border-radius: 0 0 90px 0;
}

.room-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.room-card:hover .room-media img {
    transform: scale(1.06);
}

.room-price-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--maroon);
    color: var(--cream);
    font-family: 'Cinzel';
    font-size: .62rem;
    letter-spacing: .08em;
    padding: 8px 14px;
    border-radius: 2px;
    border: 1px solid var(--gold);
}

.room-price-tag b {
    font-family: 'Cormorant Garamond';
    font-size: 1rem;
    color: var(--gold-light);
    margin-left: 4px;
}

.room-body {
    padding: 24px 26px 26px;
}

.room-body h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.room-body p {
    font-size: .86rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 16px;
    min-height: 44px;
}

.room-amenities {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    color: var(--maroon);
    font-size: .9rem;
}

.room-actions {
    display: flex;
    gap: 10px;
}

.room-actions .btn {
    flex: 1;
    padding: 12px 10px;
    font-size: .64rem;
}

/* ---------- NEARBY ---------- */
.nearby {
    background: var(--sandstone);
}

.nearby-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.nearby-item {
    display: flex;
    gap: 18px;
    align-items: center;
    background: var(--cream);
    padding: 20px 22px;
    border-radius: 14px;
    border: 1px solid #ecdfc4;
}

.nearby-item .num {
    font-family: 'Cormorant Garamond';
    font-size: 1.9rem;
    color: var(--gold);
    font-weight: 700;
    min-width: 34px;
}

.nearby-item h4 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.nearby-item p {
    font-size: .9rem;
    color: var(--ink-soft);
}

.nearby-item .dist {
    margin-left: auto;
    font-family: 'Cinzel';
    font-size: .8rem;
    letter-spacing: .06em;
    color: var(--maroon);
    border: 1px solid var(--maroon);
    padding: 6px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

/* ---------- AMENITIES ---------- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.amenity-card {
    text-align: center;
    padding: 38px 20px;
    border: 1px solid #ecdfc4;
    border-radius: 16px;
    background: var(--cream);
    transition: all .3s ease;
}

.amenity-card:hover {
    background: var(--maroon);
    transform: translateY(-6px);
}

.amenity-card i {
    font-size: 1.8rem;
    color: var(--maroon);
    margin-bottom: 16px;
    transition: color .3s;
}

.amenity-card:hover i {
    color: var(--gold-light);
}

.amenity-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    transition: color .3s;
}

.amenity-card:hover h4 {
    color: var(--cream);
}

.amenity-card p {
    font-size: .78rem;
    color: var(--ink-soft);
    transition: color .3s;
}

.amenity-card:hover p {
    color: #e9d9c8;
}

/* ---------- GALLERY ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 170px;
    gap: 14px;
}

.gallery-grid a {
    border-radius: 14px 14px 4px 4px;
    overflow: hidden;
    position: relative;
    display: block;
}

.gallery-grid a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-grid a:hover img {
    transform: scale(1.1);
}

.gallery-grid a::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 1.2rem;
    background: rgba(42, 18, 12, 0);
    opacity: 0;
    transition: all .3s;
}

.gallery-grid a:hover::after {
    background: rgba(42, 18, 12, .45);
    opacity: 1;
}

.g-big {
    grid-column: span 2;
    grid-row: span 2;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20, 10, 7, .92);
    z-index: 500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    border: 2px solid var(--gold);
}

.lightbox .close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--cream);
    font-size: 1.8rem;
    cursor: pointer;
}

/* ---------- BOOK CTA ---------- */
.book-cta {
    background: linear-gradient(rgba(42, 18, 12, .82), rgba(42, 18, 12, .9)), url('https://picsum.photos/seed/haveli-courtyard/1600/700') center/cover;
    color: var(--cream);
    text-align: center;
}

.book-cta h2 {
    color: var(--cream);
}

.book-cta p {
    max-width: 520px;
    margin: 18px auto 30px;
    color: #eaddcb;
}




section.contact-hero {
    text-align: center !important;
}

/* ---------- FOOTER ---------- */
footer {
    background: var(--maroon-dark);
    color: #e9d9c8;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 44px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(233, 205, 138, .15);
}

footer h4 {
    color: var(--cream);
    font-family: 'Cinzel';
    font-size: .8rem;
    letter-spacing: .12em;
    margin-bottom: 22px;
    text-transform: uppercase;
}

footer .logo {
    color: var(--cream);
    margin-bottom: 16px;
}

footer p.desc {
    font-size: .86rem;
    line-height: 1.8;
    color: #d8c4b4;
    margin-bottom: 20px;
}

footer .contact-line {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: .86rem;
    color: #d8c4b4;
}

footer .contact-line i {
    color: var(--gold-light);
    margin-top: 3px;
}

footer ul li {
    margin-bottom: 12px;
    font-size: .88rem;
}

footer ul li a:hover {
    color: var(--gold-light);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(233, 205, 138, .3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--maroon-dark);
}

.newsletter-form {
    display: flex;
    margin-top: 6px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid rgba(233, 205, 138, .3);
    background: transparent;
    color: var(--cream);
    font-size: .85rem;
}

.newsletter-form button {
    padding: 0 18px;
    background: var(--gold);
    border: none;
    color: var(--maroon-dark);
    cursor: pointer;
}

.bottom-bar {
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    font-size: .78rem;
    color: #b89a86;
    flex-wrap: wrap;
    gap: 10px;
}

.whatsapp-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 300;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {

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

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

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

    .about-imgs {
        margin-bottom: 20px;
    }

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

    .search-card {
        grid-template-columns: 1fr 1fr;
        margin: -70px 20px 0;
    }

    .field:nth-child(3) {
        border-right: none;
    }
}

/* 
@media (max-width: 768px) {
    nav.mainnav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 78%;
        max-width: 320px;
        background: var(--maroon-dark);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transform: translateX(100%);
        transition: transform .4s ease;
    }

    nav.mainnav.open {
        transform: translateX(0);
    }

    nav.mainnav a {
        color: var(--cream);
        font-size: .9rem;
    }

    .burger {
        display: flex;
    }

    .header-phone {
        display: none;
    }

    .hero {
        height: auto !important;
    }

    .hero-content {
        padding-bottom: 190px;
    }

    .hero-arrows button {
        width: 35px;
        height: 35px;
    }

    .hero-dots {
        bottom: 335px;
    }

    .hero-arrows {
    top: 40px;
}
    .search-card {
        grid-template-columns: 1fr;
        margin: -150px 16px 0;
        padding: 24px;
    }

    .field {
        border-right: none;
        border-bottom: 1px solid #e6d8bd;
        padding-bottom: 14px;
    }

    .field:last-of-type {
        border-bottom: none;
    }

    section {
        padding: 90px 0 70px;
    }

    .rooms-grid,
    .activities-scroll,
    .amenities-grid,
    .nearby-list {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .g-big {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .about-imgs img.small {
        width: 52%;
    }

    .guests-grid {
        grid-template-columns: 1fr !important;
    }
} */
@media (max-width: 768px) {

    /* =========================
       HEADER
    ========================= */

    #siteHeader {
        width: 100%;
        left: 0;
        right: 0;
    }

    #siteHeader .topbar {
        width: 100%;
        max-width: 100%;
        padding: 14px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }


    /* =========================
       LOGO
    ========================= */

    .logo {
        font-size: 20px !important;
        line-height: 1.1;
        flex-shrink: 0;
    }

    .logo span {
        display: block;
        font-size: 8px;
        margin-top: 3px;
        letter-spacing: .5px;
    }


    /* =========================
       HEADER ACTIONS
    ========================= */

    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
    }

    .header-phone {
        display: none !important;
    }


    /* =========================
       BOOK NOW BUTTON
    ========================= */

    .header-actions .btn.btn-gold {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        padding: 9px 12px !important;

        font-size: 10px !important;

        white-space: nowrap;
        min-height: 36px;
    }


    /* =========================
       BURGER
    ========================= */

    .burger {
        display: flex !important;

        width: 38px;
        height: 38px;

        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 5px;

        cursor: pointer;
        flex-shrink: 0;

        position: relative;
        z-index: 1001;
    }

    .burger span {
        display: block;

        width: 22px;
        height: 2px;

        background: var(--cream);

        transition: all .3s ease;
    }


    /* =========================
       MOBILE NAV
    ========================= */

    nav.mainnav {
        position: fixed;

        top: 0;
        right: 0;

        width: 78%;
        max-width: 320px;
        height: 100vh;

        background: var(--maroon-dark);

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 25px;

        padding: 40px 30px;

        transform: translateX(100%);

        visibility: hidden;

        transition:
            transform .4s ease,
            visibility .4s ease;

        z-index: 1000;

        box-shadow: -10px 0 30px rgba(0, 0, 0, .25);
    }


    nav.mainnav.open {
        transform: translateX(0);

        visibility: visible;
    }


    nav.mainnav a {
        color: var(--cream) !important;

        font-size: 16px;

        text-decoration: none;

        width: 100%;

        padding: 8px 0;
    }


    /* =========================
       HERO
    ========================= */

    .hero {
        height: auto !important;
        min-height: 700px;
    }

    .hero-content {
        padding: 130px 20px 190px;
    }


    /* HERO ARROWS */

    .hero-arrows {
        top: 50%;
        transform: translateY(-50%);
    }

    .hero-arrows button {
        width: 35px;
        height: 35px;
    }


    /* HERO DOTS */

    .hero-dots {
        bottom: 120px;
    }


    /* =========================
       SEARCH
    ========================= */

    .search-card {
        grid-template-columns: 1fr;

        margin: -100px 16px 0;

        padding: 24px;
    }

    .field {
        border-right: none;

        border-bottom: 1px solid #e6d8bd;

        padding-bottom: 14px;
    }

    .field:last-of-type {
        border-bottom: none;
    }


    /* =========================
       SECTIONS
    ========================= */

    section {
        padding: 70px 0 60px;
    }


    /* =========================
       GRIDS
    ========================= */

    .rooms-grid,
    .activities-scroll,
    .amenities-grid,
    .nearby-list {
        grid-template-columns: 1fr;
    }


    /* =========================
       GALLERY
    ========================= */

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

        grid-auto-rows: 150px;
    }

    .g-big {
        grid-column: span 2;

        grid-row: span 1;
    }


    /* =========================
       FOOTER
    ========================= */

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


    /* =========================
       ABOUT
    ========================= */

    .about-imgs img.small {
        width: 52%;
    }


    /* =========================
       GUESTS
    ========================= */

    .guests-grid {
        grid-template-columns: 1fr !important;
    }

}


/* =========================
          PRIVACY POLICY
        ========================= */


.rooms-page {
    width: 100%;
    overflow: hidden;
}

.privacy-hero-content {
    text-align: center;
}

/* =========================
           HERO
        ========================= */
.rooms-hero {
    position: relative;
    min-height: 245px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(0, 0, 0, .22), rgba(0, 0, 0, .22)),
        url("assets/images/p&t-banner.jpg") center center / cover no-repeat;
}

.rooms-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 4vw, 43px);
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
}


.privacy-section h2 {
    margin: 10px 0px;
}

/* =========================
           INTRO
        ========================= */
.rooms-intro {
    max-width: 920px;
    margin: 0 auto;
    padding: 38px 20px 18px;
    text-align: center;
}

.rooms-intro h2 {
    margin: 0 0 8px;
    color: #171717;
    font-size: clamp(22px, 2.5vw, 27px);
    font-weight: 500;
    letter-spacing: 1px;
}

.rooms-intro p {
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.8;
}

/* =========================
           ROOM GROUP
        ========================= */
.room-section {
    max-width: 1080px;
    margin: 0 auto;
    padding: 15px 20px 55px;
}

.room-title {
    text-align: left;
    margin: 0 0 24px;
}

.room-title h3 {
    display: inline-block;
    position: relative;
    margin: 0;
    color: #161616;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1.2px;
}

/* small gold decorative mark */
.room-title h3::after {
    content: "〰";
    display: block;
    color: #e5aa32;
    font-size: 22px;
    line-height: 15px;
    margin-top: 5px;
    font-weight: 400;
}

.room-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    align-items: start;
}

.room-item {
    min-width: 0;
}

.room-image {
    width: 100%;
    height: 235px;
    display: block;
    object-fit: cover;
    background: #eee;
}

.room-item h4 {
    margin: 16px 0 2px;
    color: #555;
    font-size: 13px;
    font-weight: 500;
}

.room-item p {
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.7;
}

.room-item strong {
    color: #555;
    font-weight: 500;
}

.room-action {
    display: flex;
    justify-content: flex-end;
    margin-top: 22px;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 21px;
    border: 0;
    border-radius: 0;
    background: #e7ad37;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: all .25s ease;
}

.book-btn:hover {
    background: #cf9624;
    color: #fff;
    transform: translateY(-1px);
}

/* =========================
           BOTTOM TAGLINE
        ========================= */
.rooms-bottom {
    max-width: 820px;
    margin: 0 auto;
    padding: 5px 20px 58px;
    text-align: center;
}

.rooms-bottom .decor {
    color: #e5aa32;
    font-size: 24px;
    line-height: 1;
}

.rooms-bottom h4 {
    margin: 7px 0 22px;
    color: #222;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2px;
}

.rooms-bottom .line {
    height: 1px;
    background: #eee;
    width: 78%;
    margin: 0 auto;
}

/* =========================
           MOBILE
        ========================= */
@media (max-width: 991.98px) {
    .rooms-hero {
        min-height: 220px;
    }

    .room-columns {
        gap: 20px;
    }

    .room-image {
        height: 210px;
    }
}

@media (max-width: 767.98px) {
    .rooms-hero {
        min-height: 190px;
    }

    .rooms-hero h1 {
        padding: 0 18px;
        letter-spacing: 1px;
    }

    .rooms-intro {
        padding-top: 30px;
    }

    .rooms-intro p {
        font-size: 12px;
    }

    .room-section {
        padding: 12px 18px 45px;
    }

    .room-title {
        margin-bottom: 20px;
    }

    .room-title h3 {
        font-size: 18px;
    }

    .room-columns {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .room-image {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .room-item p {
        font-size: 12px;
    }

    .room-action {
        justify-content: flex-start;
        margin-top: 14px;
    }

    .book-btn {
        width: auto;
    }

    .rooms-bottom {
        padding-bottom: 40px;
    }

    .rooms-bottom h4 {
        font-size: 13px;
        line-height: 1.7;
        letter-spacing: 1px;
    }
}

@media (max-width: 420px) {
    body {
        font-size: 12px;
    }

    .rooms-hero {
        min-height: 165px;
    }

    .rooms-intro {
        padding-left: 15px;
        padding-right: 15px;
    }

    .room-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .book-btn {
        width: 100%;
    }
}








/* ========================ACCOMMODATION=============================
           PAGE WRAPPER
        ====================================================== */

.rooms-page {
    width: 100%;

    overflow: hidden;
}


/* =====================================================
           HERO SECTION
        ====================================================== */

.rooms-hero {
    position: relative;

    width: 100%;

    min-height: 245px;

    display: flex;

    align-items: center;

    justify-content: center;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.20),
            rgba(0, 0, 0, 0.20)),
        url("assets/images/rooms-banner.jpg");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;
}


.rooms-hero-title {
    margin: 0;

    padding: 15px;

    color: #ffffff;

    font-size: clamp(28px, 4vw, 43px);

    font-weight: 400;

    line-height: 1.3;

    letter-spacing: 2px;

    text-align: center;
}


/* =====================================================
           INTRO SECTION
        ====================================================== */

.rooms-intro {
    padding-top: 38px;

    padding-bottom: 22px;
}


.rooms-intro h2 {
    margin: 0 0 10px;

    color: #191919;

    font-size: 25px;

    font-weight: 500;

    line-height: 1.4;

    letter-spacing: 1px;
}


.rooms-intro p {
    max-width: 900px;

    margin: 0 auto;

    color: #777777;

    font-size: 12px;

    font-weight: 400;

    line-height: 1.85;
}


.rooms-intro strong {
    color: #555555;

    font-weight: 600;
}


/* =====================================================
           ROOM SECTION
        ====================================================== */

.room-section {
    padding-top: 18px;

    padding-bottom: 48px;
}


/* =====================================================
           ROOM HEADING
        ====================================================== */

.room-heading {
    margin-bottom: 27px;

    text-align: center;
}


.room-heading h3 {
    position: relative;

    display: inline-block;

    margin: 0;

    color: #171717;

    font-size: 19px;

    font-weight: 500;

    line-height: 1.4;

    letter-spacing: 1.4px;
}


.room-heading h3::after {
    content: "〰";

    display: block;

    margin-top: 5px;

    color: #e6ad39;

    font-size: 23px;

    font-weight: 400;

    line-height: 12px;
}


/* =====================================================
           ROOM CARD
        ====================================================== */

.room-card {
    width: 100%;

    height: 100%;
}


/* =====================================================
           ROOM IMAGE
        ====================================================== */

.room-card-image {
    display: block;

    width: 100%;

    height: 235px;

    object-fit: cover;

    object-position: center center;

    background: #eeeeee;
}


/* =====================================================
           ROOM CONTENT
        ====================================================== */

.room-card-content {
    padding-top: 14px;
}


.room-card-title {
    margin: 0 0 3px;

    color: #555555;

    font-size: 12px;

    font-weight: 500;

    line-height: 1.6;
}


.room-card-text {
    margin: 0;

    color: #777777;

    font-size: 11.5px;

    font-weight: 400;

    line-height: 1.75;
}


.room-card-text strong {
    color: #555555;

    font-weight: 500;
}


/* =====================================================
           BOOK BUTTON
        ====================================================== */

.room-button-wrapper {
    margin-top: 20px;

    text-align: right;
}


.room-book-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 40px;

    padding: 9px 20px;

    border: 0;

    border-radius: 0;

    background: #e5aa35;

    color: #ffffff;

    font-size: 9px;

    font-weight: 600;

    line-height: 1.3;

    letter-spacing: 0.5px;

    text-align: center;

    text-transform: uppercase;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}


.room-book-btn:hover {
    background: #ce9525;

    color: #ffffff;

    transform: translateY(-1px);
}


/* =====================================================
           BOTTOM SECTION
        ====================================================== */

.rooms-bottom {
    padding-top: 5px;

    padding-bottom: 55px;
}


.rooms-bottom-decoration {
    margin-bottom: 7px;

    color: #e5aa35;

    font-size: 23px;

    line-height: 1;

    text-align: center;
}


.rooms-bottom-title {
    margin: 0 0 22px;

    color: #222222;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.6;

    letter-spacing: 2px;

    text-align: center;
}


.rooms-bottom-line {
    width: 70%;

    height: 1px;

    margin: 0 auto;

    background: #eeeeee;
}


/* =====================================================
           LARGE DESKTOP
        ====================================================== */

@media (min-width: 1200px) {

    .rooms-hero {
        min-height: 250px;
    }


    .rooms-intro {
        padding-top: 40px;
    }


    .room-section {
        padding-bottom: 55px;
    }


    .room-card-image {
        height: 235px;
    }

}


/* =====================================================
           TABLET
        ====================================================== */

@media (max-width: 991.98px) {

    .rooms-hero {
        min-height: 220px;
    }


    .rooms-hero-title {
        font-size: 34px;
    }


    .rooms-intro {
        padding-top: 32px;

        padding-bottom: 18px;
    }


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


    .room-section {
        padding-top: 15px;

        padding-bottom: 45px;
    }


    .room-heading {
        margin-bottom: 23px;
    }


    .room-heading h3 {
        font-size: 18px;
    }


    .room-card-image {
        height: 215px;
    }


    .room-card-text {
        font-size: 11.5px;
    }


    .room-button-wrapper {
        text-align: left;
    }

}


/* =====================================================
           MOBILE
        ====================================================== */

@media (max-width: 767.98px) {

    body {
        font-size: 12px;
    }


    .rooms-hero {
        min-height: 190px;
    }


    .rooms-hero-title {
        padding: 0 18px;

        font-size: 27px;

        line-height: 1.35;

        letter-spacing: 1px;
    }


    .rooms-intro {
        padding-top: 30px;

        padding-bottom: 20px;
    }


    .rooms-intro h2 {
        margin-bottom: 9px;

        font-size: 21px;

        line-height: 1.5;
    }


    .rooms-intro p {
        padding: 0 5px;

        font-size: 11.5px;

        line-height: 1.8;
    }


    .room-section {
        padding-top: 14px;

        padding-bottom: 40px;
    }


    .room-heading {
        margin-bottom: 21px;
    }


    .room-heading h3 {
        font-size: 18px;

        letter-spacing: 1px;
    }


    .room-card-image {
        height: auto;

        aspect-ratio: 16 / 9;

        object-fit: cover;
    }


    .room-card-content {
        padding-top: 12px;
    }


    .room-card-title {
        font-size: 12px;
    }


    .room-card-text {
        font-size: 11.5px;

        line-height: 1.8;
    }


    .room-button-wrapper {
        margin-top: 15px;

        text-align: left;
    }


    .room-book-btn {
        min-height: 40px;

        padding: 9px 18px;

        font-size: 9px;
    }


    .rooms-bottom {
        padding-top: 0;

        padding-bottom: 40px;
    }


    .rooms-bottom-title {
        padding: 0 10px;

        font-size: 12px;

        line-height: 1.8;

        letter-spacing: 1px;
    }


    .rooms-bottom-line {
        width: 85%;
    }

}


/* =====================================================
           SMALL MOBILE
        ====================================================== */

@media (max-width: 420px) {

    .rooms-hero {
        min-height: 165px;
    }


    .rooms-hero-title {
        font-size: 23px;

        letter-spacing: 0.8px;
    }


    .rooms-intro {
        padding-left: 10px;

        padding-right: 10px;
    }


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


    .rooms-intro p {
        font-size: 11px;
    }


    .room-heading h3 {
        font-size: 17px;
    }


    .room-card-image {
        aspect-ratio: 16 / 10;
    }


    .room-book-btn {
        width: 100%;
    }


    .rooms-bottom-title {
        font-size: 11.5px;
    }

}



/* ===============Terms-of-service==========================
           HERO / BANNER
        ========================================= */
.terms-hero {
    position: relative;
    min-height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background:
        linear-gradient(rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)),
        url("assets/images/p-t-banner.jpg") center center / cover no-repeat !important;
}

.terms-hero-content {
    width: 100%;
    text-align: center;
    padding: 40px 20px;
}

.terms-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.terms-breadcrumb {
    margin-top: 16px;
    color: #fff;
    font-size: 13px;
}

.terms-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.terms-breadcrumb span {
    margin: 0 8px;
    opacity: .8;
}

/* =========================================
           CONTENT
        ========================================= */
.terms-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 55px 30px 80px;
}

.terms-intro {
    margin-bottom: 65px;
}

.terms-intro p,
.terms-section p {
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
}

.terms-section {
    margin-bottom: 52px;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    margin: 0 0 20px;
    color: #111;
    font-size: 30px;
    line-height: 1.4;
    font-weight: 700;
}

.terms-section p+p {
    margin-top: 16px;
}

.terms-list {
    margin: 18px 0 0;
    padding-left: 0;
    list-style: none;
}

.terms-list li {
    position: relative;
    padding-left: 0;
    margin-bottom: 2px;
    font-size: 16px;
    line-height: 1.75;
}

.terms-contact {
    margin-top: 8px;
}

.terms-closing {
    margin-top: 65px;
}

/* =========================================
           TABLET
        ========================================= */
@media (max-width: 991.98px) {
    .terms-hero {
        min-height: 260px;
    }

    .terms-wrapper {
        padding: 45px 25px 65px;
    }

    .terms-intro {
        margin-bottom: 50px;
    }

    .terms-section {
        margin-bottom: 42px;
    }
}

/* =========================================
           MOBILE
        ========================================= */
@media (max-width: 767.98px) {
    body {
        font-size: 13px;
    }

    .terms-hero {
        min-height: 220px;
    }

    .terms-hero-content {
        padding: 30px 15px;
    }

    .terms-hero h1 {
        font-size: 34px;
        letter-spacing: .5px;
    }

    .terms-breadcrumb {
        margin-top: 12px;
        font-size: 12px;
    }

    .terms-wrapper {
        padding: 35px 20px 50px;
    }

    .terms-intro {
        margin-bottom: 42px;
    }

    .terms-intro p,
    .terms-section p,
    .terms-list li {
        font-size: 13px;
        line-height: 1.8;
    }

    .terms-section {
        margin-bottom: 38px;
    }

    .terms-section h2 {
        margin-bottom: 14px;
        font-size: 15px;
    }
}

/* =========================================
           SMALL MOBILE
        ========================================= */
@media (max-width: 420px) {
    .terms-hero {
        min-height: 190px;
    }

    .terms-hero h1 {
        font-size: 29px;
    }

    .terms-wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }

    .terms-section {
        margin-bottom: 32px;
    }
}



/*---footer-----*/

:root {
    --sandstone: #f4e9d8;
    --sandstone-deep: #eadfc9;
    --maroon: #6e2138;
    --maroon-deep: #531828;
    --gold: #c39a4a;
    --gold-soft: #d9bd82;
    --ink: #2c211c;
    --ink-soft: #6b5d51;
    --divider: rgba(110, 33, 56, 0.18);
}

/**{box-sizing:border-box;}*/

/*body{margin:0;}*/

.amer-footer {
    background: var(--sandstone);
    color: var(--ink);
    font-family: 'Jost', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Jali (lattice) motif — signature element, echoing haveli jharokha screens */
.jali-strip {
    height: 14px;
    width: 100%;
    background-image:
        radial-gradient(circle at 7px 7px, var(--maroon) 2.6px, transparent 3px);
    background-size: 14px 14px;
    background-color: var(--gold-soft);
    opacity: 0.9;
}

.amer-footer .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Top row: socials + trust badges */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--divider);
}

.socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.socials span.label {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--maroon);
    margin-right: 6px;
}

.icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon);
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    flex: 0 0 auto;
}

.icon-btn:hover {
    background: var(--maroon);
    color: var(--sandstone);
    transform: translateY(-2px);
}

.icon-btn svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.trust-row {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--ink-soft);
}

.trust-badge .ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fffdf8;
}

.trust-badge .ring svg {
    width: 24px;
    height: 24px;
    color: var(--maroon);
}

.trust-badge small {
    font-size: 10px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Main columns */
.footer-main {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding: 44px 0 30px;
}

.col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--maroon);
    margin: 0 0 18px;
    position: relative;
    padding-bottom: 10px;
}

.col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    background: var(--gold);
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--maroon);
    flex: 0 0 auto;
    margin-top: 2px;
}

.contact-item a,
.contact-item span {
    color: var(--ink);
    text-decoration: none;
    font-size: 14.5px;
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--maroon);
}

.link-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.link-list li {
    margin-bottom: 11px;
}

.link-list a {
    color: var(--ink);
    text-decoration: none;
    font-size: 14.5px;
    position: relative;
    transition: color .2s ease, padding-left .2s ease;
}

.link-list a:hover {
    color: var(--maroon);
    padding-left: 6px;
}

.newsletter p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0 0 16px;
}

.newsletter-form {
    display: flex;
    border-bottom: 1.5px solid var(--maroon);
    padding-bottom: 6px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: var(--ink);
    outline: none;
    padding: 6px 4px;
}

.newsletter-form input::placeholder {
    color: var(--ink-soft);
}

.newsletter-form button {
    border: none;
    background: none;
    color: var(--maroon);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 6px;
}

.newsletter-form button svg {
    width: 20px;
    height: 20px;
}

.brand-block {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px dashed var(--divider);
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-block .motif {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    color: var(--gold);
}

.brand-block .brand-text .name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--maroon);
    letter-spacing: .03em;
}

.brand-block .brand-text .tag {
    font-size: 12px;
    color: var(--ink-soft);
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid var(--divider);
    padding: 18px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--ink-soft);
}

.footer-bottom a {
    color: var(--ink-soft);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--maroon);
}

.payments {
    display: flex;
    gap: 8px;
    align-items: center;
}

.payments span {
    border: 1px solid var(--divider);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 11px;
    letter-spacing: .03em;
    color: var(--ink-soft);
    background: #fffdf8;
}

/* Responsive */
@media (max-width:980px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        row-gap: 36px;
    }
}

@media (max-width:640px) {
    .amer-footer .container {
        padding: 0 20px;
    }

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

    .trust-row {
        gap: 16px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 34px 0 24px;
    }

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

    .brand-block {
        flex-wrap: wrap;
    }
}

/* Gallery */
#gallery {
    padding: 7rem 5vw;
    max-width: 1400px;
    margin: auto;
}

.gal-head {
    text-align: center;
    margin-bottom: 3rem;
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 260px 260px;
    gap: 4px;
}

/* Feature large items */
.gal-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gal-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gal-item:nth-child(4) {
    grid-column: span 2;
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s var(--ease);
}

.gal-item:hover img {
    transform: scale(1.07);
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 10, 6, 0);
    transition: background .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gal-item:hover .gal-overlay {
    background: rgba(17, 10, 6, .32);
}

.gal-plus {
    color: var(--ivory);
    font-size: 1.8rem;
    opacity: 0;
    transition: opacity .3s;
    font-weight: 200;
}

.gal-item:hover .gal-plus {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 800;
    background: rgba(10, 6, 4, .96);
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
}

.lb-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    color: rgba(246, 239, 227, .6);
    background: none;
    border: none;
    line-height: 1;
    transition: color .2s;
}

.lb-close:hover {
    color: var(--ivory);
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(184, 146, 42, .15);
    border: 1px solid rgba(184, 146, 42, .3);
    color: var(--gold);
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    transition: background .2s;
}

.lb-prev {
    left: 2vw;
}

.lb-next {
    right: 2vw;
}

.lb-prev:hover,
.lb-next:hover {
    background: rgba(184, 146, 42, .3);
}

@media (max-width: 1024px) {
    .gal-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 200px 200px 200px;
    }

    .gal-item:nth-child(1) {
        grid-column: span 2;
    }

    .gal-item:nth-child(4) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .gal-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(5, 160px);
    }

    .gal-item:nth-child(1) {
        grid-column: 1;
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .gal-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(10, 160px);
    }

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