:root {
    --red: #C0392B;
    --red-deep: #8B0000;
    --red-mist: rgba(192, 57, 43, .07);
    --red-border: rgba(192, 57, 43, .20);
    --gold: #C9A84C;
    --gold-rich: #E8C96A;
    --gold-deep: #9A7530;
    --gold-mist: rgba(201, 168, 76, .10);
    --gold-border: rgba(201, 168, 76, .28);
    --bg: #FFFDF9;
    --bg-alt: #F8F3EB;
    --bg-card: #FFFFFF;
    --ivory: #F2EAD6;
    --sand: #E8DCC8;
    --cream: #FDF7EE;
    --ink: #1A0805;
    --charcoal: #2C1810;
    --graphite: #5A3830;
    --muted: #9A7060;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Jost', system-ui, sans-serif;
    --font-thin: 'Cormorant Garamond', Georgia, serif;
    --ease: cubic-bezier(.25, .46, .45, .94);
    --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --shadow-sm: 0 2px 12px rgba(139, 0, 0, .08);
    --shadow-md: 0 6px 30px rgba(139, 0, 0, .12);
    --shadow-lg: 0 12px 48px rgba(139, 0, 0, .18);
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, .22);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--charcoal);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--ivory);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 99px;
}

/* NAVBAR */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 52px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .4s var(--ease);
}

.nav.scrolled {
    background: rgba(255, 253, 249, .97);
    backdrop-filter: blur(16px);
    height: 68px;
    box-shadow: 0 2px 24px rgba(139, 0, 0, .09);
    border-bottom: 1px solid var(--gold-border);
}

.nav-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-logo img {
    height: 72px;
    object-fit: contain;
    transition: height .35s;
    mix-blend-mode: multiply;
}

.nav.scrolled .nav-logo img {
    height: 54px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--charcoal);
    position: relative;
    transition: color .25s;
}

.nav.on-hero .nav-links a {
    color: rgba(255, 255, 255, .9);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--red);
    transition: width .3s var(--ease);
}

.nav-links a:hover {
    color: var(--red);
}

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

.nav.on-hero .nav-links a:hover {
    color: var(--gold-rich);
}

.nav.on-hero .nav-links a:hover::after {
    background: var(--gold-rich);
}

.btn-nav-reserve {
    padding: 10px 26px;
    background: var(--red);
    color: #fff;
    font-size: .71rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all .28s;
}

.btn-nav-reserve::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-deep));
    opacity: 0;
    transition: opacity .28s;
}

.btn-nav-reserve:hover::after {
    opacity: 1;
}

.btn-nav-reserve:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

.btn-nav-reserve span {
    position: relative;
    z-index: 1;
}

.nav.on-hero .btn-nav-reserve {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}

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

.nav-burger span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--charcoal);
    transition: all .3s;
}

.nav.on-hero .nav-burger span {
    background: #fff;
}

/* HERO */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 4, 2, .82) 32%, rgba(15, 4, 2, .28) 100%),
        url('https://images.unsplash.com/photo-1571003123894-1f0594d2b5d9?w=1800&q=80') center/cover no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(139, 0, 0, .12) 0%, transparent 45%, rgba(139, 0, 0, .22) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 130px 52px 200px;
    max-width: 700px;
}

.hero-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 22px;
    animation: fadeUp .7s var(--ease-out) .1s both;
}

.hero-star {
    color: var(--gold-rich);
    font-size: 1.1rem;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    animation: fadeUp .7s var(--ease-out) .15s both;
}

.hero-eyebrow-line {
    width: 36px;
    height: 1px;
    background: var(--gold-rich);
}

.hero-eyebrow-text {
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold-rich);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 400;
    line-height: 1.06;
    color: #fff;
    margin-bottom: 10px;
    animation: fadeUp .8s var(--ease-out) .2s both;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-rich);
}

.hero-subtitle {
    font-family: var(--font-thin);
    font-size: clamp(1.4rem, 2.8vw, 2.4rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, .72);
    margin-bottom: 24px;
    animation: fadeUp .8s var(--ease-out) .27s both;
}

.hero-desc {
    font-size: .92rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, .78);
    max-width: 460px;
    margin-bottom: 38px;
    animation: fadeUp .8s var(--ease-out) .34s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    animation: fadeUp .8s var(--ease-out) .42s both;
}

.btn-primary-red {
    padding: 15px 38px;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    color: #fff;
    font-size: .77rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    box-shadow: 0 8px 28px rgba(139, 0, 0, .4);
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

.btn-primary-red::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    opacity: 0;
    transition: opacity .3s;
}

.btn-primary-red:hover::after {
    opacity: 1;
}

.btn-primary-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(139, 0, 0, .5);
}

.btn-primary-red span {
    position: relative;
    z-index: 1;
}

.btn-outline-white {
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, .45);
    cursor: pointer;
    border-radius: 2px;
    transition: all .3s;
}

.btn-outline-white:hover {
    border-color: var(--gold-rich);
    color: var(--gold-rich);
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    animation: fadeUp .8s var(--ease-out) .55s both;
}

.hero-stat {
    flex: 1;
    padding: 20px 36px;
    border-right: 1px solid rgba(201, 168, 76, .18);
    background: rgba(15, 4, 2, .65);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201, 168, 76, .18);
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--gold-rich);
    line-height: 1;
    margin-bottom: 3px;
}

.hero-stat-label {
    font-size: .63rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
}

.scroll-hint {
    position: absolute;
    bottom: 96px;
    right: 52px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeIn 1s .8s both;
}

.scroll-hint-text {
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(var(--gold-rich), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* SECTIONS */
.section {
    padding: 96px 52px;
}

.section-alt {
    background: var(--bg-alt);
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 14px;
}

.section-eyebrow-line {
    width: 28px;
    height: 1.5px;
    background: var(--red);
}

.section-eyebrow-text {
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--red);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 13px;
}

.section-title em {
    font-style: italic;
    color: var(--red);
}

.section-subtitle {
    font-size: .92rem;
    font-weight: 300;
    color: var(--graphite);
    line-height: 1.8;
    max-width: 520px;
}

.ornament {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 18px 0;
}

.ornament-line {
    flex: 1;
    height: 1px;
    background: var(--sand);
}

.ornament-diamond {
    width: 7px;
    height: 7px;
    background: var(--gold);
    transform: rotate(45deg);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal].d1 {
    transition-delay: .1s;
}

[data-reveal].d2 {
    transition-delay: .2s;
}

[data-reveal].d3 {
    transition-delay: .3s;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--sand);
    border: 1px solid var(--sand);
    margin-top: 52px;
}

.service-item {
    background: var(--bg-card);
    padding: 30px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    text-align: center;
    transition: all .3s;
}

.service-item:hover {
    background: var(--cream);
}

.service-icon {
    width: 52px;
    height: 52px;
    border: 1.5px solid var(--gold-border);
    background: var(--gold-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    transition: all .3s;
}

.service-item:hover .service-icon {
    background: var(--red-mist);
    border-color: var(--red-border);
}

.service-icon svg {
    width: 21px;
    height: 21px;
}

.service-label {
    font-size: .69rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--graphite);
}

/* CHAMBRES */
.rooms-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 48px;
}

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

.room-card {
    background: var(--bg-card);
    border: 1px solid var(--sand);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .4s var(--ease);
    border-radius: 2px;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.room-card.featured {
    grid-column: span 2;
}

.room-visual {
    height: 238px;
    position: relative;
    overflow: hidden;
}

.room-card.featured .room-visual {
    height: 298px;
}

.room-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

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

.room-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 8, 5, .62) 0%, transparent 55%);
}

.room-badge {
    position: absolute;
    top: 13px;
    right: 13px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    color: #fff;
    font-size: .57rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(139, 0, 0, .3);
}

.room-stars-overlay {
    position: absolute;
    bottom: 13px;
    left: 14px;
    display: flex;
    gap: 3px;
}

.room-stars-overlay span {
    color: var(--gold-rich);
    font-size: .72rem;
}

.room-info {
    padding: 18px 20px;
}

.room-type {
    font-size: .59rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 4px;
}

.room-name {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 9px;
}

.room-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.room-feat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .69rem;
    color: var(--muted);
}

.room-feat svg {
    width: 11px;
    height: 11px;
    color: var(--gold);
}

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

.room-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--red);
}

.room-price-unit {
    font-size: .61rem;
    color: var(--muted);
    margin-left: 3px;
}

.btn-book {
    padding: 7px 17px;
    background: transparent;
    border: 1.5px solid var(--red);
    color: var(--red);
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all .25s;
}

.btn-book:hover {
    background: var(--red);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

/* CONFERENCE */
.conf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center;
}

.conf-images {
    position: relative;
}

.conf-img-main {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: var(--shadow-md);
}

.conf-img-accent {
    position: absolute;
    bottom: -26px;
    right: -26px;
    width: 195px;
    height: 145px;
    object-fit: cover;
    border: 4px solid var(--bg);
    box-shadow: var(--shadow-md);
    border-radius: 2px;
}

.conf-deco {
    position: absolute;
    top: -14px;
    left: -14px;
    width: 72px;
    height: 72px;
    border: 1.5px solid var(--gold-border);
}

.conf-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    margin-bottom: 26px;
    background: var(--red-mist);
    border: 1px solid var(--red-border);
    border-radius: 2px;
}

.conf-badge svg {
    width: 14px;
    height: 14px;
    color: var(--red);
}

.conf-badge-text {
    font-size: .69rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--red);
}

.conf-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 26px 0 34px;
}

.conf-feat {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 13px;
    background: var(--bg-card);
    border: 1px solid var(--sand);
    border-radius: 2px;
}

.conf-feat-ico {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    background: var(--red-mist);
    border: 1px solid var(--red-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
}

.conf-feat-ico svg {
    width: 13px;
    height: 13px;
}

.conf-feat-label {
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 2px;
}

.conf-feat-text {
    font-size: .77rem;
    color: var(--graphite);
    font-weight: 300;
    line-height: 1.5;
}

/* GALERIE */
.gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
}

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

.g-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-radius: 2px;
}

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

.g-item:nth-child(2) {
    grid-column: span 3;
}

.g-item:nth-child(3) {
    grid-column: span 3;
}

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

.g-item:nth-child(5) {
    grid-column: span 2;
}

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

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

.g-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 8, 5, .48) 0%, transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.g-zoom {
    width: 42px;
    height: 42px;
    border: 1.5px solid rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transform: scale(.8);
    transition: all .3s;
}

.g-item:hover .g-zoom {
    opacity: 1;
    transform: scale(1);
}

.g-zoom svg {
    width: 17px;
    height: 17px;
}

/* TARIFS */
.pricing-intro {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 48px;
}

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

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--sand);
    padding: 30px 22px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: var(--shadow-sm);
    transition: all .3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border-color: var(--red);
    box-shadow: 0 8px 40px rgba(192, 57, 43, .16);
}

.pricing-card.featured::before {
    content: 'Le Plus Populaire';
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 13px;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    color: #fff;
    font-size: .57rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.pricing-type {
    font-size: .59rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 7px;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--ivory);
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 500;
    color: var(--red);
    line-height: 1;
    display: block;
}

.pricing-unit {
    font-size: .68rem;
    color: var(--muted);
    letter-spacing: .06em;
    display: block;
    margin-top: 3px;
    margin-bottom: 22px;
}

.pricing-list {
    list-style: none;
    flex: 1;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .79rem;
    color: var(--graphite);
    font-weight: 300;
}

.pricing-list li::before {
    content: '';
    width: 13px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    flex-shrink: 0;
}

.btn-price {
    padding: 11px;
    text-align: center;
    font-size: .67rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all .25s;
    border: none;
}

.btn-price-outline {
    background: transparent;
    border: 1.5px solid var(--red);
    color: var(--red);
}

.btn-price-outline:hover {
    background: var(--red);
    color: #fff;
}

.btn-price-filled {
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn-price-filled:hover {
    box-shadow: 0 8px 24px rgba(192, 57, 43, .35);
    transform: translateY(-1px);
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 68px;
    align-items: start;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-ico {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: 1.5px solid var(--gold-border);
    background: var(--gold-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
}

.contact-ico svg {
    width: 16px;
    height: 16px;
}

.contact-label {
    font-size: .59rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 3px;
}

.contact-val {
    font-size: .87rem;
    color: var(--graphite);
    font-weight: 300;
    line-height: 1.6;
}

.map-wrap {
    margin-top: 26px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--sand);
    padding: 34px;
    box-shadow: var(--shadow-sm);
    border-radius: 2px;
}

.form-eyebrow {
    font-size: .59rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 5px;
}

.form-heading {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 22px;
}

.form-heading em {
    font-style: italic;
    color: var(--red);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fg.full {
    grid-column: span 2;
}

.fg label {
    font-size: .61rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--graphite);
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    padding: 10px 13px;
    background: var(--bg-alt);
    border: 1.5px solid var(--sand);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 300;
    outline: none;
    border-radius: 2px;
    transition: border-color .25s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, .07);
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: #bba898;
}

.fg select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A7060' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
}

.fg textarea {
    resize: vertical;
    min-height: 88px;
}

/* FOOTER */
footer {
    background: var(--ink);
    border-top: 3px solid var(--red);
    padding: 60px 52px 26px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-logo img {
    height: 68px;
    object-fit: contain;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
    opacity: .85;
}

.footer-desc {
    font-size: .83rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .4);
    line-height: 1.8;
}

.footer-bar {
    width: 34px;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    margin: 14px 0;
}

.footer-col-title {
    font-size: .61rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    font-size: .81rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .38);
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--gold-rich);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: .69rem;
    color: rgba(255, 255, 255, .2);
    letter-spacing: .06em;
}

.footer-stars-row {
    display: flex;
    gap: 4px;
}

.footer-stars-row span {
    color: var(--gold-rich);
    font-size: .78rem;
}

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 8, 5, .72);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    width: 100%;
    max-width: 540px;
    background: var(--bg);
    border-top: 3px solid var(--red);
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(22px);
    transition: transform .4s var(--ease-spring);
    border-radius: 2px;
    box-shadow: 0 24px 80px rgba(139, 0, 0, .28);
}

.modal-overlay.open .modal-box {
    transform: translateY(0);
}

.modal-head {
    padding: 22px 26px 18px;
    border-bottom: 1px solid var(--sand);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--cream);
}

.modal-eyebrow {
    font-size: .57rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 3px;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--ink);
}

.modal-close {
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--sand);
    background: transparent;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .85rem;
    border-radius: 2px;
    transition: all .2s;
}

.modal-close:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-mist);
}

.modal-body {
    padding: 22px 26px 26px;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    padding: 88px 30px 36px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    border-left: 3px solid var(--red);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-logo img {
    height: 54px;
    object-fit: contain;
    mix-blend-mode: multiply;
    margin-bottom: 28px;
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.mobile-menu-links a {
    display: block;
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--ink);
    padding: 9px 0;
    border-bottom: 1px solid var(--sand);
    transition: color .2s;
}

.mobile-menu-links a:hover {
    color: var(--red);
}

.mobile-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--sand);
    background: transparent;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.05rem;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1)
    }

    50% {
        opacity: .4;
        transform: scaleY(.6)
    }
}

/* RESPONSIVE */
@media(max-width:1100px) {
    .nav {
        padding: 0 28px
    }

    .section {
        padding: 72px 28px
    }

    .hero-content {
        padding: 120px 28px 190px
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr)
    }

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

    .room-card.featured {
        grid-column: span 2
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr
    }

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

@media(max-width:768px) {

    .nav-links,
    .nav-cta {
        display: none
    }

    .nav-burger {
        display: flex
    }

    .nav {
        padding: 0 20px
    }

    .section {
        padding: 56px 20px
    }

    .hero-content {
        padding: 100px 20px 170px;
        max-width: 100%
    }

    .hero-stats {
        flex-wrap: wrap
    }

    .hero-stat {
        min-width: 50%
    }

    .scroll-hint {
        display: none
    }

    .rooms-intro {
        grid-template-columns: 1fr;
        gap: 24px
    }

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

    .room-card.featured {
        grid-column: span 1
    }

    .conf-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .conf-img-accent {
        display: none
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto
    }

    .g-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 190px
    }

    .pricing-grid {
        grid-template-columns: 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }

    .form-grid-2 {
        grid-template-columns: 1fr
    }

    .fg.full {
        grid-column: span 1
    }

    .conf-feats {
        grid-template-columns: 1fr
    }

    .rooms-intro .section-subtitle {
        display: none
    }
}