:root {
    --ink: #16232E;
    --ink-2: #1F3140;
    --ink-soft: #435265;
    --plaster: #F1ECE0;
    --plaster-2: #E7DFCE;
    --stone-line: #D8CFBB;
    --clay: #A64B2A;
    --clay-deep: #833A20;
    --olive: #6E7A4E;
    --text: #221E19;
    --text-muted: #5C564A;
    --text-on-dark: #EFEAE0;
    --text-on-dark-muted: #B7BEC7;
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: "IBM Plex Mono", ui-monospace, monospace;
    --container: 1180px;
    --radius: 3px;
    --header-h: 84px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body,
h1,
h2,
h3,
p,
ul,
blockquote,
figure {
    margin: 0;
}

ul {
    list-style: none;
    padding: 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--plaster);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--ink);
    color: var(--text-on-dark);
    padding: .75rem 1.25rem;
    z-index: 999;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

:focus-visible {
    outline: 2px solid var(--clay);
    outline-offset: 3px;
}

/* ---------- type scale ---------- */
h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 450;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.6rem, 5.4vw, 4.6rem);
    line-height: 1.03;
    font-weight: 350;
}

h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    line-height: 1.1;
}

h3 {
    font-size: 1.25rem;
    font-weight: 550;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: .74rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: .9rem;
}

.eyebrow-light {
    color: #D89A7C;
}

p {
    color: var(--text-muted);
}

p+p {
    margin-top: 1rem;
}

/* ---------- layout helpers ---------- */
.section-head {
    max-width: 640px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 0 1.5rem;
}

.section-head h2 {
    color: var(--ink);
}

.section-head-split {
    max-width: var(--container);
    text-align: left;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.section-head-split .eyebrow {
    margin-bottom: .5rem;
}

/* NAVBAR */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-mono);
    font-size: .78rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .95rem 1.7rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.btn-solid {
    background: var(--clay);
    color: #fff;
}

.btn-solid:hover {
    background: var(--clay-deep);
    transform: translateY(-1px);
    color: white;
}

.btn-solid-light {
    background: var(--plaster);
    color: var(--ink);
}

.btn-solid-light:hover {
    background: #fff;
    transform: translateY(-1px);
}

.btn-ghost-light {
    border-color: rgba(239, 234, 224, .4);
    color: var(--text-on-dark);
}

.btn-ghost-light:hover {
    border-color: var(--text-on-dark);
    color: white;
    background: rgba(239, 234, 224, .08);
}

/* NAVBAR */
.navbar {
    /* background: linear-gradient(to bottom, rgba(22, 35, 46, .55), rgba(22, 35, 46, 0)); */
    /* transition: background .35s ease, box-shadow .35s ease, height .3s ease; */
    background: #182733;
    z-index: 1050;
}

/* Initial state - dark navbar */
.navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.navbar.scrolled {
    background: #fff;
}

.navbar.scrolled .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    font-family: var(--font-mono);
    font-size: .88rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: white !important;
    position: relative;
    padding: .3rem 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width .2s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.lang-switch {
    display: flex;
    gap: .35rem;
    font-family: var(--font-mono);
    font-size: .88rem;
    color: var(--text-on-dark);
}

.lang-switch .is-active {
    color: var(--clay);
}

.navbar.scrolled {
    background: rgba(241, 236, 224, .94);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 var(--stone-line);
}

.navbar.scrolled .nav-link {
    color: var(--ink) !important;
}

.navbar.scrolled .btn-ghost-light {
    color: var(--ink) !important;
    border-color: var(--ink);
}

.navbar.navbar.scrolled .lang-switch {
    color: var(--ink)
}


/*  HERO  */
.hero {
    position: relative;
    background: radial-gradient(120% 100% at 15% 0%, var(--ink-2) 0%, var(--ink) 55%, #0F1922 100%);
    /* padding-top: var(--header-h); */
    overflow: hidden;
}

/* soft glow behind the image */
.hero::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    top: -220px;
    right: -180px;
    background: radial-gradient(circle, rgba(166, 75, 42, .35), transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(239, 234, 224, .07) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: .6;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 5.5rem 1.5rem 6rem;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 2rem;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
}

.hero .eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--clay);
}

.hero-copy h1 {
    color: var(--text-on-dark);
    display: flex;
    flex-direction: column;
}

.hero-title-pre {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: 28px;
    letter-spacing: .04em;
    color: var(--text-on-dark-muted);
    margin-bottom: .1rem;
}

.hero-title-main {
    font-size: 80px;
    font-weight: 450;
    line-height: 1;
}

.hero-dot {
    color: var(--clay);
}

.hero-lede {
    color: var(--text-on-dark-muted);
    font-size: 1.1rem;
    max-width: 34ch;
    margin-top: 1.4rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-top: 2.4rem;
    flex-wrap: wrap;
}

.hero-actions .btn-ghost-light {
    gap: .6rem;
}

.hero-frame {
    position: relative;
    z-index: 1;
    aspect-ratio: 3 / 4;
    max-width: 420px;
    margin-left: auto;
}

.hero-frame::before {
    content: "";
    position: absolute;
    inset: -16px -16px 16px 16px;
    border: 1px solid rgba(166, 75, 42, .5);
    /* border-radius: 200px 200px 4px 4px / 220px 220px 4px 4px; */
    z-index: -1;
}

.hero-frame-inner {
    width: 100%;
    height: 100%;
    /* border-radius: 200px 200px 4px 4px / 220px 220px 4px 4px; */
    overflow: hidden;
    border: 1px solid rgba(239, 234, 224, .25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}

.hero-frame-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.02);
}

.hero-badge {
    position: absolute;
    left: -1.75rem;
    bottom: 2rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    background: var(--plaster);
    color: var(--ink);
    padding: .9rem 1.2rem;
    border-radius: 4px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .35);
}

.hero-badge svg {
    flex-shrink: 0;
    color: var(--clay);
}

.hero-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.1;
}

.hero-badge span {
    display: flex;
    flex-direction: column;
    font-family: var(--font-mono);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--text-muted);
}

.arch-row {
    position: relative;
    z-index: 1;
    color: var(--plaster);
    line-height: 0;
}

.arch-row svg {
    width: 100%;
    height: 34px;
    display: block;
}

@media (max-width: 880px) {
    .hero-inner {
        /* grid-template-columns: 1fr; */
        grid-template-columns: repeat(2, 1fr);
        padding-top: 3.5rem;
    }

    .hero-frame {
        margin: 2.5rem auto 0;
        max-width: 300px;
    }

    .hero-title-main {
        font-size: 52px;
    }

    .hero-badge {
        left: 1rem;
        bottom: 1rem;
    }

    .hero-scroll {
        display: none;
    }
}

/* ================= ABOUT ================= */
.about {
    padding: 6.5rem 1.5rem;
}

.about-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 4rem;
    align-items: center;
}

.arch-frame {
    overflow: hidden;
    border-radius: 160px 160px 4px 4px / 180px 180px 4px 4px;
    border: 1px solid var(--stone-line);
}

.arch-frame img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.arch-frame-dark {
    border-color: rgba(239, 234, 224, .15);
}

.about-copy h2 {
    color: var(--ink);
    margin-bottom: 1.2rem;
}

.stat-row {
    display: flex;
    gap: 2.4rem;
    margin-top: 2.2rem;
    padding-top: 1.8rem;
    border-top: 1px solid var(--stone-line);
    flex-wrap: wrap;
}

.stat-row li {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--clay);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

@media (max-width: 880px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .arch-frame {
        max-width: 340px;
        margin: 0 auto;
    }
}

/* ================= AMENITIES ================= */
.amenities {
    padding: 2rem 1.5rem 6.5rem;
    background: var(--plaster);
}

.amenity-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--stone-line);
    border: 1px solid var(--stone-line);
}

.amenity-grid li {
    background: var(--plaster);
    padding: 2.6rem 2rem;
}

.amenity-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50% 50% 4px 4px;
    border: 1px solid var(--stone-line);
    color: var(--olive);
    margin-bottom: 1.3rem;
}

.amenity-grid h3 {
    color: var(--ink);
    margin-bottom: .5rem;
}

.amenity-grid p {
    font-size: .94rem;
}

@media (max-width: 720px) {
    .amenity-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 460px) {
    .amenity-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= ROOMS ================= */
.rooms {
    padding: 2rem 1.5rem 6.5rem;
}

.room-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.room-card {
    background: #fff;
    border: 1px solid var(--stone-line);
    border-radius: var(--radius);
    overflow: hidden;
}

.room-media {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.room-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.room-card:hover .room-media img {
    transform: scale(1.05);
}

.room-body {
    padding: 1.6rem 1.5rem 1.9rem;
}

.room-body h3 {
    color: var(--ink);
    margin-bottom: .5rem;
}

.room-body p {
    font-size: .94rem;
    min-height: 2.6em;
}

.room-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-mono);
    font-size: .76rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--clay);
    margin-top: 1.2rem;
}

.room-link svg {
    transition: transform .2s ease;
}

.room-link:hover svg {
    transform: translateX(3px);
}

@media (max-width: 880px) {
    .room-grid {
        /* grid-template-columns: 1fr; */
        grid-template-columns: repeat(2, 1fr);
        /* max-width: 440px; */
    }
}

/* ================= RESTAURANT ================= */
.restaurant {
    background: var(--ink);
    padding: 6.5rem 1.5rem;
}

.restaurant-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 4rem;
    align-items: center;
}

.restaurant-copy h2 {
    color: var(--text-on-dark);
    margin-bottom: 1.2rem;
}

.restaurant-copy p {
    color: var(--text-on-dark-muted);
}

.restaurant-copy .btn {
    margin-top: 1.8rem;
}

@media (max-width: 880px) {
    .restaurant-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .restaurant-media .arch-frame {
        max-width: 340px;
        margin: 0 auto;
    }
}

/* ================= TESTIMONIALS ================= */
.testimonials {
    padding: 6.5rem 1.5rem;
    background: var(--plaster-2);
}

.testimonial-p {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.55;
    padding-bottom: 20px;
    text-align: center;
    color: var(--ink);
}

.name {
    font-style: normal;
    color: var(--clay);
    text-align: center;
}

.owl-nav {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 45px;
}

.owl-nav button {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(15, 36, 84, .18) !important;
    border-radius: 50% !important;
    background: white !important;
    transition: .35s;
}

.owl-nav button span {
    font-size: 32px;
    color: var(--ink);
}

.owl-nav button:hover {
    background: var(--ink) !important;
    border-color: var(--ink) !important;
}

.owl-nav button:hover span {
    color: white;
}

.sector {
    padding: 100px 0;
}


/*  CONTACT  */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    margin-top: .5rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: var(--plaster);
}

.contact-list a:hover {
    color: var(--clay);
}

.social-row {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-row a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--stone-line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plaster);
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.social-row a:hover {
    color: var(--clay);
    border-color: var(--clayk);
}

.footer-title {
    padding-bottom: 20px;
}

.map {
    width: 100%;
}

/*  FOOTER  */
.footer {
    background: var(--ink);
    color: var(--text-on-dark-muted);
    padding: 4.5rem 1.5rem 2rem;
}

.logo {
    width: 120px;
    display: inline-block;
}

.footer p {
    padding-top: 30px;
    color: var(--plaster);
    font-size: .9rem;
}

.footer-nav,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.footer-nav a,
.footer-social a {
    font-size: .78rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--plaster);
    transition: color .2s ease;
}

.footer-nav a:hover,
.footer-social a:hover {
    color: var(--clay);
}

.book-online{
    text-align: end;
}
@media (max-width: 600px) {
    .footer-inner {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Animation */
/*Animations*/
.fadeinleft {
    opacity: 0;
    transform: translateX(200px);
    transition: all 1.3s ease-out;
}

.fadeinright {
    opacity: 0;
    transform: translateX(-200px);
    transition: all 0.8s ease-out;
}

.fadeindown {
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s ease-out;
}

.fadeinup {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1.2s ease-out;
}

.fade-in {
    opacity: 0;
    transition: all 1.3s ease-in;
}

.active-left,
.active,
.active-right,
.active-down,
.active-up {
    opacity: 1;
    transform: translateX(0);
    transform: translateY(0);
}

.fadein {
    opacity: 0;
}


/* Hero Section */
/* ================= PAGE HERO (About / Rooms / etc.) ================= */
.page-hero {
    position: relative;
    background: radial-gradient(120% 100% at 15% 0%, var(--ink-2) 0%, var(--ink) 55%, #0F1922 100%);
    /* padding-top: var(--header-h); */
    overflow: hidden;
}

.page-hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 6rem 1.5rem 5rem;
    text-align: center;
}

.page-hero-inner .eyebrow {
    display: block;
}

.page-hero-inner h1 {
    color: var(--text-on-dark);
    font-size: clamp(2.2rem, 4.6vw, 3.4rem);
    line-height: 1.08;
}

.page-hero-lede {
    color: var(--text-on-dark-muted);
    font-size: 1.1rem;
    /* max-width: 46ch; */
    margin: 1.3rem auto 0;
}

@media (max-width: 600px) {
    .page-hero-inner {
        padding: 4rem 1.5rem 3.5rem;
    }
}

.map-contact {
    width: 90%;
    margin: auto;
    height: 300px;
}

.btn-clay {
    background: var(--clay);
    border-color: var(--clay);
    color: #fff;
}

.btn-clay:hover {
    background: var(--clay-deep);
    border-color: var(--clay-deep);
    color: #fff;
}

.btn-outline-ink {
    border-color: var(--ink);
    color: var(--ink);
    padding: 10px 20px;
}

.btn-outline-ink:hover {
    background: var(--ink);
    color: #EFEAE0;
}

.card-room {
    border-color: var(--stone-line);
    border-radius: .25rem;
}

.card-room .card-img-top {
    /* aspect-ratio: 4/3; */
    object-fit: cover;
}

.card-room .card-title {
    color: var(--ink);
}

.text-clay {
    color: var(--clay) !important;
}

.badge-stone {
    background: var(--plaster-2);
    color: var(--text-muted);
    font-weight: 500;
}

@media(max-width:500px) {
    .page-hero-lede {
        font-size: 1rem;
    }

    .hero-inner,
    .room-grid {
        grid-template-columns: 1fr;

    }
.book-online{
    text-align: start;
}
    /* 
    .hero {
        padding-top: 10px;
    } */

}