/* Hotel Unfiltered: shared visual system, discovery through confirmation. */
:root {
    --accent: #0057d9;
    --accent-hover: #0045ad;
    --ink: #182338;
    --ink-light: #526079;
    --ink-muted: #69758a;
    --paper: #fff;
    --paper-warm: #f5f7fb;
    --bg: #f5f7fb;
    --surface: #fff;
    --border: #dfe5ef;
    --gold: #e6a028;
    --radius: 12px;
    --shadow: 0 8px 28px #1e355f0b;
    --font-sans: Arial, Helvetica, sans-serif;
    --font-body: var(--font-sans);
    --font-display: var(--font-sans);
    --brand-navy: #003580;
    --brand-yellow: #ffbc00;
    --green: #00853f;
    --red: #c62828;
    --blue: var(--accent);
    --surface-warm: #f3f5f7;
    --accent-soft: #0057d914;
    --border-focus: var(--accent);
    --font-serif: var(--font-sans);
    --font-mono: var(--font-sans);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 152px;
}
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.55;
    overflow-x: clip;
    letter-spacing: normal;
}
body::before,body::after {
    display: none;
}
h1,h2,h3,h4,p {
    letter-spacing: normal;
}
h1,h2,h3,h4 {
    font-family: var(--font-sans);
    color: var(--ink);
}
a {
    color: var(--accent);
}
button,input,select,textarea {
    font: inherit;
}
button,a,input,select {
    touch-action: manipulation;
}
button {
    cursor: pointer;
}
button:disabled {
    cursor: not-allowed;
    opacity: .48;
}
button:focus-visible,a:focus-visible,input:focus-visible,select:focus-visible,[tabindex]:focus-visible {
    outline: 3px solid #88adff;
    outline-offset: 3px;
}
input,select,textarea {
    max-width: 100%;
    color: var(--ink);
    background: #fff;
}
img {
    max-width: 100%;
}
svg {
    flex-shrink: 0;
}
main {
    min-height: 72vh;
}
.hidden,[hidden] {
    display: none!important;
}
.view {
    display: none;
}
.view.active {
    display: block;
}
.skip-link {
    position: fixed;
    left: 16px;
    top: -100px;
    z-index: 9999;
    padding: 12px;
    background: #fff;
}
.skip-link:focus {
    top: 12px;
}
.site-header {
    height: 80px;
    padding: 0 max(24px,calc((100vw - 1240px)/2));
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: none;
    position: relative;
    z-index: 110;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-currency span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.site-currency select { width: 74px; height: 38px; padding: 0 8px; border: 1px solid #7d8da6; border-radius: 7px; background: #fff; color: #19253d; font: inherit; font-size: 13px; font-weight: 600; cursor: pointer; }
.site-currency select:focus-visible { outline: 2px solid #0057e7; outline-offset: 2px; }
.site-currency select:disabled { background: #edf1f7; cursor: default; }
@media (max-width: 600px) {
    .site-currency select { width: 62px; height: 36px; padding: 0 4px; font-size: 12px; }
}
@media (max-width: 480px) {
    .site-header .brand-wordmark { display: none; }
}
.logo {
    font-family: var(--font-sans);
    text-transform: none;
    letter-spacing: -1px;
    gap: 10px;
    color: var(--ink);
    font-size: 23px;
    line-height: 1.1;
    white-space: nowrap;
}
.logo-icon {
    font-family: var(--font-sans);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -2px;
}
.logo-icon span {
    color: #bcd0ff;
    font-size: 17px;
}
.brand-wordmark {
    color: var(--ink)!important;
    font-weight: 760;
}
.brand-wordmark>span {
    color: var(--accent)!important;
    font-weight: 450;
}
.brand-wordmark small {
    display: block;
    font-size: 7px;
    letter-spacing: 1.5px;
    color: var(--ink-muted);
    font-weight: 600;
    margin-top: 5px;
}
.primary-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-right: 24px;
}
.primary-nav a,.primary-nav button {
    padding: 8px 0;
    background: none;
    border: 0;
    text-decoration: none;
    color: var(--ink);
    font-size: 13px;
    font-weight: 550;
}
.primary-nav a:first-child {
    color: var(--accent);
}
.header-travel-link { display: none; color: var(--accent); font-size: 13px; font-weight: 600; text-decoration: none; }
.header-btn {
    background: #fff;
    color: var(--accent);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    min-height: 40px;
    font-weight: 650;
    text-transform: none;
    letter-spacing: 0;
    padding: 9px 18px;
}
.header-btn--alert {
    display: inline-flex!important;
    color: var(--ink);
    border: 0;
}
.header-btn--default {
    border-color: var(--accent);
}
.user-dropdown {
    border-radius: 12px;
    box-shadow: var(--shadow);
    z-index: 200;
}
.user-menu-btn {
    border-radius: 8px;
}
.user-avatar {
    background: #edf2ff;
    color: var(--accent);
}
.primary-button,.search-btn,.editorial-submit-btn,.apply-filters-btn,.book-btn,.select-room-btn,.pref-done-btn,.auth-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    border: 1px solid var(--accent);
    border-radius: 9px;
    background: var(--accent);
    color: #fff;
    padding: 13px 22px;
    font-weight: 650;
    font-size: 14px;
    text-decoration: none;
    box-shadow: none;
    letter-spacing: 0;
    text-transform: none;
    min-height: 44px;
    transition: background .15s,box-shadow .15s;
}
.primary-button:hover,.editorial-submit-btn:hover,.apply-filters-btn:hover,.book-btn:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 14px #0057d924;
}
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 12px 20px;
    color: var(--accent);
    background: #fff;
    border: 1px solid #becdf7;
    border-radius: 9px;
    font-weight: 650;
    min-height: 44px;
    text-decoration: none;
}
.text-button {
    border: 0;
    color: var(--accent);
    background: none;
    padding: 8px;
    font-weight: 600;
}
.back-btn {
    font-family: var(--font-sans);
    color: var(--ink-light);
    font-size: 13px;
    border: 0;
    background: transparent;
}
.eyebrow {
    font-size: 10px;
    color: var(--accent);
    font-weight: 750;
    letter-spacing: 1.8px;
    display: block;
    margin-bottom: 9px;
}
.field-note,.room-section-note {
    color: var(--ink-muted);
    font-size: 13px;
    margin: 0 0 20px;
}
.discovery-hero {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    background: var(--brand-navy);
    isolation: isolate;
}
.hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 54%;
    z-index: -2;
    filter: brightness(.77);
}
.discovery-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,#002b66df 0%,#002b6666 60%,#002b6629);
    z-index: -1;
}
.hero-content {
    max-width: 1240px;
    margin: auto;
    padding: 62px 0 100px;
    text-align: center;
}
.hero-content h1 {
    font-size: 56px;
    letter-spacing: -.8px;
    line-height: 1.13;
    color: #fff;
    font-weight: 700;
    margin: 0 auto 18px;
    max-width: 760px;
}
.hero-highlight { color: #ffcf33; }
.hero-content p {
    font-size: 16px;
    line-height: 1.65;
    color: #eff6f2;
    margin: 0;
}
.hero-destination {
    position: absolute;
    right: max(28px,calc((100vw - 1240px)/2));
    bottom: 92px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #ffffff80;
    font-size: 12px;
    padding: 5px 0;
}
.home-search-anchor {
    position: relative;
    z-index: 20;
    max-width: 1240px;
    margin: -63px auto 0;
}
.search-container {
    max-width: none;
    width: 100%;
    margin: 0;
}
.searchbox-editorial {
    background: #fff;
    border: 1px solid #e2e7ed;
    border-radius: 16px;
    box-shadow: 0 12px 38px #172e4d12;
    padding: 24px 26px 15px;
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
}
.editorial-title {
    order: 2;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-muted);
    margin: 18px 0 7px;
    text-align: left;
}
.editorial-paths {
    order: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 7px;
    padding: 0;
    margin: 0;
}
.editorial-path-btn {
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: #fff;
    min-width: 0;
    flex: none;
    color: var(--ink-light);
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0;
    min-height: 32px;
}
.editorial-path-btn:hover,.editorial-path-btn.selected {
    background: #edf2ff;
    border-color: #b4c9ff;
    color: var(--accent);
    box-shadow: none;
    transform: none;
}
.editorial-path-label {
    font-size: 11px;
    font-weight: 550;
}
.editorial-secondary {
    order: 1;
    display: block!important;
    opacity: 1!important;
    max-height: none!important;
    margin: 0;
    padding: 0;
    border: 0;
    overflow: visible;
}
.editorial-connector,.editorial-browse-label {
    display: none;
}
.editorial-destination-row {
    display: grid;
    grid-template-columns: minmax(200px,1.35fr) minmax(270px,1.35fr) minmax(170px,1fr) 165px;
    gap: 12px;
    align-items: stretch;
}
.editorial-destination-wrapper,.editorial-date-field,.guest-selector-wrapper {
    border: 1px solid #cdd5e2;
    background: #fff;
    border-radius: 9px;
    position: relative;
    padding: 10px 13px;
    min-width: 0;
    flex: initial;
}
.editorial-destination-wrapper:focus-within,.editorial-date-field:focus-within,.guest-selector-wrapper:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px #0057d918;
}
.editorial-destination-row label {
    display: block;
    color: var(--ink-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: .2px;
    line-height: 1.3;
    margin-bottom: 5px;
}
.editorial-destination-input,.editorial-date-field input {
    padding: 0!important;
    border: 0!important;
    border-radius: 0!important;
    background: transparent!important;
    width: 100%;
    min-width: 0;
    height: 44px;
    box-shadow: none!important;
    font-size: 18px!important;
    font-weight: 700;
    line-height: 25px;
}
.editorial-date-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    min-width: 0;
}
.guest-selector-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border: 0;
    background: none;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    white-space: normal;
    width: 100%;
    height: 44px;
    color: var(--ink);
    line-height: 1.25;
}
.guest-selector-trigger:after {
    content: '⌄';
    float: right;
    margin-left: 6px;
}
.editorial-submit-btn {
    height: auto;
    align-self: stretch;
    margin: 0;
    padding: 14px 18px;
    min-width: 0;
    font-size: 17px;
    font-weight: 700;
    border-radius: 9px;
}
.editorial-submit-btn.muted {
    background: var(--accent);
    color: #fff;
    opacity: 1;
}
.brand-filter-row {
    display: none;
}
.editorial-microcopy {
    order: 4;
    font-size: 10px;
    color: var(--ink-muted);
    margin: 12px 0 0;
    text-align: left;
    border: 0;
    padding: 0;
}
.autocomplete-dropdown {
    top: calc(100% + 6px);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow);
    z-index: 230;
    max-height: 330px;
    overflow: auto;
    min-width: 100%;
    color: var(--ink);
}
.autocomplete-item {
    padding: 13px 15px;
    text-align: left;
    border-bottom: 1px solid #f0f2f7;
}
.autocomplete-item:hover {
    background: #edf2ff;
}
.message.error {
    color: #9e3030;
    background: #fff2f0;
    border-radius: 8px;
    font-size: 13px;
    max-width: 100%;
}
.guest-dropdown {
    display: none;
    position: absolute;
    right: 0;
    left: auto;
    top: calc(100% + 8px);
    width: 340px;
    max-width: calc(100vw - 32px);
    max-height: 65vh;
    overflow: auto;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 32px #13284423;
    z-index: 250;
}
.guest-dropdown.open {
    display: block;
}
.party-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}
.party-room {
    min-width: 0;
    border: 0;
    padding: 0 0 16px;
    margin: 0 0 14px;
    border-bottom: 1px solid var(--border);
}
.party-room legend {
    font-weight: 700;
    font-size: 12px;
    padding: 0 0 8px;
}
.guest-row {
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 0;
}
.guest-row small {
    display: block;
    font-size: 10px;
    color: var(--ink-muted);
}
.guest-row-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}
.guest-row-controls button {
    width: 32px;
    height: 32px;
    min-height: 32px;
    background: #fff;
    border: 1px solid #bacbf5;
    border-radius: 6px;
    color: var(--accent);
    font-size: 20px;
}
.child-age {
    display: flex!important;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 11px!important;
}
.child-age select {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 7px;
    max-width: 130px;
}
.party-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.party-actions .primary-button {
    padding: 9px 22px;
    min-height: 36px;
}
.assurance-strip {
    max-width: 1000px;
    margin: 24px auto 0;
    display: flex;
    justify-content: center;
    gap: 48px;
    color: var(--ink-light);
    font-size: 11px;
}
.assurance-strip b {
    color: #319571;
    padding-right: 7px;
}
.home-section {
    max-width: 1240px;
    margin: 62px auto;
}
.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 25px;
}
.section-heading h2,.full-picture-copy h2,.dna-discovery h2 {
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -.7px;
    margin: 0 0 10px;
    font-weight: 680;
}
.section-heading p {
    font-size: 13px;
    color: var(--ink-muted);
    margin: 0;
}
.section-note {
    font-size: 11px;
    color: var(--ink-muted);
    padding-bottom: 5px;
}
.destination-grid {
    display: grid;
    grid-template-columns: repeat(6,minmax(0,1fr));
    gap: 15px;
}
.destination-card {
    position: relative;
    height: 265px;
    border-radius: 13px;
    overflow: hidden;
    text-decoration: none;
    background: #354756;
    color: #fff;
    isolation: isolate;
    transition: transform .2s,box-shadow .2s;
}
.destination-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px #1823382b;
}
.destination-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform .4s;
}
.destination-card:hover img {
    transform: scale(1.04);
}
.destination-card:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%,#0a1624d9);
    z-index: -1;
}
.destination-card>div {
    position: absolute;
    bottom: 20px;
    left: 17px;
    right: 15px;
}
.destination-card>div>span {
    font-size: 9px;
    color: #ffffffe6;
    letter-spacing: .5px;
}
.destination-card h3 {
    font-size: 21px;
    color: #fff;
    line-height: 1.2;
    margin: 4px 0 8px;
    letter-spacing: -.4px;
}
.destination-card p {
    font-size: 10px;
    line-height: 1.5;
    color: #ffffffbd;
    margin: 0;
    max-width: 130px;
}
.destination-arrow {
    position: absolute;
    right: 13px;
    top: 13px;
    border: 1px solid #ffffff77;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    font-size: 17px;
    background: #ffffff19;
}
.full-picture-panel {
    border-radius: 18px;
    background: #eaf0fe;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 52px 70px;
    align-items: center;
}
.full-picture-copy h2 {
    font-size: 34px;
    line-height: 1.25;
}
.full-picture-copy p {
    font-size: 14px;
    color: var(--ink-light);
    line-height: 1.8;
    max-width: 420px;
    margin: 16px 0 26px;
}
.review-preview {
    background: #fff;
    border: 1px solid #dbe4f8;
    border-radius: 14px;
    padding: 25px 28px;
    box-shadow: 0 16px 30px #344e7c0b;
    transform: rotate(1deg);
}
.preview-label {
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 1px;
    color: var(--accent);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}
.preview-label>span {
    color: var(--ink-muted);
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0;
}
.preview-score {
    display: flex;
    flex-direction: column;
    margin: 16px 0;
}
.preview-score span {
    font-size: 10px;
    color: var(--ink-muted);
}
.preview-score b {
    font-size: 21px;
    font-weight: 650;
}
.preview-good,.preview-watch {
    padding: 15px;
    background: #f1f8f4;
    border-radius: 8px;
    margin-top: 10px;
}
.preview-watch {
    background: #fff7ea;
}
.preview-good>span,.preview-watch>span {
    font-size: 8px;
    font-weight: 750;
    letter-spacing: 1px;
    color: #37805b;
}
.preview-watch>span {
    color: #9a701e;
}
.review-preview h3 {
    font-size: 13px;
    margin: 6px 0;
}
.review-preview p {
    font-size: 11px;
    line-height: 1.6;
    margin: 0;
    color: var(--ink-light);
}
.preview-foot {
    font-size: 9px;
    color: var(--ink-muted);
    margin-top: 16px;
}
.dna-discovery {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 50px;
    align-items: center;
    padding: 48px 80px;
}
.dna-discovery p {
    color: var(--ink-light);
    font-size: 13px;
    max-width: 550px;
}
.dna-discovery small {
    display: block;
    color: var(--ink-muted);
    font-size: 10px;
    margin-top: 12px;
}
.dna-mark {
    position: relative;
    margin: auto;
    width: 210px;
    height: 210px;
    display: grid;
    place-items: center;
    background: repeating-radial-gradient(circle,#edf2ff 0 1px,transparent 2px 32px);
    border-radius: 50%;
    border: 1px solid #e3eaff;
}
.dna-mark:before,.dna-mark:after {
    content: '';
    position: absolute;
    inset: 38px;
    background: #0057d91a;
    border: 1px solid #0057d98c;
    transform: rotate(32deg);
    border-radius: 35% 65% 42% 58%;
}
.dna-mark:after {
    transform: rotate(82deg);
    background: #0057d913;
}
.dna-mark span {
    z-index: 1;
    background: #0057d9;
    color: #fff;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}
.results-search-anchor {
    background: #eaf0fe;
    border-bottom: 1px solid #d6e0f6;
    padding: 18px max(24px,calc((100vw - 1240px)/2));
    position: relative;
    z-index: 100;
}
.results-search-anchor .searchbox-editorial {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}
.results-search-anchor .editorial-title,.results-search-anchor .editorial-paths,.results-search-anchor .editorial-microcopy {
    display: none;
}
.results-search-anchor .editorial-destination-row {
    grid-template-columns: 1.2fr 1.3fr 1fr 145px;
}
.results-search-anchor .editorial-destination-wrapper,.results-search-anchor .editorial-date-field,.results-search-anchor .guest-selector-wrapper {
    background: #fff;
}
.results-section,.hotel-detail-view {
    max-width: 1240px;
    margin: 0 auto;
    padding: 28px 0 60px;
}
.results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    padding: 0;
    margin: 0 0 24px;
    background: transparent;
}
.results-header>div:first-child {
    display: none;
}
.results-header h2 {
    font-size: 25px;
    font-weight: 600;
    margin: 0 0 5px;
    text-transform: none;
    letter-spacing: -.5px;
}
.results-header h2 strong {
    font-weight: 750;
}
.results-header>div:nth-child(2)>span:last-child {
    display: block;
    font-size: 10px!important;
    margin: 4px 0 0!important;
}
.results-layout {
    display: grid;
    grid-template-columns: 240px minmax(0,1fr);
    gap: 24px;
    align-items: start;
}
.results-sidebar {
    min-width: 0;
}
.filters-panel {
    margin: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    padding: 0;
    box-shadow: none;
}
.filters-toggle {
    padding: 18px;
    cursor: default;
    border-bottom: 1px solid var(--border);
}
.filters-toggle h3 {
    font-size: 15px;
    font-weight: 650;
    text-transform: none;
    letter-spacing: 0;
    display: flex;
    gap: 9px;
}
.filters-toggle>.arrow {
    display: none;
}
.filters-content {
    display: block;
    max-height: none;
    padding: 18px;
    opacity: 1;
    overflow: visible;
}
.filter-row {
    display: block;
    margin: 0;
}
.filter-group {
    margin: 0 0 24px!important;
    padding: 0;
    border: 0;
}
.filter-group>label {
    font-size: 12px;
    font-weight: 650;
    margin: 0 0 10px;
    color: var(--ink);
    text-transform: none;
    letter-spacing: 0;
    display: block;
}
.price-inputs {
    display: flex;
    gap: 7px;
    align-items: center;
}
.price-inputs input {
    min-width: 0;
    width: 80px;
    border-radius: 7px;
    border: 1px solid var(--border);
    padding: 9px 10px;
    font-size: 12px;
    background: #fff;
}
.price-inputs span {
    font-size: 11px;
}
.star-filters {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.star-btn {
    font-size: 11px;
    padding: 6px 7px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #fff;
    color: var(--ink-light);
    min-width: 0;
}
.amenity-filters {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
}
.amenity-btn {
    font-size: 12px;
    line-height: 1.3;
    border: 0;
    padding: 5px 0;
    background: transparent;
    text-align: left;
    border-radius: 3px;
    color: var(--ink-light);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 450;
}
.amenity-btn:before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 1px solid #c1cad9;
    border-radius: 4px;
    margin-right: 9px;
    vertical-align: -3px;
    background: #fff;
}
.amenity-btn.active {
    background: none;
    color: var(--accent);
}
.amenity-btn.active:before {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: inset 0 0 0 3px #fff;
}
.star-btn.active {
    background: #edf2ff;
    color: var(--accent);
    border-color: var(--accent);
}
.filter-actions {
    display: flex;
    flex-direction: column;
    gap: 7px;
    border-top: 1px solid var(--border);
    padding: 16px 0 0;
}
.filter-actions>button {
    width: 100%;
    font-size: 12px;
}
.clear-filters-btn {
    background: none;
    border: 0;
    color: var(--ink-muted);
    padding: 9px;
}
.active-filters:not(:empty) {
    padding: 12px;
}
.active-filter-tag {
    font-size: 10px;
    background: #edf2ff;
    color: var(--accent);
    border: 1px solid #cddafa;
    border-radius: 5px;
}
.active-filter-tag button {
    color: var(--accent);
}
.sort-select {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    padding: 11px 13px;
    max-width: 195px;
    font-size: 12px;
}
.pref-trigger-btn {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    color: var(--ink-light);
    font-size: 12px;
    padding: 10px;
}
.pref-count {
    background: #edf2ff;
    color: var(--accent);
}
.hotel-grid {
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.stay-card {
    display: grid;
    grid-template-columns: 250px minmax(0,1fr) 178px;
    min-height: 235px;
    border: 1px solid var(--border);
    border-radius: 13px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 8px #16315404;
    transition: border-color .15s,box-shadow .15s;
}
.stay-card:hover {
    border-color: #b4c9ef;
    box-shadow: 0 6px 20px #1b376b0e;
}
.stay-image {
    position: relative;
    display: block;
    overflow: hidden;
    background: #e4eaf1;
    min-height: 235px;
}
.stay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.stay-image .save-btn {
    position: absolute;
    top: 13px;
    right: 13px;
    z-index: 2;
    border: 0;
    border-radius: 50%;
    background: #fff;
    width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0;
    font-size: 23px;
    line-height: 1;
    color: var(--ink);
    box-shadow: 0 2px 8px #0002;
}
.stay-image .save-btn.saved {
    color: var(--accent);
    background: #edf2ff;
}
.stay-content {
    padding: 20px 21px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.stay-stars {
    color: #df9c29;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.stay-title {
    text-decoration: none;
    color: var(--ink);
}
.stay-title h3 {
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -.4px;
    margin: 0 0 7px;
}
.stay-title:hover h3 {
    color: var(--accent);
}
.stay-location {
    color: var(--ink-muted);
    font-size: 11px;
    margin: 0 0 16px;
}
.stay-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
}
.stay-facilities span {
    font-size: 9px;
    padding: 4px 7px;
    background: #f5f7fb;
    border-radius: 4px;
    color: var(--ink-light);
}
.stay-policy {
    font-size: 11px;
    color: #27815b;
    font-weight: 550;
    margin-top: auto;
}
.stay-policy.non-refundable {
    color: var(--ink-muted);
    font-weight: 450;
}
.stay-board {
    font-size: 11px;
    color: var(--ink-light);
    margin-top: 5px;
}
.stay-price {
    padding: 20px 17px;
    border-left: 1px solid #ebeff6;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}
.stay-rating {
    display: flex;
    gap: 8px;
    align-items: center;
}
.stay-rating b {
    font-size: 16px;
    color: #fff;
    border-radius: 7px 7px 0 7px;
    background: var(--accent);
    min-width: 39px;
    height: 38px;
    display: grid;
    place-items: center;
}
.stay-rating span {
    font-size: 11px;
    font-weight: 600;
}
.stay-rating small {
    display: block;
    color: var(--ink-muted);
    font-size: 9px;
    font-weight: 400;
    margin-top: 2px;
}
.stay-amount {
    font-size: 25px;
    font-weight: 750;
    letter-spacing: -.7px;
    line-height: 1.2;
}
.stay-amount small {
    display: block;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--ink-muted);
    margin-top: 5px;
}
.stay-due {
    font-size: 9px;
    color: #966522;
    margin-top: 5px;
}
.stay-price .primary-button {
    font-size: 11px;
    padding: 10px 14px;
    min-height: 37px;
    width: 100%;
    margin-top: 12px;
    gap: 8px;
}
.stay-no-rating {
    font-size: 10px;
    color: var(--ink-muted);
}
.mobile-tactical-bar {
    display: none;
}
.empty-state {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 54px 24px;
    text-align: center;
}
.empty-state h3 {
    font-size: 20px;
}
.empty-state p {
    color: var(--ink-muted);
}
.property-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 17px;
    margin-bottom: 24px;
    background: #fff;
    position: sticky;
    top: 10px;
    z-index: 80;
    overflow: auto;
}
.property-nav>a {
    font-size: 12px;
    text-decoration: none;
    color: var(--ink-light);
    white-space: nowrap;
}
.property-nav>a:first-child {
    color: var(--accent);
    font-weight: 650;
}
.property-nav>.primary-button {
    margin-left: auto;
    color: #fff;
    padding: 8px 20px;
    min-height: 36px;
}
.hotel-detail-header {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 27px;
    align-items: start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 24px;
    margin: 0 0 25px;
}
.hotel-detail-left {
    min-width: 0;
}
.hotel-info {
    padding: 0;
}
.detail-name-heading {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.8px;
    margin: 15px 0 12px;
}
.hotel-info .hotel-location {
    font-size: 12px;
    line-height: 1.5;
    color: var(--ink-light);
}
.hotel-info .hotel-rating {
    background: #edf2ff;
    color: var(--accent);
    border-radius: 5px;
    font-size: 13px;
}
.hotel-description {
    font-size: 12px;
    line-height: 1.85;
    color: var(--ink-light);
}
.description-toggle-btn {
    font-size: 11px;
    color: var(--accent);
}
.hotel-gallery {
    border-radius: 11px;
    overflow: hidden;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    min-width: 0;
    background: #edf1f7;
}
.carousel-container {
    height: 345px;
    aspect-ratio: auto;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-track,.carousel-slide {
    height: 100%;
}
.hotel-facilities {
    gap: 7px;
}
.hotel-facilities>span,.facility-tag {
    border: 1px solid var(--border);
    border-radius: 5px;
    background: #f6f8fc;
    padding: 5px 9px;
    font-size: 10px;
    color: var(--ink-light);
}
.hotel-fit-card,.hotel-fit-cta {
    border: 1px solid #d8e3fa;
    border-radius: 10px;
    background: #f1f5ff;
    margin-top: 16px;
    padding: 17px;
}
.hotel-fit-card-title {
    font-size: 15px;
}
.hotel-fit-cta-text {
    font-size: 12px;
}
.hotel-fit-cta-btn {
    background: var(--accent);
    color: #fff;
    border: 0;
    border-radius: 7px;
    padding: 10px 14px;
    font-size: 12px;
}
.hotel-fit-cta-time {
    font-size: 10px;
}
.traveldna-comparison,.traveldna-comparison-section {
    gap: 24px;
}
.traveldna-card,.review-insights-module,.reviews-section,.room-types-section,.fit-score-container,.hotel-cautions-section,.personalization-annotations {
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #fff;
    padding: 25px;
    margin: 24px 0;
    box-shadow: none;
}
.traveldna-card h3,.reviews-section h2,.room-types-section h2,.review-insights-module h2 {
    font-size: 23px;
    font-weight: 650;
    letter-spacing: -.5px;
    text-transform: none;
}
.review-insights-module {
    overflow: hidden;
}
.trust-strip {
    background: #f5f8ff;
    border: 1px solid #dae4f6;
    border-radius: 9px;
    font-family: var(--font-sans);
}
.trust-strip-label,.trust-strip-value {
    letter-spacing: 0;
}
.traveler-filter-btn,.driver-tab {
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 12px;
}
.traveler-filter-btn.active,.driver-tab.active {
    color: var(--accent);
    border-color: var(--accent);
    background: #edf2ff;
}
.insight-driver,.review-card,.room-type-card,.room-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: none;
    background: #fff;
}
.room-type-card,.room-card {
    padding: 20px;
    margin-bottom: 17px;
}
.room-type-header {
    border-color: var(--border);
}
.rate-option,.room-rate-option {
    border: 1px solid var(--border);
    border-radius: 9px;
    margin-top: 10px;
    padding: 16px;
    background: #f9fbff;
}
.rate-price {
    font-size: 24px;
    color: var(--ink);
}
.rate-option button,.room-rate-option button {
    border-radius: 7px;
    background: var(--accent);
    color: #fff;
    border: 0;
    padding: 11px 20px;
}
.save-btn,.share-btn {
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 8px 13px;
    background: #fff;
    color: var(--ink-light);
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
}
.save-btn.saved {
    color: var(--accent);
    border-color: #b8cdfb;
    background: #edf2ff;
}
.checkout-view {
    max-width: 1060px;
    margin: 0 auto;
    padding: 40px 0 70px;
    display: grid;
    grid-template-columns: minmax(0,1fr) 360px;
    gap: 22px;
    align-items: start;
}
.checkout-heading {
    grid-column: 1/-1;
}
.checkout-heading h1 {
    font-size: 32px;
    font-weight: 680;
    letter-spacing: -1px;
    margin: 7px 0 24px;
}
.checkout-steps {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    border-bottom: 1px solid var(--border);
}
.checkout-steps li {
    font-size: 12px;
    color: var(--ink-muted);
    padding-bottom: 15px;
}
.checkout-steps li.current {
    border-bottom: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 650;
}
.checkout-steps li.done {
    color: #2e8a67;
}
.checkout-view>.back-btn {
    grid-column: 1/-1;
    margin: 0!important;
    justify-self: start;
}
.checkout-card {
    padding: 25px;
    margin: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: none;
}
.checkout-card h2 {
    font-size: 20px;
    font-weight: 650;
    margin: 0 0 20px;
    letter-spacing: -.4px;
}
.checkout-view>.checkout-card:nth-of-type(2) {
    grid-column: 2;
    grid-row: 3/span 4;
    position: sticky;
    top: 25px;
}
.checkout-view>.checkout-card:not(:nth-of-type(2)) {
    grid-column: 1;
}
.checkout-card .booking-summary {
    display: block;
}
.booking-summary img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.booking-summary h3 {
    font-size: 18px;
    margin: 0 0 7px;
}
.booking-summary p {
    font-size: 12px;
    color: var(--ink-light);
}
.price-breakdown {
    margin-top: 18px;
    padding: 0;
    border: 0;
}
.price-row {
    font-size: 12px;
    padding: 8px 0;
}
.price-row.total {
    border-top: 1px solid var(--border);
    margin-top: 7px;
    padding-top: 16px;
    font-size: 20px;
    font-weight: 700;
}
.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-light);
    letter-spacing: 0;
    text-transform: none;
}
.form-group input,.form-group select {
    border: 1px solid #cbd4e3;
    border-radius: 8px;
    background: #fff;
    padding: 12px;
    min-height: 46px;
    font-size: 14px;
}
.checkout-merchant-disclosure {
    font-size: 10px;
    line-height: 1.6;
    color: var(--ink-muted);
    background: #f5f8ff;
    border-radius: 8px;
    padding: 12px;
    margin-top: 18px;
}
.confirmation-view {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #fff;
}
.confirmation-icon {
    background: #edf8f2;
    color: #2f9166;
}
.confirmation-card,.confirmation-summary {
    border-color: var(--border);
    border-radius: 10px;
}
.confirmation-view h1 {
    font-size: 30px;
}
.profile-section,.methodology-page,.tag-landing-page,.intent-page,.compare-page,.legal-notice-view,.privacy-policy-view {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 24px 70px;
}
.profile-header,.profile-section h1 {
    font-family: var(--font-sans);
}
.profile-section h1 {
    font-size: 32px;
    letter-spacing: -.8px;
}
.profile-card,.profile-form,.profile-traveldna-results,.profile-traveldna-cta,.bookings-section,.booking-card,.methodology-section {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    padding: 24px;
    box-shadow: none;
}
.profile-option,.pref-option {
    border: 1px solid var(--border);
    border-radius: 7px;
    color: var(--ink-light);
    background: #fff;
    font-family: var(--font-sans);
    letter-spacing: 0;
    text-transform: none;
}
.profile-option.selected,.profile-option.active,.pref-option.selected {
    border-color: var(--accent);
    color: var(--accent);
    background: #edf2ff;
}
.profile-save-btn,.profile-quiz-btn,.profile-btn-primary,.profile-bookings-retry {
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    border: 0;
    padding: 13px 20px;
}
.booking-status.confirmed {
    background: #eaf7ef;
    color: #29835b;
}
.bookings-tab.active {
    color: var(--accent);
    border-color: var(--accent);
}
.ink-mode {
    background: #fff;
    color: var(--ink);
    font-family: var(--font-sans);
}
.methodology-header h1 {
    font-size: 36px;
    color: var(--ink);
}
.methodology-section {
    margin: 20px 0;
    line-height: 1.9;
}
.methodology-section h2 {
    color: var(--ink);
    font-size: 23px;
}
.methodology-section p,.methodology-section li {
    color: var(--ink-light);
    font-size: 14px;
}
.methodology-highlight,.methodology-callout {
    background: #edf3ff;
    color: var(--ink);
    border-color: var(--accent);
    border-radius: 8px;
}
.drawer,.pref-drawer {
    visibility: hidden;
    pointer-events: none;
    background: #fff;
    border-left: 1px solid var(--border);
    box-shadow: -10px 0 40px #142c5222;
}
.drawer.open,.drawer.visible,.pref-drawer.open,.pref-drawer.visible {
    visibility: visible;
    pointer-events: auto;
}
.drawer h2,.pref-drawer h2 {
    font-family: var(--font-sans);
    font-size: 24px;
}
#prefDrawer .pref-field-label { font-size: 14px; font-weight: 600; color: #202840; }
#prefDrawer .pref-segmented-btn { min-height: 44px; font-size: 14px; line-height: 1.35; white-space: normal; color: #384861; }
#prefDrawer .pref-segmented-btn.active { background: #eaf1ff; color: #0756e9; border-color: #0756e9; font-weight: 600; box-shadow: none; }
#prefDrawer .pref-drawer-close, .compare-close-btn { min-width: 44px; min-height: 44px; }
#prefDrawer .pref-done-btn, #prefDrawer .pref-reset-btn { min-height: 44px; font-size: 14px; }
.compare-hotel-chip button { min-width: 32px; min-height: 32px; }
.drawer-overlay,.pref-drawer-overlay,.auth-modal-overlay,.traveldna-modal-overlay,.tos-modal-overlay {
    background: #14223866;
    backdrop-filter: blur(3px);
}
.auth-modal,.traveldna-modal,.tos-modal,.compare-modal-content {
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 20px 80px #13234033;
    background: #fff;
}
.auth-modal { width: min(480px, calc(100vw - 32px)); max-width: 480px; }
.traveldna-modal { width: min(640px, calc(100vw - 32px)); max-width: 640px; }
.tos-modal { width: min(780px, calc(100vw - 32px)); max-width: 780px; }
.compare-modal-content { width: min(1100px, calc(100vw - 32px)); max-width: 1100px; }
.auth-modal-header { padding: 28px 28px 0; gap: 12px; }
.auth-modal-header > div { min-width: 0; }
.auth-modal .auth-modal-title { font-size: 23px; font-weight: 700; line-height: 1.25; letter-spacing: -.5px; }
.auth-modal-subtitle { margin: 8px 0 0; font-size: 14px; line-height: 1.5; }
.auth-modal-close { width: 44px; height: 44px; min-width: 44px; margin: -10px -12px 0 0; font-size: 26px; }
.auth-modal-body { padding: 24px 28px 28px; }
.auth-modal .auth-label { font-size: 13px; color: #384861; }
#magicLinkEmail.auth-input { font-size: 16px; min-height: 48px; border-radius: 6px; border: 1px solid #8f9aae; background: #fff; }
#magicLinkEmail.auth-input:focus { border-color: var(--accent); }
.auth-modal .auth-submit-btn { min-height: 48px; font-size: 14px; border-radius: 6px; }
.auth-privacy-note { margin: 12px 0 0; font-size: 12px; line-height: 1.5; color: #60718a; }
.auth-form-error { margin: 10px 0 0; color: #a92133; font-size: 13px; line-height: 1.5; }
.auth-form-error[hidden] { display: none; }
.auth-modal .auth-disclosure { margin-top: 20px; font-size: 12px; }
.auth-modal .auth-disclosure summary { color: #384861; }
.auth-change-email { margin-top: 16px; padding: 10px 12px; min-height: 44px; color: #0756e9; background: #fff; border: 1px solid #bacbe7; border-radius: 6px; cursor: pointer; }
.auth-modal-title,.traveldna-modal h2,.tos-modal h2 {
    font-family: var(--font-sans);
    color: var(--ink);
    font-size: 25px;
}
.traveldna-option {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    font-family: var(--font-sans);
}
.traveldna-option.selected,.traveldna-option:hover {
    background: #edf3ff;
    border-color: var(--accent);
}
.traveldna-progress-fill {
    background: var(--accent);
}
.traveldna-btn-primary {
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
}
.traveldna-btn-secondary {
    color: var(--accent);
    border: 1px solid #b8cafa;
    border-radius: 8px;
}
.cookie-banner {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 13px;
    box-shadow: 0 8px 50px #152b4c24;
    color: var(--ink);
    max-width: 610px;
    left: 24px;
    right: auto;
    bottom: 24px;
    padding: 20px 22px;
    z-index: 200;
    font-size: 12px;
}
.cookie-banner p {
    color: var(--ink-light);
    font-size: 12px;
}
.cookie-banner button {
    border-radius: 7px;
    font-size: 12px;
    padding: 10px 15px;
}
.cookie-banner .cookie-accept {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.toast {
    background: #192e50;
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-sans);
    max-width: calc(100vw - 32px);
}
.loading-overlay {
    background: #f7f9fdee;
    color: var(--ink);
}
.loading-overlay .spinner {
    border-top-color: var(--accent);
}
body>footer {
    background: #fff;
    border-top: 1px solid var(--border);
    color: var(--ink-muted);
    padding: 38px max(24px,calc((100vw - 1240px)/2));
    font-family: var(--font-sans);
    font-size: 11px;
}
body>footer a {
    color: var(--ink-light);
    font-size: 11px;
}
body>footer .logo {
    color: var(--ink);
}
@media(min-width:1500px) {
    .hero-content {
        padding-top: 68px;
    }
    .discovery-hero {
        min-height: 435px;
    }
}
@media(max-width:1300px) {
    .hero-content {
        padding-left: 32px;
        padding-right: 32px;
    }
    .home-search-anchor,.home-section,.results-section,.hotel-detail-view {
        margin-left: 28px;
        margin-right: 28px;
    }
    .home-section {
        margin-top: 52px;
        margin-bottom: 52px;
    }
    .primary-nav {
        gap: 19px;
        margin-right: 12px;
    }
    .stay-card {
        grid-template-columns: 220px minmax(0,1fr) 165px;
    }
    .full-picture-panel {
        gap: 45px;
        padding: 45px;
    }
    .checkout-view {
        margin: 0 28px;
    }
}
@media(max-width:1100px) {
    .primary-nav {
        display: none;
    }
    .header-travel-link { display: block; }
    .editorial-destination-row,.results-search-anchor .editorial-destination-row {
        grid-template-columns: 1.2fr 1.5fr 1fr;
    }
    .editorial-submit-btn {
        grid-column: 1/-1;
        height: 46px;
    }
    .destination-grid {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
    .destination-card {
        height: 245px;
    }
    .destination-card p {
        max-width: none;
    }
    .results-layout {
        grid-template-columns: 210px minmax(0,1fr);
        gap: 18px;
    }
    .stay-card {
        grid-template-columns: 180px minmax(0,1fr);
    }
    .stay-price {
        grid-column: 2;
        flex-direction: row;
        align-items: end;
        border-left: 0;
        border-top: 1px solid #edf0f5;
        padding: 12px 17px;
    }
    .stay-price .stay-rating {
        display: none;
    }
    .stay-content {
        padding: 16px;
    }
    .stay-image {
        grid-row: 1/span 2;
    }
    .stay-price>div:last-child {
        width: 100%;
    }
    .stay-price .primary-button {
        width: auto;
        float: right;
        margin-top: 0;
    }
    .stay-amount {
        text-align: left;
        font-size: 23px;
    }
    .stay-content h3 {
        font-size: 17px;
    }
    .stay-due {
        text-align: left;
    }
    .stay-facilities {
        margin-bottom: 10px;
    }
    .full-picture-panel {
        gap: 30px;
        padding: 35px;
    }
    .dna-discovery {
        padding: 35px 50px;
    }
    .hotel-detail-header {
        grid-template-columns: 1.25fr 1fr;
        gap: 20px;
        padding: 20px;
    }
    .detail-name-heading {
        font-size: 26px;
    }
    .checkout-view {
        grid-template-columns: minmax(0,1fr) 320px;
    }
    .property-nav {
        gap: 22px;
    }
}
@media(max-width:760px) {
    .header-travel-link { font-size: 11px; max-width: 44px; line-height: 1.25; }
    html {
        scroll-padding-top: 90px;
    }
    body {
        font-size: 13px;
    }
    .site-header {
        height: 67px;
        padding: 0 17px;
        gap: 8px;
    }
    .logo {
        font-size: 19px;
        gap: 7px;
    }
    .logo-icon {
        width: 33px;
        height: 33px;
        font-size: 20px;
        border-radius: 9px;
    }
    .brand-wordmark small {
        font-size: 5.5px;
        letter-spacing: 1.1px;
    }
    .header-btn {
        min-height: 34px;
        padding: 7px 12px;
        font-size: 11px;
    }
    .header-btn--alert {
        padding: 7px 4px;
    }
    .site-header>div {
        gap: 6px!important;
    }
    .user-menu-name {
        display: none;
    }
    .discovery-hero {
        min-height: 320px;
    }
    .hero-content {
        padding: 42px 23px 80px;
    }
    .hero-content h1 {
        font-size: clamp(28px, 9vw, 36px);
        letter-spacing: -.4px;
        line-height: 1.15;
        margin: 0 auto 15px;
    }
    .hero-content p {
        font-size: 12px;
        line-height: 1.75;
    }
    .hero-destination {
        display: none;
    }
    .hero-photo {
        object-position: 64% 50%;
    }
    .home-search-anchor {
        margin: -44px 16px 0;
    }
    .searchbox-editorial {
        padding: 17px 15px 13px;
        border-radius: 13px;
    }
    .editorial-destination-row,.results-search-anchor .editorial-destination-row {
        grid-template-columns: 1fr;
        gap: 9px;
    }
    .editorial-destination-wrapper,.editorial-date-field,.guest-selector-wrapper {
        padding: 9px 12px;
    }
    .editorial-destination-input,.editorial-date-field input {
        font-size: 16px!important;
    }
    .guest-selector-trigger {
        font-size: 16px;
    }
    .editorial-date-row {
        grid-template-columns: minmax(0,1fr) minmax(0,1fr);
        gap: 9px;
    }
    .editorial-destination-row label {
        font-size: 11px;
        margin-bottom: 4px;
    }
    .editorial-title {
        font-size: 10px;
        margin-top: 15px;
    }
    .editorial-paths {
        flex-wrap: nowrap;
        overflow-x: auto;
        max-width: 100%;
        padding-bottom: 5px;
        scrollbar-width: none;
        gap: 6px;
    }
    .editorial-path-btn {
        white-space: nowrap;
        padding: 5px 10px;
    }
    .editorial-microcopy {
        font-size: 8px;
        margin-top: 9px;
    }
    .editorial-submit-btn {
        height: 46px;
        font-size: 14px;
    }
    .guest-dropdown {
        width: calc(100vw - 68px);
        right: 0;
        max-height: 58vh;
        padding: 15px;
    }
    .assurance-strip {
        gap: 9px;
        margin: 20px 17px 0;
        flex-wrap: wrap;
        font-size: 8px;
        justify-content: space-around;
    }
    .assurance-strip b {
        padding-right: 3px;
    }
    .home-section {
        margin: 40px 17px;
    }
    .section-heading {
        margin-bottom: 18px;
    }
    .section-heading h2,.dna-discovery h2 {
        font-size: 23px;
        letter-spacing: -.5px;
    }
    .section-heading p {
        font-size: 11px;
        line-height: 1.6;
    }
    .eyebrow {
        font-size: 8px;
        letter-spacing: 1.4px;
    }
    .section-note {
        display: none;
    }
    .destination-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 11px;
    }
    .destination-card {
        height: 218px;
        border-radius: 11px;
    }
    .destination-card>div {
        bottom: 16px;
        left: 14px;
        right: 10px;
    }
    .destination-card h3 {
        font-size: 20px;
    }
    .destination-card p {
        font-size: 9px;
    }
    .destination-card>div>span {
        font-size: 8px;
    }
    .destination-arrow {
        width: 24px;
        height: 24px;
        right: 10px;
        top: 10px;
        font-size: 15px;
    }
    .full-picture-panel {
        grid-template-columns: 1fr;
        padding: 26px 21px;
        gap: 26px;
        border-radius: 13px;
    }
    .full-picture-copy h2 {
        font-size: 27px;
    }
    .full-picture-copy p {
        font-size: 12px;
        line-height: 1.75;
        margin: 12px 0 20px;
    }
    .full-picture-copy .primary-button {
        font-size: 12px;
        padding: 11px 17px;
    }
    .review-preview {
        padding: 20px;
        transform: none;
    }
    .dna-discovery {
        display: flex;
        flex-direction: column;
        align-items: start;
        padding: 28px 24px;
        gap: 25px;
    }
    .dna-mark {
        width: 145px;
        height: 145px;
        margin: 0 auto;
    }
    .dna-mark:before,.dna-mark:after {
        inset: 25px;
    }
    .dna-mark span {
        width: 45px;
        height: 45px;
        font-size: 10px;
    }
    .dna-discovery p {
        font-size: 12px;
    }
    .dna-discovery .secondary-button {
        font-size: 12px;
    }
    .results-search-anchor {
        padding: 16px;
        position: relative;
    }
    .results-search-anchor .editorial-destination-row {
        grid-template-columns: 1fr 1fr;
    }
    .results-search-anchor .editorial-destination-wrapper {
        grid-column: 1/-1;
    }
    .results-search-anchor .editorial-date-row {
        grid-column: 1/-1;
    }
    .results-search-anchor .guest-selector-wrapper {
        grid-column: 1;
    }
    .results-search-anchor .editorial-submit-btn {
        grid-column: 2;
        height: auto;
        font-size: 12px;
    }
    .results-section,.hotel-detail-view {
        margin: 0 15px;
        padding: 23px 0 75px;
    }
    .results-header {
        display: block;
        margin-bottom: 20px;
    }
    .results-header h2 {
        font-size: 23px;
    }
    .results-header>div:nth-child(3) {
        justify-content: space-between;
        margin-top: 15px;
        gap: 8px!important;
    }
    .results-header>div:nth-child(2)>span:last-child {
        font-size: 9px!important;
        max-width: 285px;
    }
    .pref-trigger-btn,.sort-select {
        font-size: 11px;
        padding: 9px 10px;
    }
    .results-layout {
        display: block;
    }
    .results-sidebar {
        margin-bottom: 16px;
    }
    .filters-toggle {
        padding: 13px 16px;
        cursor: pointer;
    }
    .filters-toggle h3 {
        font-size: 13px;
    }
    .filters-toggle>.arrow {
        display: block;
        width: 16px;
    }
    .filters-content {
        display: none;
    }
    .filters-content.visible {
        display: block;
        max-height: 60vh;
        overflow: auto;
    }
    .filter-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .amenity-filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .filter-actions {
        flex-direction: row;
    }
    .hotel-grid {
        gap: 14px;
    }
    .stay-card {
        grid-template-columns: 125px minmax(0,1fr);
        min-height: 240px;
        border-radius: 11px;
    }
    .stay-image {
        min-height: 230px;
        grid-row: 1/span 2;
    }
    .stay-image img {
        object-position: center;
    }
    .stay-image .save-btn {
        width: 29px;
        height: 29px;
        min-height: 29px;
        font-size: 20px;
        right: 8px;
        top: 8px;
    }
    .stay-content {
        padding: 14px 12px 12px;
    }
    .stay-title h3 {
        font-size: 15px;
        line-height: 1.3;
        margin-bottom: 7px;
    }
    .stay-stars {
        font-size: 10px;
        margin-bottom: 5px;
    }
    .stay-location {
        font-size: 10px;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    .stay-facilities {
        gap: 4px;
        margin-bottom: 12px;
    }
    .stay-facilities span {
        font-size: 8px;
        padding: 3px 5px;
    }
    .stay-facilities span:nth-child(n+3) {
        display: none;
    }
    .stay-policy,.stay-board {
        font-size: 9px;
    }
    .stay-price {
        padding: 11px 12px;
        display: block;
    }
    .stay-price>div:last-child {
        display: flex;
        flex-direction: column;
        align-items: end;
    }
    .stay-amount {
        font-size: 23px;
        text-align: right;
    }
    .stay-amount small {
        font-size: 8px;
        margin-top: 3px;
    }
    .stay-price .primary-button {
        float: none;
        margin-top: 9px;
        width: 100%;
        padding: 8px;
        min-height: 33px;
        font-size: 10px;
    }
    .stay-due {
        font-size: 8px;
        text-align: right;
    }
    .property-nav {
        gap: 18px;
        border-radius: 8px;
        padding: 11px 13px;
        position: sticky;
        top: 0;
        margin: 0 -15px 18px;
        border-left: 0;
        border-right: 0;
    }
    .property-nav>a {
        font-size: 11px;
    }
    .property-nav>.primary-button {
        padding: 7px 12px;
        min-height: 32px;
        display: none;
    }
    .hotel-detail-header {
        grid-template-columns: 1fr;
        padding: 14px;
        gap: 20px;
        border-radius: 12px;
    }
    .hotel-detail-left {
        order: 2;
    }
    .hotel-info {
        order: 1;
    }
    .hotel-description-wrapper {
        display: none!important;
    }
    .hotel-info .hotel-meta {
        gap: 10px;
    }
    .detail-name-heading {
        font-size: 27px;
        line-height: 1.15;
        margin: 12px 0;
    }
    .hotel-info .hotel-location {
        font-size: 11px;
    }
    .hotel-facilities {
        margin-top: 13px;
    }
    .hotel-gallery {
        border-radius: 8px;
    }
    .carousel-container {
        height: 250px;
    }
    .hotel-fit-cta {
        padding: 15px;
        margin: 12px 0 0;
    }
    .hotel-fit-card-title {
        font-size: 14px;
    }
    .traveldna-comparison,.traveldna-comparison-section {
        grid-template-columns: 1fr;
        display: block;
    }
    .traveldna-card,.review-insights-module,.reviews-section,.room-types-section,.fit-score-container,.hotel-cautions-section {
        padding: 18px 15px;
        border-radius: 11px;
        margin: 18px 0;
        min-width: 0;
    }
    .traveldna-card h3,.reviews-section h2,.room-types-section h2,.review-insights-module h2 {
        font-size: 20px;
    }
    .trust-strip {
        flex-wrap: wrap;
        gap: 9px;
        padding: 12px;
    }
    .traveler-filter-bar,.driver-tabs {
        overflow-x: auto;
        max-width: 100%;
        flex-wrap: nowrap;
    }
    .traveler-filter-btn,.driver-tab {
        white-space: nowrap;
        font-size: 10px;
    }
    .room-types-section .room-section-note {
        font-size: 11px;
    }
    .room-type-card,.room-card {
        padding: 13px;
    }
    .rate-option,.room-rate-option {
        padding: 13px;
        flex-wrap: wrap;
        gap: 13px;
    }
    .checkout-view {
        display: flex;
        flex-direction: column;
        margin: 0 16px;
        padding: 28px 0 50px;
        gap: 18px;
    }
    .checkout-heading {
        width: 100%;
    }
    .checkout-heading h1 {
        font-size: 27px;
    }
    .checkout-steps {
        gap: 12px;
    }
    .checkout-steps li {
        font-size: 9px;
        line-height: 1.5;
    }
    .checkout-view>.checkout-card:nth-of-type(2) {
        position: static;
        order: 0;
    }
    .checkout-view>.checkout-card {
        width: 100%;
        padding: 20px;
    }
    .checkout-card h2 {
        font-size: 19px;
        margin-bottom: 17px;
    }
    .checkout-card .booking-summary {
        display: flex;
        gap: 14px;
    }
    .booking-summary img {
        width: 95px;
        height: 95px;
        flex-shrink: 0;
        margin: 0;
    }
    .booking-summary h3 {
        font-size: 15px;
    }
    .booking-summary p {
        font-size: 10px;
    }
    .form-row {
        gap: 12px;
    }
    .form-group input {
        font-size: 16px;
        padding: 11px;
        min-width: 0;
    }
    .confirmation-view {
        margin: 24px 16px;
        padding: 22px;
        max-width: calc(100vw - 32px);
    }
    .profile-section,.methodology-page,.tag-landing-page,.intent-page,.compare-page {
        padding: 28px 16px 55px;
        max-width: 100%;
    }
    .profile-section h1,.methodology-header h1 {
        font-size: 28px;
    }
    .profile-card,.profile-form,.profile-traveldna-results,.profile-traveldna-cta,.bookings-section,.booking-card,.methodology-section {
        padding: 19px;
    }
    .profile-option,.pref-option {
        font-size: 11px;
    }
    .profile-options {
        gap: 7px;
    }
    .drawer,.pref-drawer {
        width: min(100vw,400px);
        max-width: 100vw;
    }
    .auth-modal,.traveldna-modal,.tos-modal,.compare-modal-content {
        width: calc(100vw - 28px);
        max-height: 90dvh;
        border-radius: 14px;
    }
    .auth-modal-body,.traveldna-modal-body,.tos-modal-body {
        padding: 22px 18px;
    }
    .traveldna-question {
        font-size: 21px;
    }
    .traveldna-option {
        font-size: 13px;
        padding: 15px;
    }
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        max-width: none;
        padding: 16px;
        border-radius: 11px;
    }
    .cookie-banner p {
        font-size: 11px;
    }
    .cookie-banner button {
        font-size: 11px;
        padding: 10px 12px;
    }
    .cookie-banner-actions {
        flex-wrap: wrap;
    }
    .save-prefs-prompt {
        max-width: calc(100vw - 24px);
        right: 12px;
        left: 12px;
    }
    .fit-score-content,.traveldna-card-content,.profile-traveldna-details {
        min-width: 0;
        max-width: 100%;
    }
    body>footer {
        padding: 30px 20px;
        font-size: 10px;
    }
    body>footer a {
        font-size: 10px;
    }
}
@media(prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto!important;
        animation-duration: .01ms!important;
        transition-duration: .01ms!important;
    }
}
.search-container {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
}
.room-guest-group {
    padding-top: 17px;
    margin-top: 18px;
    border-top: 1px solid var(--border);
}
.room-guest-group h3 {
    font-size: 14px;
    margin: 0 0 10px;
}
.save-prefs-prompt:not(.visible) {
    visibility: hidden;
    pointer-events: none;
}
main>footer {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 35px 24px;
    color: var(--ink-muted);
    font-family: var(--font-sans);
}
#favoritesGrid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 22px;
}
.saved-stay {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
.saved-stay>a {
    text-decoration: none;
    color: var(--ink);
}
.saved-stay img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.saved-stay>a>div {
    padding: 20px;
}
.saved-stay h3 {
    font-size: 18px;
    margin: 0 0 7px;
}
.saved-stay p {
    font-size: 12px;
    color: var(--ink-muted);
}
.saved-stay span {
    font-size: 12px;
    color: var(--accent);
}
.saved-stay>.save-btn {
    position: absolute;
    right: 12px;
    top: 12px;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    padding: 0;
    background: #fff;
}
.room-group {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-top: 18px;
    overflow: hidden;
}
.room-group-header {
    padding: 17px;
    background: #f7f9fd;
}
.room-group-header h3 {
    font-size: 17px;
}
.room-image {
    border-radius: 7px;
    overflow: hidden;
}
.room-rates {
    padding: 0 17px 17px;
}
.rate-option {
    cursor: default;
}
.book-rate-btn {
    background: var(--accent);
    color: #fff;
    border: 0;
    border-radius: 8px;
    min-height: 40px;
    padding: 10px 22px;
}
.rate-details .rate-cancellation {
    font-size: 11px;
}
.rate-price .amount {
    font-size: 23px;
}
.rate-price .per-night {
    font-size: 10px;
}
@media(max-width:760px) {
    #favoritesGrid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .saved-stay img {
        height: 140px;
    }
    .saved-stay>a>div {
        padding: 14px;
    }
    .saved-stay h3 {
        font-size: 15px;
    }
    .saved-stay span {
        font-size: 10px;
    }
    .room-group-header {
        padding: 13px;
    }
    .room-rates {
        padding: 0 12px 12px;
    }
    .rate-price .amount {
        font-size: 21px;
    }
}
.room-offer {
    display: grid;
    grid-template-columns: minmax(0,1fr) 235px;
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-top: 16px;
    overflow: hidden;
}
.room-offer-content {
    padding: 20px;
}
.room-offer-line+ .room-offer-line {
    border-top: 1px solid var(--border);
    padding-top: 15px;
    margin-top: 15px;
}
.room-offer-line h3 {
    font-size: 17px;
    margin: 0 0 7px;
}
.room-offer-line p {
    font-size: 12px;
    color: var(--ink-light);
    margin: 0 0 12px;
}
.room-offer-price {
    padding: 22px;
    background: #f6f9ff;
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    gap: 10px;
}
.room-offer-price b {
    font-size: 25px;
    letter-spacing: -.6px;
}
.room-offer-price small {
    font-size: 10px;
    color: var(--ink-muted);
    text-align: right;
}
.room-offer-price button {
    font-size: 12px;
    padding: 11px 15px;
    width: 100%;
    margin-top: 9px;
}
.cancellation-room {
    padding: 8px 0;
}
.cancellation-room p {
    font-size: 12px;
    color: var(--ink-light);
    margin: 8px 0;
}
@media(max-width:760px) {
    .room-offer {
        grid-template-columns: 1fr;
    }
    .room-offer-content {
        padding: 17px;
    }
    .room-offer-price {
        border-left: 0;
        border-top: 1px solid var(--border);
        padding: 17px;
    }
    .room-offer-price b {
        font-size: 23px;
    }
    .room-offer-line h3 {
        font-size: 16px;
    }
}
.property-photo-thumbnails {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 5px;
    margin-top: 5px;
}
.property-photo-thumbnails button {
    position: relative;
    border: 0;
    padding: 0;
    background: #dce4f0;
    height: 88px;
    overflow: hidden;
}
.property-photo-thumbnails img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.property-photo-thumbnails button>span {
    position: absolute;
    inset: 0;
    background: #14223870;
    color: #fff;
    font-size: 9px;
    padding: 12px;
    display: grid;
    place-items: center;
}
.collection-search {
    max-width: 620px;
    margin: 28px auto;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
}
.collection-search h2 {
    font-size: 23px;
}
.collection-search p {
    color: var(--ink-muted);
    font-size: 13px;
}
.collection-search label {
    display: block;
    font-size: 12px;
    margin: 20px 0 5px;
}
.collection-search input {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    width: 100%;
    margin-bottom: 16px;
}
.collection-search button {
    font-size: 13px;
}
@media(max-width:760px) {
    .property-photo-thumbnails button {
        height: 60px;
    }
    .property-photo-thumbnails button>span {
        font-size: 8px;
        padding: 6px;
    }
    .collection-search {
        padding: 22px;
    }
}
#detailSaveBtn {
    display: none;
}
.favorites-header-count {
    margin-left: 5px;
}

/* Clear semantic colours carry through the real review and matching screens. */
.driver-item.positive .driver-icon { background: var(--green); color: #fff; }
.driver-item.negative .driver-icon { background: var(--red); color: #fff; }
.driver-label { font-weight: 700; }
.driver-impact.medium { background: var(--brand-yellow); color: #182338; }
.hotel-fit-card { background: #fff; }

/* Keep legal and support navigation readable on the white site footer. */
main>footer .footer-link { color: #0756e9; }
main>footer .footer-copyright { color: #52617a; }
.profile-account-content[hidden], #profileAccountFooter[hidden], #bookingsTabs[hidden] { display: none; }
@media (max-width: 360px) {
    .editorial-date-row { grid-template-columns: minmax(0, 1fr); }
    .results-search-anchor .editorial-date-field { border: 1px solid #d8ddeb; border-radius: 5px; }
}
