:root {
    --ink: #171513;
    --muted: #665f58;
    --paper: #fbfaf7;
    --soft: #f1eee9;
    --line: rgba(23, 21, 19, 0.12);
    --sage: #63715d;
    --sage-dark: #3c4b37;
    --clay: #b96649;
    --gold: #c99a4a;
    --white: #ffffff;
    --shadow: 0 22px 60px rgba(23, 21, 19, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px clamp(18px, 4vw, 56px);
    color: var(--white);
    transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    padding-block: 14px;
    color: var(--ink);
    background: rgba(251, 250, 247, 0.92);
    box-shadow: 0 12px 34px rgba(23, 21, 19, 0.08);
    backdrop-filter: blur(18px);
}

.brand,
.site-nav {
    display: flex;
    align-items: center;
}

.brand {
    gap: 10px;
    font-weight: 800;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-family: Georgia, "Times New Roman", serif;
}

.site-nav {
    gap: clamp(18px, 3vw, 34px);
    font-size: 0.94rem;
    font-weight: 700;
}

.site-nav a {
    position: relative;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    transition: transform 200ms ease;
}

.site-header.is-open .menu-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 96vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    padding: 130px clamp(18px, 6vw, 80px) 34px;
    color: var(--white);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-image: url("hotel-royaal-inn-jammu-hero.png");
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
    animation: heroDrift 14s ease-in-out infinite alternate;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(9, 12, 11, 0.76), rgba(9, 12, 11, 0.42) 48%, rgba(9, 12, 11, 0.18)),
        linear-gradient(0deg, rgba(9, 12, 11, 0.62), transparent 48%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding-bottom: min(16vh, 120px);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--clay);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #ffd18f;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0;
}

h1 {
    margin-bottom: 18px;
    max-width: 760px;
    font-size: clamp(3.4rem, 9vw, 8.5rem);
    line-height: 0.88;
}

h2 {
    margin-bottom: 18px;
    max-width: 860px;
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 1;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.hero-content p:not(.eyebrow),
.section-copy > p,
.room-card p,
.amenity p,
.contact-copy address,
.site-footer {
    color: var(--muted);
    line-height: 1.7;
}

.hero-content p:not(.eyebrow) {
    max-width: 590px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.02rem, 2vw, 1.25rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
    outline: none;
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--sage-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--sage);
}

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

.booking-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.booking-strip span {
    min-height: 76px;
    padding: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.4;
}

.booking-strip span:last-child {
    border-right: 0;
}

.booking-strip strong {
    display: block;
    color: var(--white);
}

.section {
    padding: clamp(76px, 10vw, 132px) clamp(18px, 6vw, 80px);
}

.about-section {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.74fr);
    gap: clamp(34px, 7vw, 92px);
    align-items: center;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.stats span {
    border-top: 1px solid var(--line);
    padding-top: 16px;
    color: var(--muted);
}

.stats strong {
    display: block;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.1rem;
}

.image-stack {
    display: grid;
    grid-template-columns: 0.78fr 1fr;
    gap: 16px;
    align-items: end;
}

.image-stack img {
    height: 460px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.image-stack img:first-child {
    height: 340px;
    margin-bottom: 48px;
}

.rooms-section {
    background: var(--soft);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

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

.room-card,
.amenity,
.contact-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 40px rgba(23, 21, 19, 0.07);
}

.room-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
}

.room-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.room-card div {
    padding: 22px 22px 4px;
}

.room-card span {
    margin: 18px 22px 22px;
    color: var(--sage-dark);
    font-weight: 800;
}

.amenities-section {
    background: var(--ink);
    color: var(--white);
}

.amenities-section .eyebrow {
    color: #f0bc67;
}

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

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.amenity {
    min-height: 270px;
    padding: 28px;
    border: 0;
    border-radius: 0;
    color: var(--white);
    background: #24211e;
    box-shadow: none;
}

.amenity span {
    display: block;
    margin-bottom: 56px;
    color: var(--gold);
    font-weight: 900;
}

.amenity p {
    color: rgba(255, 255, 255, 0.68);
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.68fr);
    gap: clamp(28px, 6vw, 78px);
    padding: clamp(76px, 10vw, 132px) clamp(18px, 6vw, 80px);
    background:
        linear-gradient(rgba(251, 250, 247, 0.9), rgba(251, 250, 247, 0.9)),
        url("https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?auto=format&fit=crop&w=1600&q=80") center / cover;
}

address {
    display: grid;
    gap: 14px;
    font-style: normal;
}

address a {
    width: fit-content;
    font-weight: 800;
}

address a:hover,
.site-footer a:hover {
    color: var(--clay);
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 28px;
}

label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--ink);
    background: #fffdf9;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(99, 113, 93, 0.24);
    border-color: var(--sage);
}

.form-status {
    min-height: 22px;
    margin: 0;
    color: var(--sage-dark);
    font-weight: 800;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 26px clamp(18px, 6vw, 80px);
    border-top: 1px solid var(--line);
    background: var(--white);
}

.site-footer p {
    margin: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroDrift {
    from {
        transform: scale(1.04) translateX(-8px);
    }
    to {
        transform: scale(1.09) translateX(8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 980px) {
    .about-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .room-grid,
    .amenity-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .booking-strip span:nth-child(2) {
        border-right: 0;
    }

    .booking-strip span:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }
}

@media (max-width: 720px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 68px 14px auto;
        display: grid;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 8px;
        color: var(--ink);
        background: rgba(251, 250, 247, 0.96);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .site-header.is-open .site-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a {
        padding: 15px 12px;
        border-bottom: 1px solid var(--line);
    }

    .site-nav a:last-child {
        border-bottom: 0;
    }

    .site-nav a::after {
        display: none;
    }

    .hero {
        min-height: 94vh;
        padding-top: 112px;
    }

    h1 {
        font-size: clamp(3.2rem, 18vw, 5.4rem);
    }

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

    .booking-strip,
    .stats,
    .room-grid,
    .amenity-grid {
        grid-template-columns: 1fr;
    }

    .booking-strip span {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }

    .booking-strip span:last-child {
        border-bottom: 0;
    }

    .image-stack {
        grid-template-columns: 1fr;
    }

    .image-stack img,
    .image-stack img:first-child {
        height: 280px;
        margin: 0;
    }

    .section-heading {
        display: block;
    }

    .amenity {
        min-height: auto;
    }

    .amenity span {
        margin-bottom: 28px;
    }

    .site-footer {
        display: grid;
    }
}

@media (max-width: 430px) {
    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .contact-form {
        padding: 20px;
    }
}
