:root {
    --navy: #20266f;
    --navy-deep: #15194f;
    --sky: #5ba9d8;
    --terracotta: #b85f45;
    --sand: #f1ece3;
    --paper: #fbfaf7;
    --white: #fff;
    --ink: #172233;
    --muted: #66707a;
    --line: rgba(23, 34, 51, .14);
    --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --container: 1240px;
    --header-height: 106px;
    --radius: 2px;
    --shadow: 0 24px 60px rgba(18, 24, 44, .14);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -.025em;
}
h1 { font-size: clamp(3.3rem, 7vw, 7.2rem); }
h2 { font-size: clamp(2.45rem, 4.5vw, 4.7rem); }
h3 { font-size: clamp(1.65rem, 2.5vw, 2.3rem); }
::selection { background: var(--sky); color: var(--white); }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: clamp(90px, 11vw, 160px) 0; }
.skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 200;
    transform: translateY(-150%);
    padding: 10px 16px;
    background: var(--navy);
    color: var(--white);
}
.skip-link:focus { transform: translateY(0); }
.eyebrow {
    margin-bottom: 18px;
    color: var(--terracotta);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .18em;
    line-height: 1.3;
    text-transform: uppercase;
}
.eyebrow.light { color: #bce6fa; }
.lead { font-family: var(--serif); font-size: clamp(1.35rem, 2.2vw, 1.8rem); line-height: 1.42; }
.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 25px;
    border: 1px solid var(--navy);
    border-radius: var(--radius);
    background: var(--navy);
    color: var(--white);
    font-size: .79rem;
    font-weight: 750;
    letter-spacing: .09em;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover { background: var(--navy-deep); border-color: var(--navy-deep); transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 10px 18px; font-size: .7rem; }
.button-ghost { border-color: rgba(255,255,255,.72); background: transparent; }
.button-ghost:hover { border-color: var(--white); background: var(--white); color: var(--navy); }
.button-light { border-color: var(--white); background: var(--white); color: var(--navy); }
.button-light:hover { border-color: var(--sky); background: var(--sky); color: var(--navy-deep); }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    color: var(--navy);
    font-size: .82rem;
    font-weight: 750;
    letter-spacing: .075em;
    line-height: 1.5;
    text-decoration: none;
    text-transform: uppercase;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.light-link { color: var(--white); }

/* Header */
.site-header {
    position: absolute;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.22);
    color: var(--white);
    transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}
.site-header.is-scrolled {
    position: fixed;
    background: rgba(251,250,247,.96);
    box-shadow: 0 8px 28px rgba(18, 24, 44, .09);
    color: var(--ink);
    backdrop-filter: blur(14px);
}
.header-inner { display: flex; min-height: var(--header-height); align-items: center; justify-content: space-between; gap: 34px; }
.brand { display: flex; width: 112px; height: 92px; align-items: center; flex: 0 0 auto; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.main-navigation { display: flex; align-items: center; gap: 30px; }
.main-navigation ul { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
.main-navigation ul a {
    position: relative;
    padding: 12px 0;
    font-size: .77rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-decoration: none;
    text-transform: uppercase;
}
.main-navigation ul a::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}
.main-navigation ul a:hover::after,
.main-navigation ul a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.site-header:not(.is-scrolled) .nav-cta { border-color: var(--white); background: var(--white); color: var(--navy); }
.menu-toggle { display: none; border: 0; background: none; cursor: pointer; }

/* Heroes */
.hero, .page-hero { position: relative; overflow: hidden; color: var(--white); background: var(--navy-deep); }
.hero-home { min-height: 680px; }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,16,41,.58) 0%, rgba(10,16,41,.32) 42%, rgba(10,16,41,.18) 72%, rgba(10,16,41,.14) 100%); }
.hero-content { position: relative; z-index: 2; display: flex; min-height: 680px; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding-top: calc(var(--header-height) + 50px); padding-bottom: 76px; }
.hero-content h1 { max-width: 820px; margin-bottom: 24px; font-size: clamp(2.35rem, 3.35vw, 3.65rem); text-shadow: 0 2px 20px rgba(10,16,41,.28); }
.hero-lead { max-width: 650px; margin-bottom: 34px; color: rgba(255,255,255,.89); font-size: clamp(1.05rem, 1.7vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.scroll-cue {
    position: absolute;
    z-index: 3;
    right: max(24px, calc((100vw - var(--container)) / 2));
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-decoration: none;
    text-transform: uppercase;
}
.scroll-cue span { display: block; width: 52px; height: 1px; background: rgba(255,255,255,.7); }
.page-hero { min-height: 680px; }
.page-hero-content { position: relative; z-index: 2; display: flex; min-height: 680px; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding-top: calc(var(--header-height) + 70px); padding-bottom: 76px; }
.page-hero-content h1 { max-width: 900px; margin-bottom: 0; font-size: clamp(2.2rem, 3vw, 3.35rem); text-shadow: 0 2px 20px rgba(10,16,41,.28); }

/* Shared layouts */
.split-layout { display: grid; grid-template-columns: 1.02fr .9fr; align-items: center; gap: clamp(55px, 9vw, 135px); }
.image-frame { position: relative; }
.image-frame::before { position: absolute; z-index: -1; top: -28px; right: -28px; width: 62%; height: 56%; border: 1px solid var(--sky); content: ""; }
.image-frame img { width: 100%; min-height: 610px; object-fit: cover; box-shadow: var(--shadow); }
.image-note { position: absolute; right: -1px; bottom: -1px; padding: 13px 18px; background: var(--paper); color: var(--muted); font-size: .69rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.text-column h2 { margin-bottom: 30px; color: var(--navy); }
.text-column p:not(.eyebrow) { margin-bottom: 25px; }
.section-heading { display: grid; grid-template-columns: 1.2fr .75fr; align-items: end; gap: 70px; margin-bottom: 60px; }
.section-heading h2 { margin-bottom: 0; color: var(--navy); }
.section-heading > p { max-width: 520px; margin-bottom: 10px; color: var(--muted); }
.narrow-copy { max-width: 900px; text-align: center; }
.narrow-copy h2 { color: var(--navy); }
.narrow-copy > p:last-child { color: var(--muted); }

/* Home */
.intro-section { overflow: hidden; }
.rooms-preview { background: var(--sand); }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.room-card { background: var(--paper); }
.room-card-offset { transform: translateY(42px); }
.room-card-image { display: block; overflow: hidden; aspect-ratio: .82; }
.room-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.room-card:hover .room-card-image img { transform: scale(1.035); }
.room-card-body { position: relative; padding: 30px 30px 34px; }
.room-card-body h3 { margin-bottom: 13px; color: var(--navy); font-size: 2.4rem; }
.room-card-body p:not(.room-number) { min-height: 58px; color: var(--muted); }
.room-number { position: absolute; top: 31px; right: 28px; color: var(--terracotta); font-size: .72rem; font-weight: 700; letter-spacing: .14em; }
.stay-section { overflow: hidden; background: var(--navy); color: var(--white); }
.stay-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: stretch; gap: 0; }
.stay-photo { margin-left: min(-6vw, -70px); }
.stay-photo img { width: 100%; height: 100%; min-height: 700px; object-fit: cover; }
.stay-content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 70px clamp(0px, 1vw, 20px) 70px clamp(60px, 8vw, 125px); }
.stay-content h2 { margin-bottom: 26px; }
.stay-content > p:not(.eyebrow) { color: rgba(255,255,255,.78); }
.feature-list { display: grid; width: 100%; grid-template-columns: 1fr 1fr; gap: 0 30px; margin: 27px 0 38px; padding: 0; list-style: none; }
.feature-list li { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.2); font-size: .94rem; }
.mosaic-gallery { display: grid; grid-template-columns: 1.08fr 1fr 1fr; grid-template-rows: 300px 300px; gap: 16px; }
.gallery-item { overflow: hidden; padding: 0; border: 0; background: var(--sand); cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-tall { grid-row: 1 / 3; }
.gallery-wide { grid-column: 2 / 4; }
.salento-callout { padding-top: 20px; }
.salento-callout-inner { padding: clamp(60px, 8vw, 110px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.salento-callout-inner h2 { max-width: 950px; margin: 0 auto 25px; color: var(--navy); }
.salento-callout-inner > p:not(.eyebrow) { max-width: 720px; margin: 0 auto 34px; color: var(--muted); }
.callout-actions { display: flex; align-items: center; justify-content: center; gap: 28px; }

/* La dimora */
.story-grid { display: grid; grid-template-columns: .72fr 1.15fr; gap: 10vw; }
.story-title { position: sticky; top: calc(var(--header-height) + 45px); align-self: start; }
.story-title h2 { color: var(--navy); }
.story-copy p { margin-bottom: 25px; }
.editorial-gallery { padding-top: 20px; background: linear-gradient(to bottom, var(--paper) 38%, var(--sand) 38%); }
.editorial-grid { display: grid; grid-template-columns: 1.55fr .85fr; gap: 18px; }
.editorial-grid button, .space-collage button { overflow: hidden; padding: 0; border: 0; background: none; cursor: zoom-in; }
.editorial-main img { width: 100%; height: 720px; object-fit: cover; }
.editorial-stack { display: grid; gap: 18px; }
.editorial-stack img { width: 100%; height: 351px; object-fit: cover; }
.spaces-section { background: var(--sand); }
.split-spaces { grid-template-columns: .82fr 1.15fr; }
.space-collage { position: relative; min-height: 660px; }
.space-collage button:first-child { position: absolute; top: 0; left: 0; width: 78%; height: 500px; }
.space-collage button:last-child { position: absolute; right: 0; bottom: 0; width: 54%; height: 330px; border: 14px solid var(--sand); }
.space-collage img { width: 100%; height: 100%; object-fit: cover; }
.cta-band { padding: 75px 0; background: var(--navy); color: var(--white); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-band h2 { max-width: 780px; margin-bottom: 0; font-size: clamp(2.2rem, 4vw, 4rem); }

/* Rooms */
.rooms-intro { padding-bottom: 110px; }
.room-jump { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }
.room-jump a { min-width: 120px; padding: 10px 18px; border: 1px solid var(--line); color: var(--navy); font-size: .74rem; font-weight: 750; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; transition: .2s ease; }
.room-jump a:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.room-detail { padding: 120px 0; }
.room-diana { background: #f1e4c8; }
.room-venere { background: #e8c7bd; }
.room-minerva { background: #cfdccc; }
.room-detail-grid { display: grid; grid-template-columns: .75fr 1.35fr; align-items: center; gap: 8vw; }
.room-detail-reverse { grid-template-columns: 1.35fr .75fr; }
.room-detail-reverse .room-copy { grid-column: 2; grid-row: 1; }
.room-detail-reverse .room-gallery { grid-column: 1; grid-row: 1; }
.room-copy h2 { margin-bottom: 22px; color: var(--navy); font-size: clamp(4rem, 7vw, 7.5rem); }
.room-kicker { margin-bottom: 4px; color: var(--terracotta); font-size: .75rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.room-copy .lead { font-size: clamp(1.2rem, 1.8vw, 1.55rem); }
.room-features { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 34px; padding: 0; list-style: none; }
.room-features li { padding: 7px 11px; border: 1px solid rgba(32,38,111,.3); color: var(--navy); font-size: .74rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.room-gallery { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; gap: 12px; }
.room-gallery button { overflow: hidden; padding: 0; border: 0; background: rgba(255,255,255,.35); cursor: zoom-in; }
.room-gallery button.room-gallery-main { grid-row: span 2; }
.room-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.room-gallery button:hover img { transform: scale(1.035); }
.services-section { background: var(--navy-deep); color: var(--white); }
.services-grid { display: grid; grid-template-columns: .72fr 1.25fr; gap: 10vw; }
.services-heading h2 { margin-bottom: 22px; }
.services-heading > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.services-list ul { margin: 0 0 32px; padding: 0; list-style: none; }
.services-list li { display: grid; grid-template-columns: 56px 1fr; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.services-list li span { color: var(--sky); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.service-note { color: rgba(255,255,255,.72); font-size: .92rem; }

/* Territory */
.territory-intro { padding-bottom: 80px; }
.destinations-section { padding-top: 20px; }
.destinations-grid { display: grid; grid-template-columns: 1.2fr .9fr; gap: 18px; }
.destination-card { position: relative; overflow: hidden; min-height: 0; padding: 0; background: var(--sand); }
.destination-card:nth-child(2) { background: var(--navy); color: var(--white); }
.destination-card:nth-child(3) { grid-column: 2; background: #d5e9f2; }
.destination-large { grid-row: 1 / 3; display: block; min-height: 0; background: linear-gradient(145deg, #e5ded1, #f5f1ea); }
.destination-photo { height: 260px; overflow: hidden; }
.destination-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.destination-card:hover .destination-photo img { transform: scale(1.035); }
.destination-copy { position: relative; padding: clamp(45px, 6vw, 80px); }
.destination-large .destination-photo { height: 500px; }
.destination-large .destination-copy { display: flex; min-height: 350px; flex-direction: column; justify-content: flex-end; }
.destination-card h2 { margin-bottom: 22px; color: var(--navy); }
.destination-card:nth-child(2) h2 { color: var(--white); }
.destination-index { position: absolute; top: 32px; right: 36px; color: var(--terracotta); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.destination-card:nth-child(2) .destination-index { color: var(--sky); }
.route-section { background: var(--navy-deep); color: var(--white); }
.route-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; }
.route-heading { position: sticky; top: calc(var(--header-height) + 45px); align-self: start; }
.route-list article { display: grid; grid-template-columns: 62px 1fr; gap: 12px; padding: 32px 0; border-top: 1px solid rgba(255,255,255,.18); }
.route-list article:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.route-list span { padding-top: 8px; color: var(--sky); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.route-list h3 { margin-bottom: 10px; font-size: 2.1rem; }
.route-list p { margin-bottom: 0; color: rgba(255,255,255,.72); }
.map-callout { padding-top: 90px; }
.map-callout-inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; padding: 55px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.map-callout h2 { margin-bottom: 12px; color: var(--navy); font-size: clamp(2.2rem, 4vw, 4rem); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .82fr 1.1fr; align-items: start; gap: 9vw; }
.contact-intro { position: sticky; top: calc(var(--header-height) + 40px); }
.contact-intro h2 { color: var(--navy); }
.direct-contacts { margin-top: 45px; border-top: 1px solid var(--line); }
.direct-contacts > * { display: grid; gap: 2px; padding: 17px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.direct-contacts span { color: var(--muted); font-size: .68rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.direct-contacts strong { overflow-wrap: anywhere; font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.form-panel { padding: clamp(28px, 5vw, 62px); background: var(--sand); }
.contact-form { display: grid; gap: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { color: var(--ink); font-size: .72rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid rgba(23,34,51,.25);
    border-radius: 0;
    outline: 0;
    background: rgba(255,255,255,.7);
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(32,38,111,.1); }
.field.is-disabled { opacity: .55; }
.check-field { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 10px; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.check-field input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--navy); }
.submit-button { justify-self: start; min-width: 210px; border: 0; cursor: pointer; }
.form-required { margin: -10px 0 0; color: var(--muted); font-size: .72rem; }
.captcha-field small { display: block; margin-top: 7px; color: var(--muted); font-size: .72rem; line-height: 1.45; }
.captcha-field input { max-width: 160px; }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-message { margin-bottom: 25px; padding: 18px 20px; border-left: 3px solid; background: rgba(255,255,255,.65); }
.form-message p { margin-bottom: 0; }
.form-message.success { border-color: #2f7354; }
.form-message.error { border-color: #a23b31; }
.directions-section { background: var(--sand); }
.directions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.directions-grid article { min-height: 310px; padding: 36px; background: var(--paper); }
.directions-grid span { color: var(--terracotta); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.directions-grid h3 { margin: 25px 0 16px; color: var(--navy); }
.directions-grid p { color: var(--muted); font-size: .94rem; }
.location-panel { display: flex; align-items: center; justify-content: space-between; gap: 35px; margin-top: 18px; padding: 42px; background: var(--navy); color: var(--white); }
.location-panel h3 { margin-bottom: 0; font-size: clamp(1.7rem, 3vw, 2.6rem); }

/* Legal pages */
.simple-hero { padding: calc(var(--header-height) + 90px) 0 70px; background: var(--navy); color: var(--white); }
.simple-hero h1 { max-width: 850px; margin-bottom: 0; font-size: clamp(3.1rem, 6vw, 6rem); }
.legal-content { max-width: 920px; }
.legal-content h2 { margin: 55px 0 20px; color: var(--navy); font-size: 2rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: #3e4852; }
.legal-note { padding: 20px 24px; border-left: 3px solid var(--sky); background: var(--sand); }

/* Footer */
.site-footer { padding: 86px 0 25px; background: #111631; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr .7fr 1.2fr; gap: 55px; }
.footer-brand img { width: 120px; height: 102px; margin-bottom: 20px; object-fit: contain; }
.footer-brand p, .footer-action p, .site-footer address { color: rgba(255,255,255,.66); font-size: .9rem; font-style: normal; }
.site-footer address a { text-decoration: none; }
.site-footer a:hover { color: var(--sky); }
.site-footer .button-light:hover { border-color: var(--sky); background: var(--sky); color: var(--navy-deep); }
.footer-heading { margin-bottom: 20px; color: var(--white); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .88rem; text-decoration: none; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 64px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.48); font-size: .73rem; }
.footer-bottom p { margin-bottom: 0; }
.footer-bottom div { display: flex; gap: 20px; }
.footer-bottom a { text-decoration: none; }
.footer-cookie-link { padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; }
.footer-cookie-link:hover { color: var(--sky); }
.floating-actions {
    position: fixed;
    z-index: 45;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.floating-contact {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    border-radius: 999px;
    background: var(--terracotta);
    box-shadow: 0 10px 30px rgba(31,22,20,.24);
    color: var(--white);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}
.floating-contact svg { width: 20px; height: 20px; fill: currentColor; }
.floating-contact:hover { background: var(--navy-deep); }
.floating-whatsapp { background: #1f945b; }

/* Cookie notice */
.cookie-banner[hidden] { display: none; }
.cookie-banner {
    position: fixed;
    z-index: 90;
    right: 20px;
    bottom: 86px;
    left: 20px;
    display: flex;
    width: min(760px, calc(100% - 40px));
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 22px 24px;
    border-top: 3px solid var(--sky);
    background: var(--paper);
    box-shadow: 0 20px 60px rgba(9,12,28,.25);
}
.cookie-copy strong { display: block; margin-bottom: 5px; color: var(--navy); font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.cookie-copy p { margin-bottom: 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }
.cookie-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 18px; }
.cookie-actions a { color: var(--navy); font-size: .73rem; font-weight: 750; white-space: nowrap; }

/* Lightbox */
.lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; padding: 50px 85px; border: 0; background: rgba(9,12,28,.96); color: var(--white); }
.lightbox::backdrop { background: rgba(9,12,28,.78); }
.lightbox[open] { display: grid; grid-template-columns: 52px 1fr 52px; align-items: center; gap: 20px; }
.lightbox figure { display: grid; max-width: min(1200px, 100%); max-height: calc(100vh - 100px); justify-self: center; margin: 0; }
.lightbox figure img { max-width: 100%; max-height: calc(100vh - 150px); object-fit: contain; }
.lightbox figcaption { min-height: 25px; padding-top: 12px; color: rgba(255,255,255,.75); font-size: .78rem; text-align: center; }
.lightbox-close, .lightbox-control { border: 0; background: transparent; color: var(--white); cursor: pointer; }
.lightbox-close { position: fixed; top: 18px; right: 28px; font-size: 2.5rem; font-weight: 200; }
.lightbox-control { width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-size: 2.2rem; line-height: 1; }

/* Reveals */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
    :root { --header-height: 94px; }
    .site-header.is-menu-open {
        position: fixed;
        background: var(--navy-deep);
        box-shadow: none;
        color: var(--white);
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }
    .container { width: min(calc(100% - 40px), var(--container)); }
    .brand { position: relative; z-index: 2; width: 96px; height: 82px; }
    .menu-toggle { position: relative; display: flex; z-index: 2; align-items: center; gap: 13px; padding: 12px 0; color: inherit; }
    .menu-toggle-label { font-size: .7rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
    .menu-toggle-icon { display: grid; width: 27px; gap: 7px; }
    .menu-toggle-icon span { display: block; width: 100%; height: 1px; background: currentColor; transition: transform .25s; }
    .menu-toggle[aria-expanded="true"] .menu-toggle-icon span:first-child { transform: translateY(4px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] .menu-toggle-icon span:last-child { transform: translateY(-4px) rotate(-45deg); }
    .main-navigation {
        position: fixed;
        inset: 0;
        height: 100vh;
        height: 100dvh;
        overflow-y: auto;
        overscroll-behavior: contain;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 34px;
        padding: calc(var(--header-height) + 24px) max(26px, 8vw) max(30px, env(safe-area-inset-bottom));
        background: var(--navy-deep);
        color: var(--white);
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity .25s, transform .25s, visibility .25s;
    }
    .main-navigation.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
    .main-navigation > * { flex-shrink: 0; }
    body.menu-open .floating-actions { visibility: hidden; }
    .main-navigation ul { flex-direction: column; align-items: flex-start; gap: 8px; }
    .main-navigation ul a { font-family: var(--serif); font-size: clamp(2rem, 6vw, 3.6rem); font-weight: 400; letter-spacing: -.02em; text-transform: none; }
    .main-navigation .nav-cta { border-color: var(--white); background: var(--white); color: var(--navy); }
    .site-header.is-scrolled .menu-toggle[aria-expanded="true"], .site-header.is-scrolled:has(.main-navigation.is-open) { color: var(--white); }
    .split-layout, .stay-grid, .story-grid, .room-detail-grid, .room-detail-reverse, .services-grid, .route-layout, .contact-grid { gap: 65px; }
    .room-detail-grid, .room-detail-reverse { grid-template-columns: .8fr 1.2fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
    body { font-size: 16px; }
    .container { width: min(calc(100% - 32px), var(--container)); }
    .section { padding: 78px 0; }
    .hero-home, .hero-content { min-height: 560px; }
    .hero-content h1 { font-size: clamp(2.35rem, 9vw, 3.35rem); }
    .hero-content { justify-content: flex-end; padding-bottom: 64px; }
    .hero-shade { background: linear-gradient(180deg, rgba(10,16,41,.62) 0%, rgba(10,16,41,.35) 46%, rgba(10,16,41,.20) 76%, rgba(10,16,41,.18) 100%); }
    .scroll-cue { display: none; }
    .page-hero, .page-hero-content { min-height: 560px; }
    .page-hero-content h1 { font-size: clamp(2.2rem, 8.5vw, 3.15rem); }
    .split-layout, .stay-grid, .story-grid, .editorial-grid, .room-detail-grid, .room-detail-reverse, .services-grid, .route-layout, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .section-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 42px; }
    .image-frame img { min-height: 500px; }
    .image-frame::before { top: -18px; right: -12px; }
    .rooms-grid { grid-template-columns: 1fr; gap: 18px; }
    .room-card-offset { transform: none; }
    .room-card-image { aspect-ratio: 1.18; }
    .stay-photo { margin: 0; }
    .stay-photo img { min-height: 470px; }
    .stay-content { padding: 22px 0 0; }
    .feature-list { grid-template-columns: 1fr; }
    .mosaic-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 180px 240px; }
    .gallery-tall { grid-column: 1 / 3; grid-row: auto; }
    .gallery-wide { grid-column: 1 / 3; }
    .salento-callout-inner { padding-inline: 0; }
    .callout-actions { flex-direction: column; }
    .story-title, .route-heading, .contact-intro { position: static; }
    .editorial-main img { height: 480px; }
    .editorial-stack { grid-template-columns: 1fr 1fr; }
    .editorial-stack img { height: 230px; }
    .split-spaces { grid-template-columns: 1fr; }
    .space-collage { min-height: 550px; }
    .cta-band-inner, .map-callout-inner, .location-panel { flex-direction: column; align-items: flex-start; }
    .room-detail-reverse .room-copy, .room-detail-reverse .room-gallery { grid-column: auto; grid-row: auto; }
    .room-detail-reverse .room-copy { order: 1; }
    .room-detail-reverse .room-gallery { order: 2; }
    .room-detail { padding: 82px 0; }
    .room-gallery { grid-auto-rows: 175px; }
    .destinations-grid { grid-template-columns: 1fr; }
    .destination-card:nth-child(3) { grid-column: auto; }
    .destination-large { grid-row: auto; min-height: 0; }
    .destination-large .destination-photo { height: 320px; }
    .destination-large .destination-copy { min-height: 0; }
    .directions-grid { grid-template-columns: 1fr; }
    .directions-grid article { min-height: auto; }
    .field-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
    .footer-action { grid-column: 1 / 3; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .lightbox { padding: 60px 14px 20px; }
    .lightbox[open] { grid-template-columns: 42px 1fr 42px; gap: 4px; }
    .lightbox-control { width: 40px; height: 40px; }
    .cookie-banner { align-items: flex-start; flex-direction: column; gap: 16px; }
}

@media (max-width: 520px) {
    .hero-actions { width: 100%; }
    .hero-actions .button { width: 100%; }
    .room-jump { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .room-jump a { min-width: 0; padding-inline: 7px; }
    .mosaic-gallery { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 250px); }
    .gallery-tall, .gallery-wide { grid-column: auto; }
    .editorial-stack { grid-template-columns: 1fr; }
    .editorial-stack img { height: 260px; }
    .space-collage { min-height: 470px; }
    .space-collage button:first-child { width: 92%; height: 350px; }
    .space-collage button:last-child { width: 65%; height: 235px; border-width: 9px; }
    .room-gallery { grid-auto-rows: 145px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-action { grid-column: auto; }
    .floating-contact span { display: none; }
    .floating-contact { width: 50px; height: 50px; justify-content: center; padding: 0; }
    .floating-actions { right: 14px; bottom: 14px; }
    .cookie-banner { right: 14px; bottom: 78px; left: 14px; width: calc(100% - 28px); padding: 20px; }
    .cookie-actions { width: 100%; flex-wrap: wrap; justify-content: space-between; }
    .lightbox[open] { grid-template-columns: 1fr; }
    .lightbox-control { position: fixed; z-index: 2; top: 50%; background: rgba(9,12,28,.55); }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    .js .reveal { opacity: 1; transform: none; }
}
