@charset "UTF-8";

/* Subtle slide-in from right (compatible with animate.css naming) */
@keyframes slideInRightSmall {
  0% {
    transform: translate3d(2rem, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}

.animate__slideInRightSmall {
  animation-name: slideInRightSmall;
}

/* Subtle zoom-out reveal (scales down to 1 while fading in) */
@keyframes zoomOutReveal {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.animate__zoomOutReveal {
  animation-name: zoomOutReveal;
}

/* Scroll Animation System Styles */
.animation-container {
  /* Ensure smooth transitions and proper initial states */
  transition: opacity 0.3s ease;
  /* Initially hide elements until animation is triggered */
  opacity: 0;
  transform: translateY(20px);
}

.animation-container[data-animated='true'] {
  /* Final state - ensure element is fully visible and maintains its styling */
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Show element when animation starts */
.animation-container.animate__animated {
  opacity: 1;
  animation-fill-mode: both;
}

/* Override default Y-offset for the selected zoom block only */
.home-rooms-and-suites .animation-container[data-animation='zoomOutReveal'] {
  transform: scale(1.08);
}

/* Targeted override: only this block should fade in from right (no Y offset) */
.home-rooms-and-suites .animation-container[data-animation='fadeInRight'] {
  transform: translateX(16px);
}
.home-rooms-and-suites
  .animation-container[data-animation='fadeInRight'].animate__animated {
  transform: none;
}

/* For testing - temporary visible state */
.animation-container.test-visible {
  opacity: 1;
  transform: none;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  padding-top: var(--navigation-header-height, 4rem);
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  color: var(--bellhop-color-link-on-light-enabled);
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  /* color: var(--bellhop-color-link-on-light-hover); */
  text-decoration: underline;
  color: inherit;
}

a,
a:visited {
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type='checkbox'],
[type='radio'] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  appearance: textfield;
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  //display: none;
}

/*! BELLHOP Design Tokens | (c) 2025 Hyatt Corporation */
/**
 * Do not edit directly, this file was auto-generated.
 */
:root {
  --bellhop-color-button: #211551;
  --bellhop-color-control-on-light: #211551;
  --bellhop-color-control-on-dark: #cec3aa;
  --bellhop-color-link-on-light-enabled: #211551;
  --bellhop-color-link-on-light-hover: #4d4474;
  --bellhop-color-link-on-dark-enabled: #d3d0dc;
  --bellhop-color-link-on-dark-hover: #ffffff;
  --bellhop-color-background-light-1: #ffffff;
  --bellhop-color-background-light-2: #e8e5de;
  --bellhop-color-background-dark-1: #211551;
  --bellhop-color-background-dark-2: #2a2b2f;
  --bellhop-color-background-page: #ffffff;
  --bellhop-color-grayscale-100: #ffffff;
  --bellhop-color-grayscale-200: #f6f6f8;
  --bellhop-color-grayscale-250: #f9f9f7;
  --bellhop-color-grayscale-300: #ececee;
  --bellhop-color-grayscale-400: #dcdde1;
  --bellhop-color-grayscale-500: #b2b5bc;
  --bellhop-color-grayscale-600: #8f919d;
  --bellhop-color-grayscale-700: #6e707d;
  --bellhop-color-grayscale-800: #2a2b2f;
  --bellhop-color-grayscale: #6e707d;
  --bellhop-color-headline-on-light: #211551;
  --bellhop-color-headline-on-dark: #ffffff;
  --bellhop-color-status-error-accent: #b70404;
  --bellhop-color-status-error-background: #ffeaed;
  --bellhop-color-status-error-text: #b70404;
  --bellhop-color-status-success-accent: #14711b;
  --bellhop-color-status-success-background: #ebf6ed;
  --bellhop-color-status-success-text: #14711b;
  --bellhop-color-status-warning-accent: #d87513;
  --bellhop-color-status-warning-background: #fff5e5;
  --bellhop-color-status-info-accent: #0072ce;
  --bellhop-color-status-info-background: #e8f0fe;
  c: #2a2b2f;
  --bellhop-color-text-on-dark: #ffffff;
  --bellhop-color-text-on-light: #211551;
  --bellhop-color-brand-iris-300: #d3d0dc;
  --bellhop-color-brand-iris-400: #a6a1b9;
  --bellhop-color-brand-iris-500: #7a7397;
  --bellhop-color-brand-iris-600: #4d4474;
  --bellhop-color-brand-iris-700: #211551;
  --bellhop-color-brand-iris: #211551;
  --bellhop-color-brand-gray: #707070;
  --bellhop-color-brand-sand: #cec3aa;
  --bellhop-color-brand-cream: #e8e5de;
  --bellhop-color-brand-steel-blue: #859bae;
  --bellhop-color-brand-ice-blue: #d4e0ed;
  --bellhop-button-default-border-radius: none;
  --bellhop-button-default-border-radius-lg: 0;
  --bellhop-button-default-border-radius-sm: 0;
  --bellhop-button-default-border-width: 1px;
  --bellhop-button-default-padding-inline-lg: 16px;
  --bellhop-button-default-padding-inline-sm: 16px;
  --bellhop-button-primary-on-light-background-color-enabled: #211551;
  --bellhop-button-primary-on-light-background-color-hover: #d3d0dc;
  --bellhop-button-primary-on-light-border-color-enabled: #211551;
  --bellhop-button-primary-on-light-border-color-hover: #d3d0dc;
  --bellhop-button-primary-on-light-text-color-enabled: #ffffff;
  --bellhop-button-primary-on-light-text-color-hover: #211551;
  --bellhop-button-primary-on-light-background-image: none;
  --bellhop-button-primary-on-dark-background-color-enabled: #ffffff;
  --bellhop-button-primary-on-dark-background-color-hover: #d3d0dc;
  --bellhop-button-primary-on-dark-border-color-enabled: #ffffff;
  --bellhop-button-primary-on-dark-border-color-hover: #d3d0dc;
  --bellhop-button-primary-on-dark-text-color-enabled: #211551;
  --bellhop-button-primary-on-dark-text-color-hover: #211551;
  --bellhop-button-primary-on-dark-background-image: none;
  --bellhop-button-secondary-on-light-background-color-enabled: transparent;
  --bellhop-button-secondary-on-light-background-color-hover: #211551;
  --bellhop-button-secondary-on-light-border-color-enabled: #211551;
  --bellhop-button-secondary-on-light-border-color-hover: #211551;
  --bellhop-button-secondary-on-light-text-color-enabled: #211551;
  --bellhop-button-secondary-on-light-text-color-hover: #ffffff;
  --bellhop-button-secondary-on-dark-background-color-enabled: transparent;
  --bellhop-button-secondary-on-dark-background-color-hover: #ffffff;
  --bellhop-button-secondary-on-dark-border-color-enabled: #ffffff;
  --bellhop-button-secondary-on-dark-border-color-hover: #ffffff;
  --bellhop-button-secondary-on-dark-text-color-enabled: #ffffff;
  --bellhop-button-secondary-on-dark-text-color-hover: #211551;
  --bellhop-button-tertiary-on-light-text-color-enabled: #211551;
  --bellhop-button-tertiary-on-dark-text-color-enabled: #ffffff;
  --bellhop-card-background-color: #ffffff;
  --bellhop-card-border-color: #dcdde1;
  --bellhop-card-border-width: 1px;
  --bellhop-card-border-radius: none;
  --bellhop-card-border-shadow: none;
  --bellhop-card-text-align: start;
  --bellhop-card-padding-block-xs: 24px;
  --bellhop-card-padding-block-lg: 32px;
  --bellhop-card-padding-inline-xs: 24px;
  --bellhop-card-padding-inline-lg: 32px;
  --bellhop-header-color-light: #e8e5de;
  --bellhop-header-color-dark: #211551;
  --bellhop-z-index-pin: 100; /** Fixed position pin, commmonly anchored to edge of browser window */
  --bellhop-z-index-dropdown: 200; /** Custom dropdowns */
  --bellhop-z-index-dropdown-tab: 205; /** CTA of custom dropdown to provide visual effect of overlapping tab */
  --bellhop-z-index-popover: 300; /** Overlay panel, commonly containing additional form elements. */
  --bellhop-z-index-popover-tab: 305; /** CTA of popover to provide visual effect of overlapping tab */
  --bellhop-z-index-fixed: 400; /** Fixed or sticky position elements, most elements scroll underneath */
  --bellhop-z-index-tooltip: 500; /** Toolip bubble */
  --bellhop-z-index-flyout: 600; /** Panel that is full height of browser window and anchored to one side */
  --bellhop-z-index-modal: 700; /** Content modal panel */
  --bellhop-z-index-dialog: 800; /** Content modal that has confirmation option. May be launched from another modal */
  --bellhop-z-index-interstitial: 900; /** Full page progress overlay */
}

/**
 * Do not edit directly, this file was auto-generated.
 */
/*! BELLHOP Design System | (c) 2025 Hyatt Corporation */
.be-pattern-ice-blue {
  background-color: var(--bellhop-color-brand-ice-blue);
}

/**
 * Do not edit directly, this file was auto-generated.
 */
/* 100 900 latin */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* 100 900 latin-ext */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* 100 900 cyrillic */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* 100 900 greek */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_greek.woff2') format('woff2');
  unicode-range:
    U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* 100 900 viet */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_viet.woff2') format('woff2');
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* 100 900 arabic */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_arabic.woff2') format('woff2');
  unicode-range:
    U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1,
    U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF,
    U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EC2-10EC4,
    U+10EFC-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24,
    U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47,
    U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59,
    U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A,
    U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89,
    U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}
/* 100 700 latin */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/JosefinSans/JosefinSans_latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* 100 700 latin-ext */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/JosefinSans/JosefinSans_latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* 100 700 viet */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/JosefinSans/JosefinSans_viet.woff2') format('woff2');
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* 100 900 latin */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* 100 900 latin-ext */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* 100 900 cyrillic */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* 100 900 greek */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_greek.woff2') format('woff2');
  unicode-range:
    U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* 100 900 viet */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_viet.woff2') format('woff2');
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* 100 900 arabic */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_arabic.woff2') format('woff2');
  unicode-range:
    U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1,
    U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF,
    U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EC2-10EC4,
    U+10EFC-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24,
    U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47,
    U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59,
    U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A,
    U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89,
    U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}
/* 100 700 latin */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/JosefinSans/JosefinSans_latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* 100 700 latin-ext */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/JosefinSans/JosefinSans_latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* 100 700 viet */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/JosefinSans/JosefinSans_viet.woff2') format('woff2');
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* 100 900 latin */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* 100 900 latin-ext */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* 100 900 cyrillic */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* 100 900 greek */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_greek.woff2') format('woff2');
  unicode-range:
    U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* 100 900 viet */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_viet.woff2') format('woff2');
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* 100 900 arabic */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_arabic.woff2') format('woff2');
  unicode-range:
    U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1,
    U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF,
    U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EC2-10EC4,
    U+10EFC-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24,
    U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47,
    U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59,
    U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A,
    U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89,
    U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}
/* 100 700 latin */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/JosefinSans/JosefinSans_latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* 100 700 latin-ext */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/JosefinSans/JosefinSans_latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* 100 700 viet */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/JosefinSans/JosefinSans_viet.woff2') format('woff2');
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* 100 900 latin */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* 100 900 latin-ext */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* 100 900 cyrillic */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* 100 900 greek */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_greek.woff2') format('woff2');
  unicode-range:
    U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* 100 900 viet */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_viet.woff2') format('woff2');
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* 100 900 arabic */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_arabic.woff2') format('woff2');
  unicode-range:
    U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1,
    U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF,
    U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EC2-10EC4,
    U+10EFC-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24,
    U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47,
    U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59,
    U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A,
    U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89,
    U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}
/* 100 700 latin */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/JosefinSans/JosefinSans_latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* 100 700 latin-ext */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/JosefinSans/JosefinSans_latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* 100 700 viet */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/JosefinSans/JosefinSans_viet.woff2') format('woff2');
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* 100 900 latin */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* 100 900 latin-ext */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* 100 900 cyrillic */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* 100 900 greek */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_greek.woff2') format('woff2');
  unicode-range:
    U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* 100 900 viet */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_viet.woff2') format('woff2');
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* 100 900 arabic */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_arabic.woff2') format('woff2');
  unicode-range:
    U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1,
    U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF,
    U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EC2-10EC4,
    U+10EFC-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24,
    U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47,
    U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59,
    U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A,
    U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89,
    U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}
/* 100 700 latin */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/JosefinSans/JosefinSans_latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* 100 700 latin-ext */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/JosefinSans/JosefinSans_latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* 100 700 viet */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/JosefinSans/JosefinSans_viet.woff2') format('woff2');
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* 100 900 latin */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* 100 900 latin-ext */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* 100 900 cyrillic */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* 100 900 greek */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_greek.woff2') format('woff2');
  unicode-range:
    U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* 100 900 viet */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_viet.woff2') format('woff2');
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* 100 900 arabic */
@font-face {
  font-family: 'Noto Sans Display';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/NotoSans/NotoSans_arabic.woff2') format('woff2');
  unicode-range:
    U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1,
    U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF,
    U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EC2-10EC4,
    U+10EFC-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24,
    U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47,
    U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59,
    U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A,
    U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89,
    U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}
/* 100 700 latin */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/JosefinSans/JosefinSans_latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* 100 700 latin-ext */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/JosefinSans/JosefinSans_latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* 100 700 viet */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src:
    local('☺︎'),
    url('../t/webfonts/JosefinSans/JosefinSans_viet.woff2') format('woff2');
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}

/* Look Around Section */
.home-look-around {
  background-color: #ffffff;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}

.look-around-title {
  text-align: center;
}

.look-around-title * {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.33;
  color: #211551;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0;
}

.look-around-carousel-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Match design container height (desktop) */
.look-around-carousel-wrapper,
.look-around-carousel {
  overflow: hidden;
}

.look-around-carousel {
  width: 100%;
  /* Slick will manage slide layout; ensure the container is block-level for Slick */
  display: block;
}
.look-around-carousel.slick-dotted {
  margin-bottom: 0;
}

.carousel-item {
  /* width: 910px; fixed design width for desktop */
  /* height: 593px; */
  position: relative;
  margin: 0 0.625rem;
  outline: none;
  aspect-ratio: 3 / 4;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Layered slide-specific styles */
.slide-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide-inner .slide-main {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-layered .layer-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.slide-layered .layer-bg img {
  position: absolute;
  top: 0;
  left: -8%;
  width: 116%;
  height: 100%;
  object-fit: cover;
}

.slide-layered .layer-1,
.slide-layered .layer-2,
.slide-layered .layer-bg-overlay img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-controls {
  width: 910px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  max-width: 100%;
  padding: 0 20px; /* Safety padding on small screens */
  box-sizing: border-box;
}

.carousel-caption p {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #2a2b2f;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.carousel-arrows {
  width: 61px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  display: none;
}

.carousel-arrows img {
  width: 100%;
  height: 100%;
  display: block;
}

.carousel-arrows .arrow-prev,
.carousel-arrows .arrow-next {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 10;
  background: url(../images/arrows/navigate-on-light.svg) no-repeat center / cover
    transparent;
  transition: transform 0.2s;
  will-change: transform;
  outline: none;
}

.carousel-arrows .arrow-prev {
  left: 0;
  transform: rotate(180deg);
}
.carousel-arrows .arrow-prev:hover {
  left: 0;
  transform: rotate(180deg) scale(1.2);
}
.carousel-arrows .arrow-next {
  right: 0;
}

.carousel-arrows .arrow-prev:hover,
.carousel-arrows .arrow-next:hover {
  transform: scale(1.2);
}
.carousel-arrows .arrow-prev:hover {
  transform: rotate(180deg) scale(1.2);
}

/* Accessibility: visible focus outline for custom arrow controls */
.carousel-arrows .arrow-prev:focus,
.carousel-arrows .arrow-next:focus {
  outline: 2px solid #211551;
  outline-offset: 2px;
}

/* Slick Slider Overrides */
.slick-list {
  /* Keep slides clipped to their container to avoid site-wide horizontal overflow.
     Center-mode and partial slides are handled via padding on the track, not
     by allowing overflow on the list. */
  overflow: hidden;
}

.slick-slide {
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media (max-width: 1200px) {
  .slide-layered .layer-bg img {
    left: 0;
    width: 100%;
  }
}

@media (max-width: 950px) {
  /* .carousel-item {
    height: auto;
    aspect-ratio: 910/593;
  } */

  .carousel-controls {
    width: 90vw;
  }
}

@media (max-width: 600px) {
  .look-around-carousel-wrapper,
  .look-around-carousel {
    overflow: visible;
  }
  .home-look-around .carousel-controls {
    margin: 0 0 3rem;
  }
  .look-around-carousel .slick-dots {
    bottom: -7.5rem;
  }
  .look-around-carousel .slick-dots li {
    width: auto;
    height: auto;
  }
  .look-around-carousel .slick-dots button {
    width: 0.5rem;
    height: 0.5rem;
    border: 1px solid #979797;
    border-radius: .5rem;
    font-size: 0;
    color: transparent;
  }
  .look-around-carousel .slick-dots button::before {
    display: none
  }
  .look-around-carousel .slick-dots li.slick-active button {
    background-color: #211551;
  }
}

@media (min-width: 600px) {
  .home-look-around {
    padding: 5rem 0;
    gap: 0.5rem;
  }
  .look-around-title * {
    font-size: 45px;
  }
  .carousel-arrows {
    display: block;
  }
  .carousel-item {
    aspect-ratio: 910/593;
  }

}

*,
*::before,
*::after {
  box-sizing: border-box;
}
:host {
  display: flex;
  align-items: center;
  color: var(--bellhop-color-text-on-light);
}

html {
  text-size-adjust: 100%;
  font-size: 100%;
}

body {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 87.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.3;
  color: var(--bellhop-color-text-on-light);
  background-color: var(--bellhop-color-background-page);
}

a:not(.offcanvas__link):visited,
section a:visted,
footer a:visited {
  color: var(--bellhop-color-link-on-light-enabled);
}

*:focus {
  outline: none;
  box-shadow:
    0 0 0 2px var(--bellhop-color-link-on-dark-hover),
    0 0 0 4px var(--bellhop-color-link-on-light-enabled);
}
*:focus:not(:focus-visible) {
  box-shadow: none;
}
button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem; /* 44px */
  height: 2.75rem; /* 44px */
  border-style: solid;
  border-color: transparent;
  background-color: transparent;
}

button {
  background-color: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}
.be-text-lead-in {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
}

.be-text-section-1,
.be-preformatted-1 h4,
.be-preformatted-2 h3,
.be-table-1 caption,
.be-preformatted-1 table caption {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
}

.be-text-section-2 {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
}

.be-text-section-3,
.be-preformatted-1 h5,
.be-preformatted-1 h6,
.be-preformatted-2 h4,
.be-preformatted-2 h5,
.be-preformatted-2 h6,
.be-table-2 caption,
.be-preformatted-2 table caption {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
}

.be-text-section-4 {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
}

.be-text-body-1,
.be-preformatted-1,
.be-table-1,
.be-preformatted-1 table {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
}

.be-text-body-2,
.be-preformatted-2,
.be-table-2,
.be-preformatted-2 table {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
}

.be-text-label {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: normal;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
}

.be-text-caption {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: normal;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
}

.be-text-overline {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
}

.be-text-footnote,
.be-legal {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: normal;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
}

.be-legal p {
  margin-top: 0;
  margin-bottom: 16px;
}
.be-legal p:last-child {
  margin-bottom: 0;
}

.be-list,
.be-preformatted-1 ul,
.be-preformatted-1 ol,
.be-preformatted-2 ul,
.be-preformatted-2 ol {
  padding-left: 32px;
  line-height: 1.5;
  margin: 0;
}
.be-list li,
.be-preformatted-1 ul li,
.be-preformatted-1 ol li,
.be-preformatted-2 ul li,
.be-preformatted-2 ol li {
  margin-bottom: 4px;
}

.be-list-unstyled {
  padding-left: 0;
  line-height: 1.5;
  margin: 0;
  list-style: none;
}
.be-list-unstyled li {
  margin-bottom: 4px;
}

.be-list ul,
.be-preformatted-1 ul ul,
.be-preformatted-1 ol ul,
.be-preformatted-2 ul ul,
.be-preformatted-2 ol ul,
.be-list ol,
.be-preformatted-1 ul ol,
.be-preformatted-1 ol ol,
.be-preformatted-2 ul ol,
.be-preformatted-2 ol ol,
.be-list-unstyled ul,
.be-list-unstyled ol {
  margin: 4px 0;
  padding-left: 32px;
}

.be-table-1 th,
.be-preformatted-1 table th,
.be-table-1 td,
.be-preformatted-1 table td {
  padding: 16px;
}
.be-table-1 caption,
.be-preformatted-1 table caption {
  margin-bottom: 16px;
  text-align: left;
}

.be-table-2 th,
.be-preformatted-2 table th,
.be-table-2 td,
.be-preformatted-2 table td {
  padding: 12px;
}
.be-table-2 caption,
.be-preformatted-2 table caption {
  margin-bottom: 12px;
  text-align: left;
}

.be-table-1,
.be-preformatted-1 table,
.be-table-2,
.be-preformatted-2 table {
  border-collapse: collapse;
}
.be-table-1 thead tr,
.be-preformatted-1 table thead tr,
.be-table-2 thead tr,
.be-preformatted-2 table thead tr {
  background-color: var(--bellhop-color-background-dark-1);
  color: #fff;
}
.be-table-1 thead th,
.be-preformatted-1 table thead th,
.be-table-2 thead th,
.be-preformatted-2 table thead th {
  text-align: left;
}
.be-table-1 tbody tr:nth-child(odd),
.be-preformatted-1 table tbody tr:nth-child(odd),
.be-table-2 tbody tr:nth-child(odd),
.be-preformatted-2 table tbody tr:nth-child(odd) {
  background-color: var(--bellhop-color-grayscale-200);
}

.be-preformatted-1 h1 {
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 24px;
}
.be-preformatted-1 h1 {
  font-size: 32px;
}
@media (min-width: 480px) {
  .be-preformatted-1 h1 {
    font-size: calc(32px + 26 * (100vw - 480px) / 800);
  }
}
@media (min-width: 1280px) {
  .be-preformatted-1 h1 {
    font-size: 58px;
  }
}
.be-preformatted-1 h2 {
  font-weight: 300;
  margin-bottom: 24px;
  margin-top: 32px;
}
.be-preformatted-1 h2 {
  font-size: 21px;
}
@media (min-width: 480px) {
  .be-preformatted-1 h2 {
    font-size: calc(21px + 25 * (100vw - 480px) / 800);
  }
}
@media (min-width: 1280px) {
  .be-preformatted-1 h2 {
    font-size: 46px;
  }
}
.be-preformatted-1 h2:first-child {
  margin-top: 0;
}
.be-preformatted-1 h3 {
  font-weight: 300;
  margin-bottom: 16px;
  margin-top: 32px;
}
.be-preformatted-1 h3 {
  font-size: 20px;
}
@media (min-width: 480px) {
  .be-preformatted-1 h3 {
    font-size: calc(20px + 9 * (100vw - 480px) / 800);
  }
}
@media (min-width: 1280px) {
  .be-preformatted-1 h3 {
    font-size: 29px;
  }
}
.be-preformatted-1 h3:first-child {
  margin-top: 0;
}
.be-preformatted-1 h4 {
  margin-bottom: 12px;
}
.be-preformatted-1 h5,
.be-preformatted-1 h6 {
  margin-bottom: 12px;
}
.be-preformatted-1 p {
  margin-bottom: 16px;
}
.be-preformatted-1 table {
  margin-top: 40px;
  margin-bottom: 16px;
}
.be-preformatted-1 ul,
.be-preformatted-1 ol {
  margin: 24px 0;
}

.be-preformatted-2 h1 {
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 16px;
}
.be-preformatted-2 h1 {
  font-size: 26px;
}
@media (min-width: 480px) {
  .be-preformatted-2 h1 {
    font-size: calc(26px + 15 * (100vw - 480px) / 800);
  }
}
@media (min-width: 1280px) {
  .be-preformatted-2 h1 {
    font-size: 41px;
  }
}
.be-preformatted-2 h2 {
  font-weight: 300;
  margin-bottom: 16px;
  margin-top: 24px;
}
.be-preformatted-2 h2 {
  font-size: 20px;
}
@media (min-width: 480px) {
  .be-preformatted-2 h2 {
    font-size: calc(20px + 9 * (100vw - 480px) / 800);
  }
}
@media (min-width: 1280px) {
  .be-preformatted-2 h2 {
    font-size: 29px;
  }
}
.be-preformatted-2 h2:first-child {
  margin-top: 0;
}
.be-preformatted-2 h3 {
  margin-bottom: 12px;
  margin-top: 24px;
}
.be-preformatted-2 h3:first-child {
  margin-top: 0;
}
.be-preformatted-2 h4 {
  margin-bottom: 8px;
}
.be-preformatted-2 h5,
.be-preformatted-2 h6 {
  margin-bottom: 8px;
}
.be-preformatted-2 p {
  margin-bottom: 12px;
}
.be-preformatted-2 table {
  margin-top: 32px;
  margin-bottom: 12px;
}
.be-preformatted-2 ul,
.be-preformatted-2 ol {
  margin: 20px 0;
}

.be-text-button-1,
.be-text-button-2 {
  font-family:
    'Josefin Sans',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.be-text-button-1::before,
.be-text-button-1::after,
.be-text-button-2::before,
.be-text-button-2::after {
  content: '';
  display: block;
  height: 0;
  width: 0;
}
.be-text-button-1::before,
.be-text-button-2::before {
  margin-bottom: -0.1458333333em;
}
.be-text-button-1::after,
.be-text-button-2::after {
  margin-top: -0.375em;
}
.be-text-button-1:lang(az),
.be-text-button-2:lang(az) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-text-button-1:lang(km),
.be-text-button-2:lang(km) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-text-button-1:lang(th),
.be-text-button-2:lang(th) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-text-button-1:lang(zh),
.be-text-button-2:lang(zh) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-text-button-1:lang(ja),
.be-text-button-2:lang(ja) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-text-button-1:lang(ko),
.be-text-button-2:lang(ko) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-text-button-1:lang(bg),
.be-text-button-2:lang(bg) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-text-button-1:lang(ru),
.be-text-button-2:lang(ru) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}

.be-text-button-1:lang(uk),
.be-text-button-2:lang(uk) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-text-button-1:lang(el),
.be-text-button-2:lang(el) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-text-button-1:lang(ar),
.be-text-button-2:lang(ar) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-text-button-1:lang(az)::before,
.be-text-button-2:lang(az)::before {
  margin-bottom: -0.2916666667em;
}
.be-text-button-1:lang(km)::before,
.be-text-button-2:lang(km)::before {
  margin-bottom: -0.2916666667em;
}
.be-text-button-1:lang(th)::before,
.be-text-button-2:lang(th)::before {
  margin-bottom: -0.2916666667em;
}
.be-text-button-1:lang(zh)::before,
.be-text-button-2:lang(zh)::before {
  margin-bottom: -0.2916666667em;
}
.be-text-button-1:lang(ja)::before,
.be-text-button-2:lang(ja)::before {
  margin-bottom: -0.2916666667em;
}
.be-text-button-1:lang(ko)::before,
.be-text-button-2:lang(ko)::before {
  margin-bottom: -0.2916666667em;
}
.be-text-button-1:lang(bg)::before,
.be-text-button-2:lang(bg)::before {
  margin-bottom: -0.2916666667em;
}
.be-text-button-1:lang(ru)::before,
.be-text-button-2:lang(ru)::before {
  margin-bottom: -0.2916666667em;
}
.be-text-button-1:lang(uk)::before,
.be-text-button-2:lang(uk)::before {
  margin-bottom: -0.2916666667em;
}
.be-text-button-1:lang(el)::before,
.be-text-button-2:lang(el)::before {
  margin-bottom: -0.2916666667em;
}
.be-text-button-1:lang(ar)::before,
.be-text-button-2:lang(ar)::before {
  margin-bottom: -0.2916666667em;
}
.be-text-button-1:lang(az)::after,
.be-text-button-2:lang(az)::after {
  margin-top: -0.25em;
}
.be-text-button-1:lang(km)::after,
.be-text-button-2:lang(km)::after {
  margin-top: -0.25em;
}
.be-text-button-1:lang(th)::after,
.be-text-button-2:lang(th)::after {
  margin-top: -0.25em;
}
.be-text-button-1:lang(zh)::after,
.be-text-button-2:lang(zh)::after {
  margin-top: -0.25em;
}
.be-text-button-1:lang(ja)::after,
.be-text-button-2:lang(ja)::after {
  margin-top: -0.25em;
}
.be-text-button-1:lang(ko)::after,
.be-text-button-2:lang(ko)::after {
  margin-top: -0.25em;
}
.be-text-button-1:lang(bg)::after,
.be-text-button-2:lang(bg)::after {
  margin-top: -0.25em;
}
.be-text-button-1:lang(ru)::after,
.be-text-button-2:lang(ru)::after {
  margin-top: -0.25em;
}
.be-text-button-1:lang(uk)::after,
.be-text-button-2:lang(uk)::after {
  margin-top: -0.25em;
}
.be-text-button-1:lang(el)::after,
.be-text-button-2:lang(el)::after {
  margin-top: -0.25em;
}
.be-text-button-1:lang(ar)::after,
.be-text-button-2:lang(ar)::after {
  margin-top: -0.25em;
}

.be-text-button-1 {
  font-size: 16px;
}

.be-text-button-2 {
  font-size: 14px;
}

.be-text-card-title {
  font-family:
    'Josefin Sans',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  line-height: 1.25;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
}
.be-text-card-title::before,
.be-text-card-title::after {
  content: '';
  display: block;
  height: 0;
  width: 0;
}
.be-text-card-title::before {
  margin-bottom: -0.1208333333em;
}
.be-text-card-title::after {
  margin-top: -0.35em;
}
.be-text-card-title:lang(az) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 24px;
  letter-spacing: normal;
  line-height: 1.25;
}
.be-text-card-title:lang(km) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 24px;
  letter-spacing: normal;
  line-height: 1.25;
}
.be-text-card-title:lang(th) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 24px;
  letter-spacing: normal;
  line-height: 1.25;
}
.be-text-card-title:lang(zh) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 24px;
  letter-spacing: normal;
  line-height: 1.25;
}
.be-text-card-title:lang(ja) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 24px;
  letter-spacing: normal;
  line-height: 1.25;
}
.be-text-card-title:lang(ko) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 24px;
  letter-spacing: normal;
  line-height: 1.25;
}
.be-text-card-title:lang(bg) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 24px;
  letter-spacing: normal;
  line-height: 1.25;
}
.be-text-card-title:lang(ru) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 24px;
  letter-spacing: normal;
  line-height: 1.25;
}
.be-text-card-title:lang(uk) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 24px;
  letter-spacing: normal;
  line-height: 1.25;
}
.be-text-card-title:lang(el) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 24px;
  letter-spacing: normal;
  line-height: 1.25;
}
.be-text-card-title:lang(ar) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 24px;
  letter-spacing: normal;
  line-height: 1.25;
}
.be-text-card-title:lang(az)::before {
  margin-bottom: -0.2666666667em;
}
.be-text-card-title:lang(km)::before {
  margin-bottom: -0.2666666667em;
}
.be-text-card-title:lang(th)::before {
  margin-bottom: -0.2666666667em;
}
.be-text-card-title:lang(zh)::before {
  margin-bottom: -0.2666666667em;
}
.be-text-card-title:lang(ja)::before {
  margin-bottom: -0.2666666667em;
}
.be-text-card-title:lang(ko)::before {
  margin-bottom: -0.2666666667em;
}
.be-text-card-title:lang(bg)::before {
  margin-bottom: -0.2666666667em;
}
.be-text-card-title:lang(ru)::before {
  margin-bottom: -0.2666666667em;
}
.be-text-card-title:lang(uk)::before {
  margin-bottom: -0.2666666667em;
}
.be-text-card-title:lang(el)::before {
  margin-bottom: -0.2666666667em;
}
.be-text-card-title:lang(ar)::before {
  margin-bottom: -0.2666666667em;
}
.be-text-card-title:lang(az)::after {
  margin-top: -0.225em;
}
.be-text-card-title:lang(km)::after {
  margin-top: -0.225em;
}
.be-text-card-title:lang(th)::after {
  margin-top: -0.225em;
}
.be-text-card-title:lang(zh)::after {
  margin-top: -0.225em;
}
.be-text-card-title:lang(ja)::after {
  margin-top: -0.225em;
}
.be-text-card-title:lang(ko)::after {
  margin-top: -0.225em;
}
.be-text-card-title:lang(bg)::after {
  margin-top: -0.225em;
}
.be-text-card-title:lang(ru)::after {
  margin-top: -0.225em;
}
.be-text-card-title:lang(uk)::after {
  margin-top: -0.225em;
}
.be-text-card-title:lang(el)::after {
  margin-top: -0.225em;
}
.be-text-card-title:lang(ar)::after {
  margin-top: -0.225em;
}

.be-headline-hero-1,
.be-headline-hero-2,
.be-headline-hero-3 {
  font-family:
    'Josefin Sans',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 4px;
  margin-top: 0;
  margin-bottom: 0;
}
.be-headline-hero-1::before,
.be-headline-hero-1::after,
.be-headline-hero-2::before,
.be-headline-hero-2::after,
.be-headline-hero-3::before,
.be-headline-hero-3::after {
  content: '';
  display: block;
  height: 0;
  width: 0;
}
.be-headline-hero-1::before,
.be-headline-hero-2::before,
.be-headline-hero-3::before {
  margin-bottom: -0.0958333333em;
}
.be-headline-hero-1::after,
.be-headline-hero-2::after,
.be-headline-hero-3::after {
  margin-top: -0.325em;
}
.be-headline-hero-1:lang(az),
.be-headline-hero-2:lang(az),
.be-headline-hero-3:lang(az) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-headline-hero-1:lang(km),
.be-headline-hero-2:lang(km),
.be-headline-hero-3:lang(km) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-headline-hero-1:lang(th),
.be-headline-hero-2:lang(th),
.be-headline-hero-3:lang(th) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-headline-hero-1:lang(zh),
.be-headline-hero-2:lang(zh),
.be-headline-hero-3:lang(zh) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-headline-hero-1:lang(ja),
.be-headline-hero-2:lang(ja),
.be-headline-hero-3:lang(ja) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-headline-hero-1:lang(ko),
.be-headline-hero-2:lang(ko),
.be-headline-hero-3:lang(ko) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-headline-hero-1:lang(bg),
.be-headline-hero-2:lang(bg),
.be-headline-hero-3:lang(bg) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-headline-hero-1:lang(ru),
.be-headline-hero-2:lang(ru),
.be-headline-hero-3:lang(ru) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-headline-hero-1:lang(uk),
.be-headline-hero-2:lang(uk),
.be-headline-hero-3:lang(uk) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-headline-hero-1:lang(el),
.be-headline-hero-2:lang(el),
.be-headline-hero-3:lang(el) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-headline-hero-1:lang(ar),
.be-headline-hero-2:lang(ar),
.be-headline-hero-3:lang(ar) {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: normal;
  line-height: 1.3;
}
.be-headline-hero-1:lang(az)::before,
.be-headline-hero-2:lang(az)::before,
.be-headline-hero-3:lang(az)::before {
  margin-bottom: -0.2916666667em;
}
.be-headline-hero-1:lang(km)::before,
.be-headline-hero-2:lang(km)::before,
.be-headline-hero-3:lang(km)::before {
  max-width: 1440px;
  padding-left: 1rem;
  padding-right: 1rem;
}
.be-container {
  padding-left: 1rem;
  padding-right: 1rem;
}

.be-headline-hero-2 {
  font-size: 1.5rem; /* 24px */
}

@media (min-width: 600px) {
  .be-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .be-headline-hero-2 {
    font-size: 2.8125rem; /* 45px */
  }
}
@media (min-width: 1280px) {
  .be-container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.be-grid-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}
@media (min-width: 960px) {
  .be-grid-row {
    margin-left: -12px;
    margin-right: -12px;
  }
}
.be-grid-row > [class*='be-grid-col'] {
  padding-left: 8px;
  padding-right: 8px;
}
@media (min-width: 960px) {
  .be-grid-row > [class*='be-grid-col'] {
    padding-left: 12px;
    padding-right: 12px;
  }
}

[class*='be-grid-col'] {
  width: 100%;
}

.be-grid-col-xs-1 {
  width: 50%;
}

.be-grid-col-xs-2 {
  width: 100%;
}

@media (min-width: 600px) {
  .be-grid-col-sm-1 {
    width: 16.6666666667%;
  }
  .be-grid-col-sm-2 {
    width: 33.3333333333%;
  }
  .be-grid-col-sm-3 {
    width: 50%;
  }
  .be-grid-col-sm-4 {
    width: 66.6666666667%;
  }
  .be-grid-col-sm-5 {
    width: 83.3333333333%;
  }
  .be-grid-col-sm-6 {
    width: 100%;
  }
}
@media (min-width: 960px) {
  .be-grid-col-md-1 {
    width: 8.3333333333%;
  }
  .be-grid-col-md-2 {
    width: 16.6666666667%;
  }
  .be-grid-col-md-3 {
    width: 25%;
  }
  .be-grid-col-md-4 {
    width: 33.3333333333%;
  }
  .be-grid-col-md-5 {
    width: 41.6666666667%;
  }
  .be-grid-col-md-6 {
    width: 50%;
  }
  .be-grid-col-md-7 {
    width: 58.3333333333%;
  }
  .be-grid-col-md-8 {
    width: 66.6666666667%;
  }
  .be-grid-col-md-9 {
    width: 75%;
  }
  .be-grid-col-md-10 {
    width: 83.3333333333%;
  }
  .be-grid-col-md-11 {
    width: 91.6666666667%;
  }
  .be-grid-col-md-12 {
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .be-grid-col-lg-1 {
    width: 8.3333333333%;
  }
  .be-grid-col-lg-2 {
    width: 16.6666666667%;
  }
  .be-grid-col-lg-3 {
    width: 25%;
  }
  .be-grid-col-lg-4 {
    width: 33.3333333333%;
  }
  .be-grid-col-lg-5 {
    width: 41.6666666667%;
  }
  .be-grid-col-lg-6 {
    width: 50%;
  }
  .be-grid-col-lg-7 {
    width: 58.3333333333%;
  }
  .be-grid-col-lg-8 {
    width: 66.6666666667%;
  }
  .be-grid-col-lg-9 {
    width: 75%;
  }
  .be-grid-col-lg-10 {
    width: 83.3333333333%;
  }
  .be-grid-col-lg-11 {
    width: 91.6666666667%;
  }
  .be-grid-col-lg-12 {
    width: 100%;
  }
}
@media (min-width: 1440px) {
  .be-grid-col-xl-1 {
    width: 8.3333333333%;
  }
  .be-grid-col-xl-2 {
    width: 16.6666666667%;
  }
  .be-grid-col-xl-3 {
    width: 25%;
  }
  .be-grid-col-xl-4 {
    width: 33.3333333333%;
  }
  .be-grid-col-xl-5 {
    width: 41.6666666667%;
  }
  .be-grid-col-xl-6 {
    width: 50%;
  }
  .be-grid-col-xl-7 {
    width: 58.3333333333%;
  }
  .be-grid-col-xl-8 {
    width: 66.6666666667%;
  }
  .be-grid-col-xl-9 {
    width: 75%;
  }
  .be-grid-col-xl-10 {
    width: 83.3333333333%;
  }
  .be-grid-col-xl-11 {
    width: 91.6666666667%;
  }
  .be-grid-col-xl-12 {
    width: 100%;
  }
}
.be-text-on-dark {
  color: var(--bellhop-color-text-on-dark);
}

.be-text-on-light {
  color: var(--bellhop-color-text-on-light);
}

.be-headline-on-dark {
  color: var(--bellhop-color-headline-on-dark);
}

.be-headline-on-light {
  color: var(--bellhop-color-headline-on-light);
}

.be-truncate-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.be-visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  height: 1px;
  width: 1px;
}

.be-z-index-pin {
  z-index: 100;
}

.be-z-index-dropdown {
  z-index: 200;
}

.be-z-index-dropdown-tab {
  z-index: 205;
}

.be-z-index-popover {
  z-index: 300;
}

.be-z-index-popover-tab {
  z-index: 305;
}

.be-z-index-fixed {
  z-index: 400;
}

.be-z-index-tooltip {
  z-index: 500;
}

.be-z-index-flyout {
  z-index: 600;
}

.be-z-index-modal {
  z-index: 700;
}

.be-z-index-dialog {
  z-index: 800;
}

.be-z-index-interstitial {
  z-index: 900;
}

.be-arrow-navigate-ol,
.be-arrow-navigate-od {
  background-repeat: no-repeat;
  background-size: 32px 32px;
  background-position: center;
}

.be-arrow-navigate-ol {
  background-image: url('../images/arrows/navigate-on-light.svg');
}

.be-arrow-navigate-od {
  background-image: url('../images/arrows/navigate-on-dark.svg');
}

.be-arrow-pagination-ol,
.be-arrow-pagination-od {
  background-repeat: no-repeat;
  background-size: 32px 32px;
  background-position: center;
}

.be-arrow-pagination-ol {
  background-image: url('../images/arrows/pagination-on-light-enabled.svg');
}
[disabled] .be-arrow-pagination-ol {
  background-image: url('../images/arrows/pagination-on-light-disabled.svg');
}

.be-arrow-pagination-od {
  background-image: url('../images/arrows/pagination-on-dark-enabled.svg');
}
[disabled] .be-arrow-pagination-od {
  background-image: url('../images/arrows/pagination-on-light-disabled.svg');
}

.be-separator-basic-ol,
.be-separator-basic-od,
.be-separator-decorative-ol,
.be-separator-decorative-od {
  border: none;
  background-repeat: no-repeat;
  height: 32px;
  background-size: 960px 32px;
  background-position: center center;
}
@media (min-width: 600px) and (max-width: 1279px) {
  .be-separator-basic-ol,
  .be-separator-basic-od,
  .be-separator-decorative-ol,
  .be-separator-decorative-od {
    height: 40px;
    background-size: 1200px 40px;
  }
}
@media (min-width: 1280px) {
  .be-separator-basic-ol,
  .be-separator-basic-od,
  .be-separator-decorative-ol,
  .be-separator-decorative-od {
    height: 48px;
    background-size: 1440px 48px;
  }
}

.be-separator-basic-ol {
  background-image: url('../images/separators/basic-on-light.svg');
}

.be-separator-basic-od {
  background-image: url('../images/separators/basic-on-dark.svg');
}

.be-separator-decorative-ol {
  background-image: url('images/separators/decorative-on-light.svg');
}

.be-separator-decorative-od {
  background-image: url('images/separators/decorative-on-dark.svg');
}

/* custom styles*/
.navigation-header-wrapper {
  background-color: var(--bellhop-header-color-dark);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: var(--navigation-header-height, 4rem);
  --isDesktopLocationVisible: 0;
  z-index: var(--bellhop-z-index-flyout, 600);
  transition: transform 150ms ease-in-out;
  transform: translateY(0px);
}
.navigation-header-hamburger .icon--close {
  display: none;
}
body.is-menu-open .navigation-header-hamburger .icon--hamburger {
  display: none;
}
body.is-menu-open .navigation-header-hamburger .icon--close {
  display: inline;
}
.be-header {
  transition: background-color 150ms ease-in-out;
}
.container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
  padding-left: 16px;
  padding-right: 16px;
}
.start {
  justify-self: start;
  align-self: center;
  color: #ffffff !important;
  fill: #ffffff !important;

}
.be-lg {
  display: none;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fff;
}
.navigation-header-hamburger {
  background: none;
  color: inherit;
  border: none;
  padding: 0px;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  text-align: left;
}
[data-locator='property-name'] {
  display: none;
}
.logo {
  place-self: center;
  max-height: 64px;
}
.end {
  place-self: end;
  align-self: center;
}
.jnOiSd {
  display: none;
}

.be-button,
.be-button:hover {
  text-decoration: none;
}

.be-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  min-width: 120px;
  padding: 0;
  padding-inline: calc(var(--bellhop-button-default-padding-inline-lg) - 4px);
  text-transform: uppercase;
  text-align: center;
  border-style: solid;
  border-width: var(--bellhop-button-default-border-width);
  border-radius: var(--bellhop-button-default-border-radius-lg);
  cursor: pointer;
}
.be-button[data-size='sm'] {
  min-height: 2rem; /* 32px */
  min-width: 5rem; /* 80px */
  padding-inline: calc(var(--bellhop-button-default-padding-inline-sm) - 4px);
  border-radius: var(--bellhop-button-default-border-radius-sm);
}

a.be-button-primary:not([href]):not([tabindex]),
.be-button-primary,
.be-button-primary:visited {
  color: var(--bellhop-button-primary-on-dark-text-color-enabled);
}
.be-button-primary:hover,
.be-button-primary:visited:hover,
.be-button--filled.be-button--filled-dark:hover,
.be-button--filled.be-button--filled-dark:visited:hover{
  background-color: var(
    --bellhop-button-primary-on-dark-background-color-hover,
    #d3d0dc
  );
  border-color: var(--bellhop-button-primary-on-dark-border-color-hover);
  color: var(--bellhop-button-primary-on-dark-text-color-hover) !important;
}
.be-button-primary {
  background-color: var(
    --bellhop-button-primary-on-dark-background-color-enabled,
    #fff
  );
  border-color: var(--bellhop-button-primary-on-dark-border-color-enabled);
  color: var(--bellhop-button-primary-on-dark-text-color-hover);
}

.be-button,
.be-button:hover {
  text-decoration: none;
}

.be-button-secondary {
  background-color: var(
    --bellhop-button-secondary-on-light-background-color-enabled
  );
  border-color: var(--bellhop-button-secondary-on-light-border-color-enabled);
}

.be-button-secondary,
.be-button-secondary:visited {
  color: var(--bellhop-button-secondary-on-light-text-color-enabled);
}
.be-button-secondary:hover {
  background-color: var(
    --bellhop-button-secondary-on-light-background-color-hover
  );
  border-color: var(--bellhop-button-secondary-on-light-border-color-hover);
  color: var(--bellhop-button-secondary-on-light-text-color-hover);
}
.be-button-label {
  display: block;
  margin-inline: 4px;
  white-space: nowrap;
}

.be-button[data-width='full']:not(.no-block) {
  display: block;
}

[type='button'],
[type='reset'],
[type='submit'],
button {
  -webkit-appearance: none;
  appearance: none;
}

.book-now-nav-cta {
  min-height: 34px;
  //padding-inline: 1.6rem;
  box-sizing: content-box;
  -webkit-appearance: none;
  appearance: none;
}

@media (min-width: 600px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
  .be-lg {
    display: block;
  }
  .be-sm {
    display: none;
  }

}
@media (min-width: 960px) {
  .header-left {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  [data-locator='property-name'] {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-block: 5px;
    margin-block-start: -5px;
  }

  .jnOiSd {
    display: flex;
    align-items: center;
    gap: 24px;
    height: var(--navigation-header-height);
  }
}
@media (min-width: 1280px) {
  .container {
    padding-left: 48px;
    padding-right: 48px;
  }
}

/**
 * Home page styles
 */

.section-vertical-spacing {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* Accessibility & focus styles for interactive elements */
.be-button-primary,
.be-button-primary:focus {
  outline: none;
  transition:
    box-shadow 160ms ease,
    transform 120ms ease;
}
.be-button-primary:focus-visible,
.be-button-primary:focus {
  box-shadow:
    0 0 0 3px rgba(33, 21, 81, 0.12),
    0 0 0 6px rgba(33, 21, 81, 0.06);
  border-radius: 6px;
}

/* Look Around caption (screen reader announcements) */
.carousel-caption[aria-live] {
  color: var(--bellhop-color-text-on-light, #211551);
  font-weight: 600;
}

/* Arrow focus visible */
.carousel-arrows .arrow-prev:focus,
.carousel-arrows .arrow-next:focus {
  outline: none;
}

/* Small-screen tweaks for the figma preview image to preserve aspect and avoid overflow */
@media (max-width: 600px) {
  .figma-visual img {
    border-radius: 6px;
    max-width: 100%;
    height: auto;
    display: block;
  }
}

/* Safe override: ensure layered slide backgrounds are clamped on medium and smaller screens
   This is added here as a robust fallback in case earlier media rules are malformed. */
@media (max-width: 1200px) {
  .slide-layered .layer-bg img {
    left: 0 !important;
    width: 100% !important;
  }
}

.show-min-md {
  display: none;
}
.only-max-md {
  display: block;
}

.block-image {
  width: 100%;
  display: block;
}

.font-semibold {
  font-weight: 400;
}

.home-hero {
  height: auto;
  width: 100%;
  overflow: hidden;
  position: relative;
  //padding-top: 37px;
  background: #ffffff;
}
.home-hero video {
  min-width: 100%; 
  min-height: 100%; 
  width: auto;
  height: auto;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%,-20%);
}
.home-hero img.bg {
  width: 100%;
  //height: 100%; /* used with stk image */
  height: auto; /* used with original image */
  //object-fit: cover; /* used with stk image */
  position: absolute; /* used with original image */
  top: -230px; /* used with original image */
  -webkit-animation: bubble 1ss forwards; /* Safari 4.0 - 8.0 */
  animation: bubble 1s forwards;
  /* animation-name: bubble; 
  animation-duration: 1s;
  animation-fill-mode: forwards; */
}
.home-hero img.hotel {
  width: 29.45%; /* used with og image */
  max-width: 600px; /* used with og image */
  //max-width: 750px; /* used with stk image */
  height: auto;
  position: absolute;
  z-index: 0;
  left: 50%;
  transform: translate(-50%,0);
  -webkit-transform: translate(-50%, 0%);
  bottom: -35%; /* used with stk image */
  top: 180px; /* used with og image */
}
.home-hero img.hotel-small {
  display: block;
  min-height: 360px;
  min-width: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero img.hotel-medium {
  display: none;
}
.home-hero img.splash {
  height: 760px;
  position: absolute;
  left: 50%;
  transform: translate(-50%,0);
  -webkit-transform: translate(-50%, 0%);
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .home-hero img.hotel-small {
    display: none;
  }
  .home-hero img.hotel-medium {
    display: block;
    min-height: 360px;
    min-width: auto;
    width: 100%;
  }
}
/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .home-hero img.bg,
  .home-hero img.hotel {
    display: none;
  }
  .home-hero img.splash {
    height: 250px;
  }
}

/* Extra large devices (desktops, larger than 1346px) */
@media (max-width: 1346px) {
  .home-hero img.bg {
    top: 0;
  }
  .home-hero img.hotel {
    //width: 40%;
  }
}
/* For largest displays */
@media (max-width: 1596px) {
  .home-hero img.bg {
    //top: -100px;
  }
  .home-hero img.hotel {
    width: 33%; /* used with original image */
  }
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .home-hero {
    //height: 675px;
    height: 735px;
  }
}

/** fadeIn **/

@keyframes fadeInImage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-in-image {
  animation: fadeInImage 3s;
}

/* Safari */
@-webkit-keyframes bubble  {
  0%   { transform:scale(1.15); opacity:0.0;}
    100% { transform:scale(1); opacity:1.0; }
}
/* Standard syntax */
@keyframes bubble  {
   0%   { transform:scale(1.15); opacity:0.0;}
    100% { transform:scale(1); opacity:1.0;}
}

.home-about {
  background: url(../images/home/about-bg.png) center center/auto 65% no-repeat
    var(--bellhop-color-grayscale-250, #f9f9f7);
  text-align: center;
}

.home-about-content {
  max-width: 48.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.home-about-content__title {
  margin-bottom: 1rem;
  font-size: 1.625rem;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 500;
}

.home-about-content__description {
  font-size: 1.25rem;
  line-height: 1.3;
}

.tabs {
  margin: 2.5rem 0 1.5rem;
  overflow: auto;
  scrollbar-width: none;
}

.home-rooms-and-suites__header {
  margin-bottom: 1.5rem;
}

.home-rooms-and-suites__text-content {
  justify-content: space-between;
}

.home-rooms-and-suites__button {
  border-color: var(--bellhop-color-button);
}
.home-rooms-and-suites__button:hover,
.home-rooms-and-suites__button:focus-visible {
  background-color: var(--bellhop-color-button, #211551);
  border-color: var(--bellhop-color-button, #211551);
  color: #ffffff;
}

.home-rooms-and-suites .small-container + .small-container {
  margin-top: 2.6875rem;
}

/* Room cards layout */
.room-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.room-card {
  background: #fff;
  box-shadow: 0 1px 8px rgba(40, 40, 40, 0.25);
  overflow: hidden;
  display: flex !important;
  flex-direction: column;
  height: 100%;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.room-card__image {
  display: block;
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  height: 20.833vw;
}

.room-card__content {
  padding: 21px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.room-card__description {
  margin: .25rem 0 0;
  line-height: 1.5;
  color: #2a2b2f;
}

.room-card__content ul {
  margin: 0.125rem 0  0 1.25rem;
}

.room-card__actions {
  flex-direction: column;
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
  width: 100%;
  overflow: hidden;
}

.button__container {
  display: flex;
  gap: 12px;
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
  width: auto;
}
.book-now__container .w-half,
.button__container .w-half {
  width: 100%;
  margin-top: 6px;
  margin-bottom: 6px;
}
.button__container .buttons {
  width: 100%;
  margin: 0;
}
.button__container .buttons:first-child {
  //margin-right: 2px;
}
.button__container .buttons:last-child {
  //margin-left: 2px;
}
.book-now__container {
  display: flex;
}

.site-footer__brand {
  display: grid;
  place-items: center;
  row-gap: 18px;
  text-align: center;
}

.site-footer__emblem svg {
  display: block;
}
.site-footer__wordmark {
  display: grid;
  row-gap: 8px;
}
.site-footer__hyatt {
  font-size: 34px;
  letter-spacing: 4px;
  font-weight: 600;
}
.site-footer__regency {
  font-size: 28px;
  letter-spacing: 6px;
  font-weight: 600;
}
.site-footer__link--underline {
  text-decoration: underline;
}
.site-footer__chain,
.site-footer__property-city {
  letter-spacing: 2px;
}
.be-button--outline {
  background: transparent;
  letter-spacing: 1px;
}
.be-button--outline:hover {
  background: var(--bellhop-color-button, #211551);
  border-color: var(--bellhop-color-button, #211551);
  color: #ffffff !important;
  text-decoration: none;
}
.be-button--outline.white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.be-button--outline.white:hover {
  color: rgba(33, 21, 81);
  background: #fff;
  text-decoration: none;
}

.be-button--filled,
.be-button--filled:visited {
  background: var(--bellhop-color-button);
  color: #fff;
  border-color: var(--bellhop-color-button);
}
.be-button--filled:hover {
  color: var(--bellhop-color-button);
  background: rgba(33, 21, 81, 0.06);
  border-color: var(--bellhop-color-brand-iris-600, #4d4474);
}
.be-button--filled.be-button--hover-white-bg:hover,
.be-button--filled.be-button--hover-white-bg:visited:hover {
  background-color: #fff;
}

.be-button--filled.be-button--filled-dark,
.be-button--filled.be-button--filled-dark:visited {
  background: var(--bellhop-color-background-dark-1);
  color: #fff;
  border-color: #fff;
}

/* View More button styling (matches Figma: uppercase, outlined, centered) */
.view-more {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  border-width: 0;
  text-decoration: none;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  min-width: 180px;
}
.view-more:hover {
  background: transparent;
  text-decoration: underline;
}
.home-rooms-and-suites .be-container:last-of-type .be-grid-row {
  justify-content: center;
}
.text-center {
  text-align: center;
}
.w-full {
  width: 100%;
}

/* home special offers */
.fRMyZK {
  background-color: var(--bellhop-color-background-dark-1);
  position: relative;
  z-index: 1;
  color: var(--bellhop-color-text-on-dark);
}

.Menes {
  width: 100%;
  overflow: hidden;
  padding: 2.5rem 0px; /* 40px 0 */
}

.hxfUuM {
  display: flex;
  -webkit-box-pack: start;
  justify-content: start;
  margin-bottom: 1.5rem;
}
.sc-blrdvn {
  margin-top: 1.5rem;
}

.fayjnC {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: visible;
}

.iVlKMU {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  touch-action: pan-y;
}
.fayjnC .sc-f7176519-0 {
  position: relative;
  inset-inline-start: 0px;
  transition: inset-inline-start 1.2s ease-in-out;
}

.ipGcso .carousel-container {
  overflow: unset;
}

.kjBOZE {
  display: flex;
  /* -webkit-box-align: center; */
  /* align-items: center; */
  gap: 1.25rem;
  transform: translateX(0);
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.Menes .carousel__media-container {
  /* -webkit-box-align: stretch; */
  /* align-items: stretch; */
  transition: transform 1s ease-in-out;
}

.Menes .carousel__media-item {
  display: flex;
}

.Menes .carousel__media-item > div {
  border: none;
}

.dfcBIQ {
  flex-shrink: 0;
  position: relative;
  margin: 0px;
  max-width: calc(100vw - 2rem); /* 48px */
}

.bVKSay {
  display: contents;
}

.iYXQzJ {
  width: 100%;
  padding: 0px;
  box-shadow: var(
    --bellhop-card-border-shadow,
    5px 5px 15px 0 rgb(0 0 0 / 10%)
  );
  border: var(--bellhop-card-border-width, 1px) solid
    var(--bellhop-card-border-color, #b2b3b5);
  background-color: var(--bellhop-card-background-color, #fff);
  display: flex;
  flex-direction: column-reverse;
  border-radius: var(--bellhop-card-border-radius, none);
  overflow: hidden;
}

.kWVaQK {
  flex: 1 0 50%;
  display: flex;
  flex-direction: column;
  row-gap: 42px;
  -webkit-box-pack: justify;
  justify-content: space-between;
  text-align: var(--bellhop-card-text-align, initial);
  padding-block: var(--bellhop-card-padding-block-xs, 25px);
  padding-inline: var(--bellhop-card-padding-inline-xs, 25px);
}

.jXxZaY {
  width: 100%;
  position: relative;
  height: 14.375rem; /* 230px */
}

.jXxZaY::before {
  content: '';
  display: none;
  width: 49px;
  height: 49px;
  position: absolute;
  top: 50%;
  left: -26px;
  transform: translateY(-50%);
  background-image: url(../canvas/timeless/assets/images/regency/offers/diamond-shape.svg);
  z-index: 1;
}

.gRuWCS {
  display: flex;
  flex-direction: column;
  gap: 1.125rem; /* 18px */
}

.kbmvpq {
  text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
  --safariExtraSpaceLines: 0;
  --truncatedTextClampedLinesOverride: calc(
    5 + var(--safariExtraSpaceLines, 0)
  );
  max-height: calc(24px * var(--truncatedTextClampedLinesOverride, 4) * 5);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--truncatedTextClampedLinesOverride, 4);
  line-clamp: var(--truncatedTextClampedLinesOverride, 4);
}

.gRuWCS .OfferDescription {
  margin-block-start: 1.125rem; /* 18px */
  max-height: none;
  display: block;
}

.gRuWCS .OfferDescription ul {
  margin-inline-start: 1.5em;
}

.SYhrt {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  align-self: flex-start;
  width: 61.9375rem; /* 991px */
  margin-block-start: 1rem;
}

.Menes .carousel__footer {
  margin-block-start: 1rem;
  align-self: flex-start;
  inline-size: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.625rem; /* 10px */
  -webkit-box-align: center;
  align-items: center;
}

.hmulXT {
  display: none;
  width: fit-content;
  flex-direction: row;
  -webkit-box-align: center;
  align-items: center;
  gap: 0.5rem; /* 8px */
  white-space: nowrap;
}

.SYhrt .sc-eqhCmq {
  display: none;
}
.Menes .carousel__footer .arrow-pagination-root {
  display: flex;
}
.Menes .carousel__footer img {
  filter: brightness(100);
  transition: transform 0.2s;
  will-change: transform;
}

.Menes .carousel__footer button:hover img,
.Menes .carousel__footer button:focus-visible img {
  transform: scale(1.2)
}

/* pagination dots */
.carousel__pagination-dots {
  display: flex;
  gap: 8px;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: 0;
  cursor: pointer;
}
.carousel__dot.is-active {
  background-color: #fff;
}

/* 600px */
@media (min-width: 37.5rem) {
  .hxfUuM {
    margin-block-end: 34px;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .bjKJwa {
    display: block;
  }

  .iYXQzJ {
    inline-size: 23.125rem; /* 370px */
  }

  .jfIMDm {
    inline-size: fit-content;
    align-self: start;
    padding-inline: 1.25rem; /* 20px */
  }
  .Menes .carousel__footer {
    display: flex;
    flex-direction: column;
    row-gap: 0.625rem; /* 10px */
    -webkit-box-align: center;
    align-items: center;
    margin-inline-start: 0;
  }
  .hmulXT {
    display: flex;
  }
}

/* 768px*/
@media (min-width: 48rem) {
  .tabs {
    margin: 2.6875rem 0 1.5rem; /* 43px 0 24px*/
  }

  .iYXQzJ {
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    justify-content: space-between;
    direction: ltr;
    flex-direction: row;
    gap: 2.5rem; /* 40px */
    padding-block: var(--bellhop-card-padding-block-xs, 2.5rem); /* 40px */
    padding-inline: var(--bellhop-card-padding-inline-xs, 2.5rem); /* 40px */
    inline-size: 82.3125rem; /* 1317px */
  }

  .kWVaQK {
    padding: 1rem 0px 0px;
    min-block-size: 14.375rem; /* 230px */
    flex: 0 0 50%;
  }
  .jXxZaY {
    flex: 1 1 0%;
    block-size: 14.375rem; /* 230px */
  }
  .jXxZaY::before {
    display: block;
  }

  .SYhrt {
    flex-direction: row;
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .SYhrt .sc-eqhCmq {
    display: none;
  }

  .dfcBIQ {
    max-width: 80.3125rem; /* 1285px */
  }
  .iYXQzJ {
    width: 85vw;
  }

  .Menes {
    padding-top: 3.125rem; /* 50px */
    padding-bottom: 3.125rem; /* 50px */
  }
}

/* 960px */
@media (min-width: 60rem) {
  .only-max-md {
    display: none;
  }
  .show-min-md {
    display: block;
  }
  .home-about {
    background-size: auto 115%;
  }
  .section-vertical-spacing {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .home-about-content__title {
    margin-bottom: 1.5rem;
    font-size: 2.125rem;
  }

  .tabs {
    margin-bottom: 2rem;
  }

  .home-rooms-and-suites__header {
    margin-bottom: 2rem;
  }

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

  .room-card {
    padding-bottom: 4rem;
  }

  .room-card__actions {
    width: calc(100% - 3rem);
    position: absolute;
    bottom: 1.25rem;
    left: 1.5rem;
  }

  .iYXQzJ {
    inline-size: 46.4375rem;
  }

  .kWVaQK {
    min-block-size: 18.75rem; /* 300px */
  }

  .jXxZaY {
    block-size: 300px;
  }
  .Menes .carousel__footer {
    flex-direction: row;
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-inline-start: -0.75rem; /* 12px */
  }
}

/* 1280px */
@media (min-width: 80rem) {
  .Menes {
    max-width: none;
  }
}

/* Off-canvas menu (left slide-in) */
.offcanvas__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  /* Keep overlay below the fixed header so header stays visible */
  z-index: 580; /* header wrapper uses ~600 */
}

.offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100vw; /* Full-width slide-in */
  /* Match header blue background */
  background: var(
    --bellhop-header-color-dark,
    var(--bellhop-color-background-dark-1, #211551)
  );
  color: var(--bellhop-color-text-on-dark, #fff);
  transform: translateX(-105%);
  transition: transform 260ms ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  /* Keep panel below the main header */
  z-index: 590;
  display: flex;
  flex-direction: column;
  padding-top: var(
    --navigation-header-height,
    4rem
  ); /* content starts below fixed header */
}

.offcanvas .container {
  display: block;
}

.offcanvas__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 16px 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.offcanvas__title {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.offcanvas__close {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bellhop-color-grayscale-100, #fff);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  background: transparent;
}

.offcanvas__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}
.offcanvas__brand img {
  display: block;
}
.offcanvas__spacer {
  width: 2.5rem;
  height: 2.5rem;
}

.offcanvas__nav {
  overflow: auto;
  width: 100%;
}

.offcanvas__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.offcanvas__link {
  display: inline-block;
  padding: 14px 0;
  margin: 2px 0;
  color: var(--bellhop-color-grayscale-100, #fff);
  font-family:
    'Josefin Sans',
    'Noto Sans Display',
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  transition: color 0.2s ease;
}

.offcanvas__link::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--bellhop-color-grayscale-100, #ffffff);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}

.offcanvas__link:hover {
  color: var(--bellhop-color-grayscale-100, #ffffff);
  text-decoration: none;
}

.offcanvas__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.offcanvas__property {
  margin-top: auto;
  background: var(--bellhop-color-brand-ice-blue, #d4e0ed);
  color: var(--bellhop-color-text-on-light, #2a2b2f);
}
.offcanvas__property-inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
.offcanvas__property-name {
  color: var(--bellhop-color-text-on-light, #2a2b2f);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.offcanvas__property-address {
  margin-bottom: 6px;
}
.offcanvas__property-meta {
  display: block;
  gap: 24px;
  align-items: center;
}
.offcanvas__property-meta .property-sep {
  opacity: 0.6;
}
/* Meta items and icons (off-canvas property footer) */
.offcanvas__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bellhop-color-text-on-light, #2a2b2f);
}
.offcanvas__meta-item + .offcanvas__meta-item {
  margin-left: 0.25rem;
}
.offcanvas__meta-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}
.offcanvas__meta-icon.is-ring {
  width: 18px;
  height: 18px;
  /* border-radius: 999px; */
  /* border: 1.25px solid rgba(42, 43, 47, 0.9); */
  box-sizing: content-box;
  padding: 2px;
}
.offcanvas__meta-item a {
  color: inherit;
  text-decoration: none;
}

/* Align address and meta on one row at medium+ widths to match design */
@media (min-width: 48rem) {
  .offcanvas__property-inner {
    display: grid;
    /* Limit address column so meta sits closer, matching design */
    grid-template-columns: minmax(0, 50ch) auto;
    grid-template-areas:
      'name name'
      'address meta';
    row-gap: 10px;
    column-gap: 32px;
  }
  .offcanvas__property-name {
    grid-area: name;
  }
  .offcanvas__property-address {
    grid-area: address;
  }
  .offcanvas__property-meta {
    grid-area: meta;
    justify-self: start;
    display: flex;
  }
}

/* Open state */
body.is-menu-open .offcanvas {
  transform: translateX(0);
}
body.is-menu-open #site-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Hide/show hooks (for a11y) */
.offcanvas[hidden] {
  display: block; /* allow transition */
}
.offcanvas__overlay[hidden] {
  display: block; /* allow transition */
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .offcanvas,
  .offcanvas__overlay {
    transition: none;
  }
}

/* Mobile sticky Book bar */
.mobile-bookbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 575; /* above page, below overlay(580) and header(600) */
  background: var(--bellhop-color-background-dark-1, #211551);
  color: var(--bellhop-color-text-on-dark, #fff);
  padding: 12px 16px;
  transition:
    transform 220ms ease,
    padding 220ms ease,
    height 220ms ease;
  text-align: center;
}
.mobile-bookbar__expanded {
  display: grid;
  row-gap: 10px;
}

.mobile-bookbar__expanded .mobile-bookbar__book {
  width: 100%;
}
.mobile-bookbar__compact {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}
.mobile-bookbar__property {
  color: var(--bellhop-color-grayscale-100, #fff);
}
.mobile-bookbar__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--bellhop-color-text-on-dark, #fff);
  opacity: 0.9;
}
.mobile-bookbar__icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: text-top;
}
.mobile-bookbar__sep {
  opacity: 0.7;
}
.mobile-bookbar__book-compact {
  min-width: 112px;
}
.mobile-bookbar__safe-area {
  height: env(safe-area-inset-bottom);
}
.mobile-bookbar__compact .be-text-label {
  text-align: left;
}

/* State: expanded (default at top) */
.mobile-bookbar.is-expanded .mobile-bookbar__expanded {
  display: grid;
}
.mobile-bookbar.is-expanded .mobile-bookbar__compact {
  display: none;
}

/* State: compact after scroll */
.mobile-bookbar.is-compact .mobile-bookbar__expanded {
  display: none;
}
.mobile-bookbar.is-compact .mobile-bookbar__compact {
  display: grid;
}

/* Body padding to prevent content underlap on mobile */
body.has-mobile-bookbar {
  padding-bottom: 4rem;
}

/* Only show on mobile (below 960px) */
@media (min-width: 60rem) {
  .mobile-bookbar {
    display: none;
  }
  body.has-mobile-bookbar {
    padding-bottom: 0;
  }
}
@media (min-width: 80rem) {
  .iYXQzJ {
    inline-size: 61.9375rem;
    padding-block: var(--bellhop-card-padding-block-lg, 40px);
    padding-inline: var(--bellhop-card-padding-inline-lg, 40px);
  }
}

/* sign up */

.site-newsletter__inner {
  padding: 32px 16px;
  background: #000000;
  display: flex;
  flex-direction: column;
}
.site-newsletter__inner .newsletter-title {
  margin-bottom: .5rem;
}
#subscribe-form {
  margin-top: 1.5rem;
  width: 100%;
  background: #ffffff;
}
#subscribe-form .form-row {
  flex-wrap: nowrap;
  width: 100%;
  margin: 0;
}
#subscribe-form .be-button {
  min-width: 200px;
  height: 100%;
}
#subscribe-form .be-button--filled {
  font-weight: 600;
}
#subscribe-form .be-button--filled:hover {
  background: var(--bellhop-color-button);
  color: #ffffff;
  border: var(--bellhop-color-button);
  text-decoration: underline;
}
#subscribe-success {
  background-color: #d9edf7;
  border: 1px solid #bce8f1;
  color: #31708f;
  padding: .3rem;
}
#subscribe-success {
  display: none;
}

/* forms */

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.85em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.rfps .form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

/* placeholder input text */
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #000;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #000;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #000;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #000;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-row {
  display: flex;
}

/* Footer */
.site-footer {
  background: var(
    --bellhop-header-color-dark,
    var(--bellhop-color-background-dark-1, #211551)
  );
  color: var(--bellhop-color-text-on-dark, #fff);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 32px 16px;
}
.site-footer__brand {
  width: 16rem;
  margin: 0 auto;
}
.site-footer__logo {
  max-width: 220px;
  height: auto;
}
.site-footer__cols {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 1.5rem;
}
.site-footer__col {
  color: var(--bellhop-color-text-on-dark, #fff);
}
.site-footer__link {
  color: var(--bellhop-color-grayscale-20, #c7d3e5);
  text-decoration: none;
}
.site-footer__link:hover {
  text-decoration: underline;
}
.site-footer__property-name {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.site-footer__address {
  margin-bottom: 14px;
  font-style: normal;
  display: inline-block;
}
.site-footer__address:hover {
  text-decoration: underline;
}
.site-footer__legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.site-footer__contact {
  display: grid;
  gap: 6px;
  align-self: start;
}
.site-footer__col.site-footer__contact a,
.site-footer__col.site-footer__contact a:visited {
  color: inherit;
}
.site-footer__social-title {
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.site-footer__social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.site-footer__mark {
  display: inline-flex;
  color: var(--bellhop-color-grayscale-20, #c7d3e5);
}

/* Footer extras (title, links list, divider) */
.site-footer__title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bellhop-color-text-on-dark, #fff);
  font-weight: 600;
  font-size: 1.125rem;
}
.site-footer__title-suffix {
  font-weight: 400;
}
.site-footer__title-city {
  font-weight: 500;
  letter-spacing: 0.03em;
}
.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.site-footer__divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px 0 12px;
}
.site-footer__rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  display: block;
}
.site-footer__diamond {
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-footer__title-mark {
  color: var(--bellhop-color-grayscale-20, #c7d3e5);
}
.site-footer__cols-container {
  display: grid;
  gap: 1.5rem;
  width: 100%;
}
.site-footer__legal-nav {
  background: #020202;
  padding: 18px 0 22px;
  font-size: 12px;
  color: #b6b6b6;
}
.site-footer__legal-link {
  color: inherit;
  text-decoration: none;
  font-family: 'Noto Sans', 'Josefin Sans', sans-serif;
  font-weight: 400;
  padding-right: 4px;
}
.site-footer__legal-link:hover {
  color: inherit;
  text-decoration: underline;
}
.site-footer__legal-link:not(:first-child) {
  margin-left: 2rem;
}
.site-footer__legal-nav__sep {
  color: #6b6b6b;
}

@media (min-width: 23.4375rem) /* 375px */ {
  .site-footer__title-city {
    letter-spacing: 0.075em;
  }
}

/* Footer responsive layout */
@media (min-width: 60rem) {
  .site-footer__inner {
    grid-template-columns: 1fr 6fr;
    align-items: start;
    padding: 3rem;
    gap: 5rem;
    justify-content: flex-start;
  }
  /* Keep desktop footer design unchanged: hide mobile-only wordmark and left-align brand */
  .site-footer__wordmark {
    display: none;
  }
  .site-footer__brand {
    place-items: start;
    text-align: left;
  }
  .site-footer__cols {
    display: grid;
    //grid-template-columns: repeat(3, minmax(0, 320px));
    grid-template-columns: repeat(4, minmax(0, 320px));
  }
}

/* HR Separator (Figma design node 604:22951) */
.hr-separator {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* 24px */
  padding-top: 1.5rem; /* 24px */
  padding-bottom: 1.5rem; /* 24px */
  /* background-color: #ffffff; */
  width: 100%;
  box-sizing: border-box;
}

.hr-separator-line {
  flex: 1 1 auto;
  height: 2px;
  background-color: #cacacb;
  opacity: 0.5;
}

.hr-separator-icon {
  flex-shrink: 0;
  width: 42.116px;
  height: 42.706px;
}

.hr-separator-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Responsive: reduce padding on smaller screens */
@media (max-width: 768px) {
  .hr-separator {
    padding: 1.5rem 2rem; /* 24px 32px */
    gap: 1rem; /* 16px */
  }
}

@media (max-width: 480px) {
  .hr-separator {
    padding: 1rem 0; /* 16px 0 */
    gap: 0.75rem; /* 12px */
  }
}

/* =========================================================================
   Dining Slider – Hyatt Regency Toronto Style (Overflow Layout)
   ========================================================================= */

/* Section wrapper - allows overflow */
.dining-slider {
  background-color: #f2f0ed; /* Soft beige */
  overflow: hidden; /* Clips the overflowing images at viewport edges */
}

/* Container - constrains header, text, and nav */

/* Header row with eyebrow + CTA */
.dining-slider__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

/* Hide CTA in header on mobile - it will appear at bottom */
.dining-slider__header .dining-slider__view-all {
  display: none;
}

.dining-slider__heading {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8125rem); /* 32–45px */
  line-height: 1.2;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: #211551;
  margin: 0;
}

.dining-slider__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: #211551;
  text-decoration: none;
  border: 1px solid #211551;
  padding: 0.625rem 1.25rem;
  border-radius: 2px;
  transition:
    background-color 200ms ease,
    color 200ms ease;
}

.dining-slider__view-all:hover,
.dining-slider__view-all:focus-visible {
  background-color: #211551;
  color: #ffffff;
  text-decoration: none;
}

/* Body: Two-column layout */
.dining-slider__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Mobile: Image column first, text column second */
.dining-slider__image-column {
  order: 1;
}

.dining-slider__text-column {
  order: 2;
}

/* Text column - stacked content that fades */
.dining-slider__text-column {
  position: relative;
  min-height: 8rem; /* Reserve space for content */
  display: flex;
}

.dining-slider__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 400ms ease,
    visibility 400ms ease;
}

.dining-slider__content.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.dining-slider__title {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 1.5rem; /* 24px */
  line-height: 1.25;
  color: #211551;
  margin: 0;
}

.dining-slider__description {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #2a2b2f;
  margin: 0;
}

.dining-slider__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #211551;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 0.5rem;
  transition: color 200ms ease;
}

.dining-slider__link:hover,
.dining-slider__link:focus-visible {
  color: #3a2a7a;
}

/* Image column - carousel that overflows */
.dining-slider__image-column {
  position: relative;
  /* Break out of container on the right */
  margin-right: calc(-1 * clamp(1rem, 5vw, 7.5rem));
}

.dining-slider__viewport {
  overflow: visible; /* Allow slides to be visible outside */
}

/* Carousel track */
.dining-slider__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Individual slide (image) */
.dining-slider__slide {
  flex: 0 0 calc(100% - 1rem); /* Slightly less than 100% so next slide peeks */
  margin: 0;
  overflow: hidden;
}

.dining-slider__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  //object-fit: cover;
  object-fit: contain;
  transition: transform 600ms ease-out;
}

.dining-slider__slide:hover .dining-slider__image,
.dining-slider__slide:focus-within .dining-slider__image {
  transform: scale(1.03);
}

/* Navigation Controls */
.dining-slider__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; /* Center nav buttons on mobile */
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Mobile: CTA takes full width below nav buttons */
.dining-slider__nav .dining-slider__view-all {
  flex-basis: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.dining-slider__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 18px;
  border: none;
  border-radius: 0;
  background: url(../images/arrows/navigate-on-light.svg) no-repeat center / cover
    transparent;
  color: #211551;
  cursor: pointer;
  transition: transform .2s;
}

.dining-slider__btn--prev {
  transform: rotate(180deg);
}

.dining-slider__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.dining-slider__btn:not(:disabled):hover,
.dining-slider__btn:not(:disabled):focus-visible {
  transform: scale(1.2);
}

.dining-slider__btn--prev:not(:disabled):hover,
.dining-slider__btn--perv:not(:disabled):focus-visible {
  transform: rotate(180deg) scale(1.1);
}

.dining-slider__btn svg {
  display: none;
}

.dining-slider__pagination {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dining-slider__current,
.dining-slider__separator,
.dining-slider__total {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2a2b2f;
}

@media (max-width: 48rem) {
  .dining-slider__content {
    position: relative;
    max-width: calc(100vw - 2rem);
    flex-shrink: 0;
  }
}

/* -------------------------------------------------------------------------
   Desktop (≥768px): Side-by-side layout with overflow
   ------------------------------------------------------------------------- */
@media (min-width: 48rem) {
  /* Show CTA in header on desktop */
  .dining-slider__header .dining-slider__view-all {
    display: inline-flex;
  }

  .dining-slider__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
  }

  .dining-slider__body {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }

  /* Reset order for desktop: text left, image right */
  .dining-slider__text-column {
    order: 1;
    flex: 0 0 395px;
    min-height: auto;
    position: relative;
    z-index: 1;
  }

  .dining-slider__image-column {
    order: 2;
    flex: 1;
    margin-right: 0;
    margin-left: 0;
    padding-left: 0;
    overflow: hidden;
  }

  .dining-slider__viewport {
    overflow: visible;
    overflow-x: clip;
  }

  .dining-slider__slide {
    flex: 0 0 80%;
  }

  .dining-slider__image {
    aspect-ratio: 16 / 10;
  }

  .dining-slider__title {
    font-size: 1.625rem;
  }

  /* Hide mobile CTA on desktop */
  .dining-slider__nav .dining-slider__view-all {
    display: none;
  }

  .room-card__actions {
    display: flex;
    flex-direction: row;
    -webkit-box-pack: initial !important;
    -ms-flex-pack: initial !important;
    justify-content: initial !important;
    gap: 12px;
  }
  .button__container .buttons {
    width: auto;
  }

  .book-now__container {
    width: 100%;
    text-align: right;
    display: block;
  }
  .book-now__container .w-half {
    width: auto;
  }

}

/* -------------------------------------------------------------------------
   Large Desktop (≥1024px)
   ------------------------------------------------------------------------- */
@media (min-width: 64rem) {
  .dining-slider__slide {
    gap: 4rem;
    flex: 0 0 85%;
  }

  .dining-slider__content {
    max-width: 26rem;
  }

  .dining-slider__title {
    font-size: 1.75rem; /* 28px */
  }

  #subscribe-email {
    min-width: 350px;
  }

}

/* -------------------------------------------------------------------------
   Accessibility: Reduced motion
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .dining-slider__track {
    transition: none;
  }
}

/* Utility: Small container (max-width 1152px) */
.small-container {
  max-width: 72rem; /* 1152px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 56em /* 1536px */) {

  .room-detail-hero .image-slider__image-wrapper {
    min-height: 100%;
    height: 560px;
  }

  .room-detail-hero .image-slider__image {
    height: 100%;
    object-fit: cover;
    position: absolute;
    transform: translate(0,50%);
    top: -50%;
  }

}
@media (min-width: 96em /* 1536px */) {

  .small-container {
    max-width: 94.5rem; /* 1512px */
  }

  .room-detail-hero .image-slider__image-wrapper {
    height: 640px;
  }

  .room-detail-hero .image-slider__image {
    height: 100%;
    object-fit: cover;
    position: absolute;
    transform: translate(0,50%);
    top: -50%;
  }

}

/* ============================================
   Image + Copy Section (Reusable Component)
   Used for: Direct Access, Meetings & Weddings, etc.
   ============================================ */
.image-copy-section {
  background-color: #ffffff;
}
@media (min-width: 1280px) {
  .image-copy-section .small-container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

/* Section heading (optional, displayed above the row) */
.image-copy-section-heading {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 2.25rem; /* 36px mobile */
  line-height: 1.2;
  letter-spacing: 0.25rem; /* 4px */
  text-transform: uppercase;
  color: #211551;
  text-align: center;
  margin: 0 0 1.5rem 0;
}
@media (min-width: 768px) {
  .image-copy-section-heading {
    font-size: 2.5rem; /* 40px */
    margin-bottom: 4rem;
  }
}
@media (min-width: 1280px) {
  .image-copy-section-heading {
    font-size: 2.8125rem; /* 45px */
    line-height: 3.375rem; /* 54px */
    margin-bottom: 5rem;
  }
}

/* Row layout */
.image-copy-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem; /* ~32px on small screens */
  width: 100%;
}

.image-copy-cta-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .image-copy-row {
    flex-direction: row;
    align-items: center;
    gap: 3.75rem; /* ~60px */
  }
  /* When image should appear first (on left), reverse the row */
  .image-copy-row.image-first {
    flex-direction: row-reverse;
    margin: 0 auto;
    justify-content: space-evenly;
  }
}
@media (min-width: 1280px) {
  .image-copy-row {
    gap: 4.5rem; /* ~72px */
  }
}

/* Copy block */
.image-copy-copy {
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  .image-copy-copy {
    flex: 0 0 40%;
    max-width: 395px;
  }
}
.image-copy-copy-inner {
  max-width: 26rem; /* ~416px */
}

/* Inline heading within copy block */
.image-copy-copy-heading {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600; /* SemiBold */
  //font-size: 1.625rem; /* 26px */
  font-size: 1.125rem; /* 18px */
  line-height: 1.2; /* ~31.2px */
  color: #211551; /* blue */
  margin: 0 0 0.5rem 0; /* 8px gap to paragraph per design */
}

/* Description text */
.image-copy-description {
  font-family: 'Segoe UI', 'Noto Sans', system-ui, sans-serif;
  font-size: 1rem; /* 16px */
  line-height: 1.5; /* 24px */
  color: #2a2b2f; /* gray */
  margin: 0 0 1rem 0;
}
.image-copy-description:last-child {
  margin-bottom: 0;
}

/* Optional bulleted descriptions */
.image-copy-description-list {
  margin: 0;
  padding-left: 1.25rem;
  list-style: disc;
}

/* Optional rich HTML descriptions */
.image-copy-description-html p {
  margin: 0 0 1rem 0;
}
.image-copy-description-html p:last-child {
  margin-bottom: 0;
}
.image-copy-description-html ul,
.image-copy-description-html ol {
  margin: 0;
  padding-left: 1.25rem;
}

/* Image block */
.image-copy-image {
  position: relative;
  flex: 1 0 0;
  max-width: 620px;
}
.image-copy-section img {
  inset: 0;
  width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.image-copy-cta {
  width: 100%;
  margin-top: 1rem;
  min-height: 3em;
}

/* Section-specific overrides */

/* Direct Access: different container padding */
.image-copy-section .small-container {
  padding-top: 3.125rem; /* ~40px */
  padding-bottom: 3.125rem;
}

@media (min-width: 40rem) {
  .image-copy-cta {
    width: auto;
    margin-top: 2rem;
  }
}

@media (min-width: 1280px) {
  .home-direct-access .small-container {
    //padding-top: 7.5rem; /* ~120px */
    //padding-bottom: 7.5rem;
    padding-top: 6.0rem; /* ~120px */
    padding-bottom: 6.0rem;
  }
}

@media (min-width: 1280px) {
  .home-accessibility .small-container {
    padding-top: 7.5rem; /* ~120px */
    padding-bottom: 7.5rem;
  }
}

.secondary-hero {
  background-color: #211551;
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
}

.secondary-hero-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 54px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.time-info {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
}

.time-label {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  line-height: 21px;
}

.time-value {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

.secondary-hero-description {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
  max-width: 800px;
  margin: 0 auto;
}

/* Mobile-specific styles for the secondary hero section */
.mobile-description {
  display: none;
}

@media (max-width: 768px) {
  .secondary-hero {
    padding: 40px 16px;
  }

  .secondary-hero-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 1px;
    margin-bottom: 36px;
  }

  .time-info {
    margin-bottom: 36px;
  }

  .desktop-description {
    display: none;
  }

  .mobile-description {
    display: block;
  }
}

/* Generic Page Hero */
.page-hero__media {
  display: flex;
  justify-content: center;
}

.page-hero__media-container {
  width: 100%;
}

.page-hero__image {
  display: block;
  width: 100%;
  height: auto;
}

.page-hero {
  background-color: #211551;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.page-hero__container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-hero__inner {
  width: 100%;
  text-align: center;
}

.page-hero__title {
  color: #ffffff;
  margin: 0;
}

.page-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.page-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  color: #fff;
  width: 100%;
}

.page-hero__cta {
  width: 100%;
  color: inherit;
  text-decoration: none;
  padding: 1rem 0.5rem;
  border: 1px solid #fff;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

.page-hero__cta:hover,
.page-hero__cta:focus-visible {
  background-color: #ffffff;
  color: #211551;
  text-decoration: none;
}

.page-hero__body {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #ffffff;
  margin: 0;
  text-align: center;

  width: 100%;
}

@media (max-width: 768px) {
  .page-hero {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .page-hero__inner {
    gap: 36px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 768px) {
  .page-hero__body {
    max-width: 45.833vw;
  }

  .page-hero__ctas {
    gap: 1rem;
    flex-wrap: nowrap;
    max-width: 54vw;
  }

  .page-hero__cta {
    width: 50%;
  }
}

/* ============================================
   Dining Restaurants Section
   ============================================ */

.dining-restaurants__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dining-restaurants__card {
  box-shadow: 0 1px 8px rgba(40, 40, 40, 0.25);
}

.dining-restaurants__card-image {
  width: 100%;
  height: auto;
  //height: 40.41667vw;
  //object-fit: cover;
}

.dining-restaurants__card-body {
  padding: 21px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dining-restaurants__card-title {
  color: #211551;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  margin: 0;
}

.dining-restaurants__card-description {
  color: #2a2b2f;
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.dining-restaurants__card-actions {
  display: flex;
  gap: 24px;
  margin-top: 0;
}

.dining-restaurants__cta {
  width: 226px;
  padding: 16px;
  border: 1px solid #211551;
  background: transparent;
  color: #211551;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.dining-restaurants__cta:hover {
  background: #211551;
  color: #ffffff;
  border-color: #211551;
  text-decoration: none;
}

/* Dining Options Grid Section */
.dining-options {
  padding-top: 63px;
  padding-bottom: 5rem;
}

.dining-options__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
}

.dining-options__card {
  display: flex;
  flex-direction: column;
}

.dining-options__card-image {
  width: 100%;
  height: auto;
  //height: 300px;
  //object-fit: cover;
}

.dining-options__card-body {
  padding: 21px 24px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-height: 237px;
}

.dining-options__card-title {
  color: #211551;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  margin: 0;
}

.dining-options__card-description {
  color: #2a2b2f;
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.dining-options__card-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.dining-options__cta {
  flex: 1;
  padding: 16px 59px;
  border: 1px solid #211551;
  background: transparent;
  color: #211551;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.dining-options__cta:hover {
  background: #211551;
  color: #ffffff;
  border-color: #211551;
  text-decoration: none;
}

@media (max-width: 768px) {
  .dining-options {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }

  .dining-options__container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .dining-options__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dining-options__card-body {
    min-height: auto;
  }

  .dining-options__cta {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .dining-restaurants {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .dining-restaurants__container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .dining-restaurants__card-image {
    height: auto;
    aspect-ratio: 343 / 229;
  }

  .dining-restaurants__card-actions {
    flex-direction: column;
    gap: 12px;
  }

  .dining-restaurants__cta {
    width: 100%;
  }
}

/* Rooms and Suites - Listing */
.filter-separator-wrapper {
  margin-bottom: 4rem;
}

/* Room Filters Section */
.room-filters-wrapper {
  display: flex;
  flex-direction: column;
  gap: 23px;
  width: 100%;
  flex-wrap: wrap;
}

.room-filters {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  width: 100%;
  flex-wrap: nowrap;
}

.filter-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 1 auto;
  min-width: 0;
  width: auto;
}

.filter-label {
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #2a2b2f;
  margin: 0;
  text-align: left;
}

.filter-buttons {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  flex-grow: 1;
  flex-wrap: wrap;
}

.filter-button-wrapper {
  flex: 0 0 auto;
  min-width: 0;
}

.no-results-message {
  margin-bottom: 3rem;
}

@media (max-width: 1200px) {
  .room-filters {
    flex-wrap: wrap;
  }

  .filter-section {
    flex: 1 1 100%;
    min-width: 0;
  }
}

.filter-button {
  border: 1px solid #211551;
  background: transparent;
  display: flex;
  gap: 6px;
  align-items: flex-start;
  padding: 5px 15px 0;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 0 0 auto;
  height: auto;
}

.filter-button:hover {
  background: #f0f0f0;
}

.filter-button.active {
  background: transparent;
}

.filter-icon {
  width: 12px;
  height: 12px;
  font-size: 10px;
  color: #211551;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.filter-icon::before {
  content: '+';
  font-size: 1.5em;
  line-height: 1;
}

.filter-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 20px;
  color: #211551;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-grow: 1;
}

.filter-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.filter-checkbox {
  display: none;
}

.filter-checkbox:checked + .filter-button > .filter-icon::before {
  content: '✓';
}

.filter-button:hover,
.filter-checkbox:checked + .filter-button {
  background: #f0f0f0;
}

.accessible-room {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.accessible-checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid #6d6f72;
  border-radius: 1px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: #ffffff;
  position: relative;
}

.accessible-checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #211551;
  font-size: 12px;
}

.accessible-label {
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #2a2b2f;
}

.checkbox-icon {
  width: 22px;
  height: 22px;
}

.checkbox-text {
  user-select: none;
}

.accessibility-icon::before {
  content: url(../images/rooms/accessibility.svg);
  display: inline-block;
  vertical-align: middle;
  height: 22px;
}

.reset-filters {
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 16.1px;
  color: #211551;
  text-align: right;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  white-space: nowrap;
  padding: 0;
  width: auto;
}

.reset-filters:hover {
  opacity: 0.8;
}

/* Mobile responsive styles for filters */
@media (max-width: 768px) {
  .listing-body-container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .room-filters {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-section {
    width: 100% !important;
  }

  .filter-buttons {
    flex-wrap: wrap;
    width: 100%;
  }

  .filter-button {
    flex-grow: 0;
    flex-shrink: 0;
  }

  .filter-button-wrapper {
    flex-shrink: 0;
  }

  .filter-controls {
    gap: 16px;
  }

  .reset-filters {
    align-self: flex-end;
  }
}

/**
 * Home Amenities Section
 */
.home-amenities {
  background-color: var(--bellhop-color-background-light-1, #ffffff);
}

.amenities-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
}

.amenities-title {
  text-align: center;
  color: var(--bellhop-color-headline-on-light, #211551);
}

.amenities-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2rem;
  width: 100%;
  max-width: 24rem;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  text-align: center;
}

.amenity-icon {
  font-size: 2rem;
  color: var(--bellhop-color-headline-on-light, #211551);
  line-height: 1;
}

.amenity-label {
  color: var(--bellhop-color-text-on-light, #2a2b2f);
  white-space: nowrap;
}

/* Desktop styles for amenities */
@media (min-width: 600px) {
  .home-amenities {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .amenities-container {
    gap: 4.5rem;
  }

  .amenities-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 100%;
    justify-items: center;
  }

  .amenity-item {
    flex-direction: row;
    gap: 1.5rem;
    text-align: left;
    min-width: 13rem;
  }

  .amenity-label {
    white-space: normal;
  }
}

/**
 * Home Things To Do Section
 */
.home-things-to-do {
  background-color: var(--bellhop-color-grayscale-250, #f9f9f7);
}

.home-things-to-do__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.home-things-to-do__intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.home-things-to-do__title {
  color: var(--bellhop-color-headline-on-light, #211551);
  margin: 0;
}

.home-things-to-do__description {
  color: var(--bellhop-color-text-on-light, #2a2b2f);
  margin: 0;
  max-width: 432px;
}

.home-things-to-do__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 120px;
  padding: 9px 17px;
  border: 1px solid var(--bellhop-color-button, #211551);
  background: transparent;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.home-things-to-do__cta:hover {
  background-color: var(--bellhop-color-button, #211551);
  text-decoration: none;
}

.home-things-to-do__cta:hover .be-button-label {
  color: #fff;
}

.home-things-to-do__cta .be-button-label {
  color: var(--bellhop-color-button, #211551);
}

.home-things-to-do__activities {
  display: none;
}

.home-things-to-do__activity {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.home-things-to-do__activity-title {
  font-family:
    'Josefin Sans',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 1.625rem; /* 26px */
  font-weight: 600;
  line-height: 1.2;
  color: var(--bellhop-color-headline-on-light, #211551);
  margin: 0;
}

.home-things-to-do__activity-description {
  color: var(--bellhop-color-text-on-light, #2a2b2f);
  margin: 0;
}

.home-things-to-do__activities hr {
  margin: 0;
}

@media (min-width: 960px) {
  .home-things-to-do__container {
    flex-direction: row;
    gap: 4.5rem;
    align-items: flex-start;
  }

  .home-things-to-do__intro {
    flex: 0 0 auto;
    max-width: 395px;
    gap: 2rem;
  }

  .home-things-to-do__activities {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
  }

  .amenities-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/**
 * Feature detail layout (Things To Do)
 */
.feature-detail {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.feature-detail__hero {
  background-color: var(
    --bellhop-color-background-dark-1,
    var(--bellhop-color-headline-on-light, #211551)
  );
  color: #fff;
  padding: 40px 16px;
}

.feature-detail__hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-detail__eyebrow {
  font-family:
    'Josefin Sans',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

.feature-detail__hero-description {
  font-family:
    'Noto Sans',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.feature-detail__cards-grid {
  width: 100%;
}

.feature-detail__card-wrapper {
  width: 100%;
}

.feature-detail__card-body {
  gap: 24px;
}

.feature-detail__card-title {
  font-family:
    'Josefin Sans',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--bellhop-color-headline-on-light, #211551);
  margin: 0;
}

.feature-detail__card-description {
  color: var(--bellhop-color-text-on-light, #2a2b2f);
  margin: 0;
}

@media (min-width: 1200px) {
  .feature-detail__eyebrow {
    font-size: 2.8125rem;
    line-height: 3.375rem;
    font-weight: 400;
    letter-spacing: 4px;
  }
}

/**
 * Home Getting Here Section
 */


.home-getting-here__content {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 auto;
}

/* Info Panel */
.home-getting-here__info {
  background-color: var(--bellhop-color-background-dark-1, #211551);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  order: 2; /* Info panel below map on mobile */
}

.home-getting-here__title {
  font-family:
    'Josefin Sans',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: var(--bellhop-color-headline-on-dark, #ffffff);
  margin: 0;
}

.home-getting-here__address {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-getting-here__link {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bellhop-color-text-on-dark, #ffffff);
  transition: color 0.2s ease;
}

.home-getting-here__link:hover {
  color: var(--bellhop-color-link-on-dark-hover, #ffffff);
}

.home-getting-here__phone {
  margin-top: 0;
}

.home-getting-here__phone-link {
  font-family:
    'Noto Sans Display',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--bellhop-color-link-on-dark-enabled, #d3d0dc);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.home-getting-here__phone-link:hover {
  color: var(--bellhop-color-link-on-dark-hover, #ffffff);
}

/* Map Container */
.home-getting-here__map {
  width: 100%;
  height: 256px;
  overflow: hidden;
  order: 1; /* Map on top on mobile */
}

.home-getting-here__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Title variants for responsive display */
.home-getting-here__title-desktop {
  display: none;
}

.home-getting-here__title-mobile {
  display: block;
}

/* Desktop styles for Getting Here */
@media (min-width: 960px) {
  .home-getting-here {
    padding: 5rem 9.25rem;
  }

  .home-getting-here__content {
    flex-direction: row;
    height: 420px;
  }

  .home-getting-here__info {
    flex: 0 0 auto;
    width: 440px;
    padding: 3rem;
    padding-bottom: 3.5rem;
    height: 100%;
    box-sizing: border-box;
    z-index: 2;
    order: 1; /* Info panel on left on desktop */
  }

  .home-getting-here__title {
    font-size: 2.8125rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.25rem;
    max-width: 345px;
  }

  .home-getting-here__title-desktop {
    display: block;
  }

  .home-getting-here__title-mobile {
    display: none;
  }

  .home-getting-here__link {
    font-size: 1rem;
  }

  .home-getting-here__map {
    flex: 1;
    height: 100%;
    z-index: 1;
    order: 2; /* Map on right on desktop */
  }
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */

.home-gallery {
  //background-color: #ffffff;
  background-color: var(--bellhop-color-grayscale-250, #f9f9f7);
  padding: 2.5rem 0;
  overflow: hidden;
}

/* Header */
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.gallery-heading {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #211551;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  margin: 0;
}

.gallery-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 44px;
  padding: 0.625rem 1.25rem;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: #211551;
  text-decoration: none;
  border: 1px solid #211551;
  background-color: transparent;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.gallery-view-all:hover,
.gallery-view-all:focus-visible {
  background-color: #211551;
  color: #ffffff;
  text-decoration: none;
}

/* Mobile View All Button (hidden on desktop) */
.gallery-view-all--mobile {
  display: none;
}

/* Carousel Wrapper */
.gallery-carousel-wrapper {
  position: relative;
  width: 100%;
}

.gallery-carousel {
  display: flex;
  gap: 22px; /* 18px gap between sections */
  transition: transform 0.5s ease-out;
  will-change: transform;
}

/* Square Sections */
.gallery-section {
  flex-shrink: 0;
  width: 386px;
  height: 386px;
  aspect-ratio: 1;
}

/* 2x2 Grid Section */
.gallery-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px; /* 18px gap inside grid */
  width: 100%;
  height: 100%;
}

/* Single Image Section */
.gallery-section--single {
  display: flex;
}

.gallery-section--single .gallery-item {
  width: 100%;
  height: 100%;
}

/* Gallery Item */
.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Navigation */
.gallery-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.gallery-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery-nav-btn:not(:disabled):hover img,
.gallery-nav-btn:not(:disabled):focus-visible img {
  transform: scale(1.2);
}

.gallery-nav-btn:focus-visible {
  outline: 2px solid #211551;
  outline-offset: 2px;
}

.gallery-nav-btn img {
  width: 2rem;
  height: 2rem;

  transition: transform .2s;
}

.gallery-nav-btn--prev img {
  transform: rotate(180deg);
}

.gallery-nav-btn--prev:not(:disabled):hover img,
.gallery-nav-btn--prev:not(:disabled):focus-visible img {
  transform: scale(1.2) rotate(180deg);
}

.gallery-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Mobile Styles */
@media (max-width: 599px) {
  .home-rooms-and-suites .room-cards > div:not(:first-child) {
    display: none;
  }
  
  .home-gallery {
    padding: 2rem 0;
  }

  .gallery-header {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0;
  }

  /* Hide header View All button on mobile */
  .gallery-header .gallery-view-all {
    display: none;
  }

  /* Show mobile View All button below arrows */
  .gallery-view-all--mobile {
    display: flex;
    width: 100%;
    margin-top: 3rem;
  }

  .gallery-section {
    width: 280px;
    height: 280px;
  }

  .gallery-grid-2x2 {
    gap: 10px;
  }

  .gallery-carousel {
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-left: 1rem;
  }

  .gallery-carousel::-webkit-scrollbar {
    display: none;
  }

  .gallery-section {
    scroll-snap-align: start;
  }
}

/* ==========================================================================
   Gallery Page Sticky Tabs
   ========================================================================== */

.gallery-page {
  background-color: var(--bellhop-color-background-page);
}

.gallery-sticky-tabs {
  position: sticky;
  top: var(--navigation-header-height, 4rem);
  z-index: var(--bellhop-z-index-fixed);
  background-color: var(--bellhop-header-color-dark);
  padding: 10px 16px 40px;
  overflow: hidden;
}


.gallery-sticky-tabs__diamond {
  position: absolute;
  left: 50%;
  bottom: -24px;
  width: 49px;
  height: 49px;
  transform: translateX(-50%);
  z-index: 1;
}

.gallery-sticky-tabs__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
}

.gallery-sticky-tabs__tab, a.gallery-sticky-tabs__tab:visited{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--bellhop-color-text-on-dark);
  font-size: 14px;
  line-height: 16px;
  padding: 12px 0;
}


.gallery-sticky-tabs__tab:hover,
.gallery-sticky-tabs__tab:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.gallery-sticky-tabs__tab.is-active {
  background-color: var(--bellhop-color-background-light-1);
  color: var(--bellhop-color-text-on-light);
  padding: 12px 26px;
  text-decoration: none;
}

.gallery-sticky-tabs__tab.is-active:visited {
  color: var(--bellhop-color-text-on-light);
}

.gallery-sticky-tabs__mobile {
  display: block;
}

.gallery-sticky-tabs__mobile-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gallery-sticky-tabs__select-wrap {
  position: relative;
  border: 1px solid var(--bellhop-color-text-on-dark);
  padding: 0;
}

.gallery-sticky-tabs__select-wrap::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--bellhop-color-text-on-dark);
  border-bottom: 2px solid var(--bellhop-color-text-on-dark);
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.gallery-sticky-tabs__select {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--bellhop-color-text-on-dark);
  padding: 12px 52px 12px 26px;
  font-size: 14px;
  line-height: 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.gallery-sticky-tabs__select:focus-visible {
  outline: 2px solid var(--bellhop-color-background-light-1);
  outline-offset: 2px;
}

.gallery-sticky-tabs__select option {
    color: var(--bellhop-color-text-on-light, #000);
}

@media (min-width: 960px) {
  .gallery-sticky-tabs {
    padding-top: 16px;
    padding-bottom: 40px;
  }

  .gallery-sticky-tabs__mobile {
    display: none;
  }

  .gallery-sticky-tabs__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .gallery-sticky-tabs__tab {
    font-size: 16px;
    line-height: 22px;
  }
}

.gallery-page-sections {
  padding: 80px 160px;
  display: flex;
  flex-direction: column;
  gap: 63px;
}

.gallery-page-section {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 599px) {
  .gallery-page-sections {
    padding: 40px 16px;
  }
}

.gallery-page-section__title {
  margin: 0 0 24px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: normal;
  text-transform: none;
  color: var(--bellhop-color-text-on-light);
}

.gallery-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 599px) {
  .gallery-card {
    gap: 8px;
  }
}

.gallery-card__row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 24px;
  height: 33.333vw;
}

@media (max-width: 599px) {
  .gallery-card__row {
    gap: .5rem;
    height: 12rem;
  }
}

.gallery-card__image {
  overflow: hidden;
  background-color: var(--bellhop-color-grayscale-300);
}

.gallery-card__image-btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-card__image-btn:focus-visible {
  outline: 2px solid var(--bellhop-color-background-light-1);
  outline-offset: 2px;
}

.gallery-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   Gallery Lightbox (single carousel modal)
   ========================================================================== */

body.is-gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  --gallery-lightbox-peek: 1.5rem;
  --gallery-lightbox-gutter-right: 1.5rem;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--bellhop-z-index-modal, 700);
}

.gallery-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.gallery-lightbox__dialog {
  position: fixed;
  inset: 0.125rem;
  margin: 0;
  width: auto;
  max-width: none;
  max-height: none;
  overflow: hidden;
  /* overflow-x: hidden; */
  background: var(--bellhop-color-grayscale-100, #fff);
  display: flex;
  flex-direction: column;
}

.gallery-lightbox__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem 0 2rem;
  justify-self: flex-start;
}

.gallery-lightbox__title {
  margin: 0;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 1.2;
  color: var(--bellhop-color-text-on-light);
}

.gallery-lightbox__close {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--bellhop-color-text-on-light, #2a2b2f);
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-lightbox__close:focus-visible {
  outline: 2px solid var(--bellhop-color-background-dark-1, #211551);
  outline-offset: 2px;
}

.gallery-lightbox__body {
  padding: 1rem 1rem 1.5rem;
  flex-grow: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  align-items: flex-start;
}

@media (orientation: portrait) {
  .gallery-lightbox__body {
    align-items: center;
  }
}

@media (min-width: 48rem) {
  .gallery-lightbox__dialog {
    inset: 3rem;
  }

  .gallery-lightbox {
    --gallery-lightbox-peek: 14rem;
    --gallery-lightbox-gutter-right: 3rem;
  }

  .gallery-lightbox__body {
    /* Extra right gutter so the peek never touches the edge */
    padding: 1rem 2rem 2rem;
    width: 100%;
  }
}

.gallery-lightbox .small-container {
  max-width: none;
  padding: 0;
}

.gallery-lightbox .image-slider__slide {
  /* Make room so the next slide can peek in from the right */
  width: 100%;
}

.gallery-lightbox .image-slider__pagination {
  justify-content: flex-end;
}

.gallery-lightbox .image-slider__arrow {
  /* border: 1px solid var(--bellhop-color-text-on-light); */
}

/* Tablet & Desktop */
@media (min-width: 600px) {
  .home-gallery {
    padding: 2.5rem 0;
  }

  .gallery-heading {
    font-size: 2.8125rem;
  }

  .gallery-section {
    width: 386px;
    height: 386px;
  }
}

@media (min-width: 1280px) {
  .gallery-lightbox__body {
    /* Extra right gutter so the peek never touches the edge */
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

/* ==========================================================================
   Exclusive Offers Page
   ========================================================================== */
.page-exclusive-offers .page-hero__title {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 2.8125rem; /* 45px */
  line-height: 3.375rem; /* 54px */
  letter-spacing: 0.25rem; /* 4px */
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .page-exclusive-offers .page-hero__title {
    font-size: 1.5rem; /* 24px */
    line-height: 2rem; /* 32px */
    letter-spacing: 0.0625rem; /* 1px */
  }
}

.exclusive-offers.section-vertical-spacing {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}

.exclusive-offers__grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1.25rem; /* 20px */
  row-gap: 3.9375rem; /* 63px */
}

@media (min-width: 768px) {
  .exclusive-offers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.exclusive-offers__card {
  background-color: #ffffff;
  border: 1px solid #e4e5eb;
  box-shadow: 0 1px 8px rgba(40, 40, 40, 0.25);
}

.exclusive-offers__card-body {
  gap: 1.5rem; /* 24px */
}

.exclusive-offers__card-title {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 1.5rem; /* 24px */
  line-height: 1.25;
  color: #211551;
  margin: 0;
}

.exclusive-offers__card-description {
  font-family: 'Noto Sans Display', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #2a2b2f;
  margin: 0;
}

.exclusive-offers__card-actions {
  margin-top: auto;
  display: block;
}

.exclusive-offers__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid #211551;
  color: #211551;
  text-decoration: none;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0.0625rem; /* 1px */
  text-transform: uppercase;
  padding: 1rem 0;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.exclusive-offers__cta:hover,
.exclusive-offers__cta:focus {
  background-color: #211551;
  color: #ffffff;
  box-shadow: 0 0 0 3px rgba(33, 21, 81, 0.15);
  text-decoration: none;
}

@media (max-width: 767px) {
  .exclusive-offers.section-vertical-spacing {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .exclusive-offers__grid {
    row-gap: 1.25rem; /* 20px */
  }
}

@media (min-width: 768px) {
  .exclusive-offers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==========================================================================
   FAQ Page
   ========================================================================== */
.faqs {
  background-color: #ffffff;
}

.content-container {
  max-width: 46.25rem;
}

.faqs__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* 24px */
}

.faq-section {
  border-bottom: 1px solid #dcdde1;
  padding-bottom: 2.5rem; /* 40px */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-section__title {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 1.625rem; /* 26px */
  line-height: 1.2;
  color: #211551;
  margin: 0;
}

.faq-section__items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item__question {
  font-family: 'Noto Sans Display', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  color: #2a2b2f;
  margin: 0 0 0.25rem 0;
}

.faq-item__answer {
  font-family: 'Noto Sans Display', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #2a2b2f;
  margin: 0;
}

@media (max-width: 599px) {
  .faqs__content {
    gap: 1.5rem;
  }

  .faq-section {
    padding-bottom: 2.5rem;
  }
}

/* ==========================================================================
   Offer Detail Page - Hero Section
   ========================================================================== */

.offer-detail-hero {
  background-color: #211551;
  width: 100%;
}

.offer-detail-hero__container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 2.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-detail-hero__title {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 1.5rem; /* 24px */
  line-height: 2rem; /* 32px */
  letter-spacing: 0.0625rem; /* 1px */
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

@media (min-width: 768px) {
  .offer-detail-hero__container {
    padding-block: 5rem; /* 80px */
    padding-inline: clamp(2rem, 12vw, 24.375rem); /* up to ~390px */
  }

  .offer-detail-hero__title {
    font-weight: 400;
    font-size: 2.8125rem; /* 45px */
    line-height: 3.375rem; /* 54px */
    letter-spacing: 0.25rem; /* 4px */
  }
}

/* ==========================================================================
   Offer Detail Page - Offer Content Section
   ========================================================================== */

.offer-detail-content {
  background-color: #fff;
}

.offer-detail-content__container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  box-sizing: border-box;
}

.offer-detail-content__media {
  position: relative;
  margin: 10px 0 0;
  background-color: #fff;
}

.offer-detail-content__media::after {
  content: '';
  position: absolute;
  width: 3.0625rem; /* 49px */
  height: 22px;
  background-color: #fff;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  /* box-shadow: 0 15px 25px rgba(33, 21, 81, 0.12); */
  background: url(../images/separators/top-half-diamond-white.svg);
}

.offer-detail-content__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.offer-detail-content__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #2a2b2f;
}

.offer-detail-content__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: #211551;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.offer-detail-content__back-link:hover {
  color: #3b2f7a;
}

.offer-detail-content__back-link-svg {
  width: 1.5rem;
  height: 1.375rem;
  fill: currentColor;
  transform: scaleX(-1);
}

.offer-detail-content__title {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 2.125rem; /* 34px */
  line-height: 2.55rem; /* 40.8px */
  letter-spacing: 0;
  color: #211551;
  margin: 0;
}

.offer-detail-content__copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.offer-detail-content__copy p {
  margin: 0;
}

.offer-detail-content__list {
  margin: 0;
  padding-left: 1.5rem;
  list-style: disc;
}

.offer-detail-content__list li {
  margin-bottom: 0.75rem;
}

.offer-detail-content__details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.offer-detail-content__detail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: #2a2b2f;
}

.offer-detail-content__detail-label {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
}

.offer-detail-content__detail-value {
  font-family: 'Noto Sans Display', sans-serif;
}

.offer-detail-content__terms {
  border-bottom: 1px solid #d4e0ed;
  padding: 0.5rem 0 0;
  margin-top: 1.5rem;
}

.offer-detail-content__terms-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  margin: 0;
  padding: 0 0 0.5rem;
}

.offer-detail-content__terms-summary::-webkit-details-marker {
  display: none;
}

.offer-detail-content__terms-label {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 1.625rem; /* 26px */
  line-height: 1.2;
  color: #211551;
}

.offer-detail-content__terms-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-detail-content__terms-svg {
  width: 2rem;
  height: 2rem;
  fill: #2a2b2f;
  transition: transform 0.2s ease;
}

.offer-detail-content__terms[open] .offer-detail-content__terms-svg {
  transform: rotate(180deg);
}

.offer-detail-content__terms-list {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #2a2b2f;
  list-style: disc;
}

.offer-detail-content__terms-list li + li {
  margin-top: 0.45rem;
}

.offer-detail-content__cta {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9375rem 1.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  background-color: #211551;
  color: #fff !important;
  border: 1px solid #211551;
  text-decoration: none;
  width: fit-content;
  margin-top: 1rem;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.offer-detail-content__cta:link,
.offer-detail-content__cta:visited,
.offer-detail-content__cta:hover,
.offer-detail-content__cta:focus-visible,
.offer-detail-content__cta:active {
  color: #fff !important;
}

.offer-detail-content__cta:hover {
  background-color: #33286f;
  border-color: #33286f;
  text-decoration: none;
}

.offer-detail-content__cta:focus-visible {
  outline: 2px solid #8c7ae6;
  outline-offset: 3px;
}

@media (min-width: 1024px) {
  .feature-detail-top-container {
    padding-left: 34.375rem;
  }

  .offer-detail-content__body {
    display: grid;
    grid-template-columns: 29.6875rem 1fr;
    column-gap: 4.6875rem; /* 75px */
    align-items: flex-start;
    row-gap: 2rem;
  }

  .offer-detail-content__media {
    grid-column: 1;
    grid-row: 1 / -1;
    padding: 0;
    margin-top: 3.75rem; /* 60px */
  }

  .offer-detail-content__media::after {
    display: none;
  }

  .offer-detail-content__back-link,
  .offer-detail-content__heading,
  .offer-detail-content__copy,
  .offer-detail-content__details,
  .offer-detail-content__terms,
  .offer-detail-content__cta {
    grid-column: 2;
  }
}

/* ==========================================================================
   Room Detail Page - Hero Section
   ========================================================================== */

.room-detail-hero {
  background-color: #fff;
  padding-block: 2.5rem 1rem; /* 40px 16px */
  display: flex;
  flex-direction: column;
  gap: 0.9375rem; /* 15px */
  width: 100%;
}

/* Back Button */
.room-detail-back {
  display: flex;
  align-items: center;
}

.room-detail-back .back-link {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* 8px */
  text-decoration: none;
  color: #211551;
}
.room-detail-back .back-link:hover,
.room-detail-back .back-link:focus-visible {
  color: #3b2f7a;
  text-decoration: underline;
}

.room-detail-back .back-arrow {
  transform: rotate(180deg);
  width: 24px;
  height: 22px;
}

.room-detail-back .be-text-button-2 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem; /* 14px */
  line-height: 1rem; /* 16px */
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #211551;
}

/* ==========================================================================
   Reusable Image Slider Component
   ========================================================================== */

/* Outer container - allows overflow */
.image-slider__outer {
  overflow: hidden;
}

/* Image Slider */
.image-slider {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.image-slider__container {
  width: 100%;
  overflow: visible; /* Allow slides to overflow */
}

.image-slider__track {
  display: flex;
  align-items: center;
  gap: 1rem; /* 20px */
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.5s ease-in-out;
}

.image-slider__slide {
  flex-shrink: 0;
  position: relative;
  width: 100%;
}

.image-slider__image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image-slider__image {
  width: 100%;
  height: auto;
  display: block;
}

.image-slider__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0.75rem;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #211551;
}

/* Slider Pagination */
.image-slider__pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 2.75rem; /* 44px */
  gap: 0;
}

.image-slider__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem; /* 44px */
  height: 2.75rem; /* 44px */
  padding: 0.1875rem; /* 3px */
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.image-slider__arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.image-slider__arrow img {
  width: 32px;
  height: 32px;
  transition: transform .2s;
}

.image-slider__arrow:not(:disabled):hover img,
.image-slider__arrow:not(:disabled):focus-visible img {
  transform: scale(1.2);
}

.image-slider__arrow--prev img {
  transform: rotate(180deg);
}

.image-slider__arrow--prev:not(:disabled):hover img,
.image-slider__arrow--prev:not(:disabled):focus-visible img{
  transform: rotate(180deg) scale(1.2);
}

.image-slider__status {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem; /* 16px */
  line-height: 1.3; /* 20.8px */
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2a2b2f;
  padding: 0 0.5rem; /* 8px */
  white-space: nowrap;
}

/* ==========================================================================
   Room Detail Page - Content Section
   ========================================================================== */

.room-detail-content {
  background-color: #fff;
  padding: 0 0 2.5rem; /* 0 16px 40px */
}

/* Room Content */
.room-detail-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* 24px */
  padding-top: 1rem; /* 16px*/
}

.room-detail__title {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 1.625rem; /* 26px */
  line-height: 1.2; /* 31.2px */
  color: #211551;
  margin: 0;
}

.room-detail__content {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* 32px */
}

.room-detail__description-column,
.room-detail__amenities-column {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* 32px */
}

.room-detail__section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* 24px */
}

.room-detail__section-title {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem; /* 16px */
  line-height: 1.5; /* 24px */
  color: #2a2b2f;
  margin: 0;
}

.room-detail__description {
  font-family: 'Noto Sans Display', sans-serif;
  font-weight: 400;
  font-size: 1rem; /* 16px */
  line-height: 1.5; /* 24px */
  color: #2a2b2f;
  margin: 0;
}

.room-detail__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem; /* 10px */
}

.room-detail__feature-list {
  font-family: 'Noto Sans Display', sans-serif;
  font-weight: 400;
  font-size: 1rem; /* 16px */
  line-height: 1.5; /* 24px */
  color: #2a2b2f;
  margin: 0;
  padding-left: 1.5rem; /* 24px */
  list-style-type: disc;
}

.room-detail__feature-list li {
  margin-bottom: 0;
}

/* Action Buttons */
.room-detail__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* 12px */
  align-items: flex-start;
}

.room-detail__cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3.6875rem; /* 16px 59px */
  background-color: #211551;
  border: 1px solid transparent;
  text-decoration: none;
}
.room-detail__cta:hover,
.room-detail__cta:focus-visible {
  background-color: #ffffff;
  border: 1px solid #211551;
  text-decoration: none;
}

.room-detail__cta:hover .room-detail__cta-label,
.room-detail__cta:focus-visible .room-detail__cta-label {
  color: #211551;
}

.room-detail__cta-label {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem; /* 16px */
  line-height: 1.375; /* 22px */
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

.room-detail__floorplan-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.885rem 1rem; /* ~14.17px 16px */
  text-decoration: none;
  width: 100%;
}

.room-detail__floorplan-label {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem; /* 16px */
  line-height: 1.375; /* 22px */
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Match width of View Rates and Floorplan buttons */
.room-detail__actions .be-button--outline.view-more {
  width: 100%;
  padding: 1rem 3.6875rem; /* 16px 59px - same as View Rates */
  min-width: auto;
}

/* ==========================================================================
   Room Detail Page - Desktop Styles (768px+)
   ========================================================================== */

@media (min-width: 48rem) {
  .room-detail-hero {
    padding-block: 2.5rem 0.9375rem; /* 40px 15px */
    gap: 0.9375rem; /* 15px */
  }

  .room-detail-content {
    padding: 0 10rem 5rem; /* 0 160px 80px */
  }

  .gallery-lightbox .image-slider__slide {
    /* max-width: 100%; */
    /* width: 100%; */ /* Full width within container on desktop */
    width: calc(100% - 10rem);
  }

  .room-detail-info {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* 32px */
  }

  .room-detail__title {
    font-size: 1.625rem; /* 26px as per Figma */
  }

  .room-detail__content {
    display: flex;
    flex-direction: row;
    gap: 2rem; /* 32px */
  }

  .room-detail__description-column,
  .room-detail__amenities-column {
    flex: 1;
    min-width: 0;
  }

  .room-detail__features {
    display: flex;
    flex-direction: row;
    gap: 0.625rem; /* 10px */
  }

  .room-detail__feature-list {
    flex: 1;
    min-width: 0;
  }

  .room-detail__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem; /* 12px */
  }

  .room-detail__cta {
    width: auto;
    min-width: auto;
  }

  .room-detail__actions .be-button--outline.view-more {
    width: auto;
  }

  .image-slider__track {
    gap: 4rem;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Room Detail Page - Large Desktop Styles (1024px+)
   ========================================================================== */

@media (min-width: 64rem) {
  .room-detail-hero {
    padding-block: 2.5rem 0.9375rem; /* 40px 15px */
  }

  .room-detail-content {
    padding: 0 0 5rem; /* 0 0 80px */
  }
}

/* Offer Detail Content Reordering */
.offer-detail-content__body {
  display: flex;
  flex-direction: column-reverse; /* Mobile: Content Top, Media Bottom */
  gap: 24px;
}

.offer-detail-content__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* ~24px to 32px */
}

/* Ensure Back Link has proper spacing/layout if needed */
.offer-detail-content__back-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.875rem; /* 14px */
  letter-spacing: 1px;
}

@media (min-width: 1024px) {
  .offer-detail-content__body {
    flex-direction: row; /* Desktop: Media Left, Content Right */
    align-items: flex-start;
    gap: 75px;
  }

  .offer-detail-content__media {
    width: 475px;
    flex-shrink: 0;
  }

  .offer-detail-content__content {
    flex: 1;
    padding-top: 60px; /* From Figma Design */
    gap: 32px;
  }

  .offer-detail-content__back-link {
    /* margin-bottom: 0; */
  }
}

/* Offer Detail Content Grid Layout */
/* Mobile: Natural Flow (Vertical) */

/* Desktop: Grid Layout */
@media (min-width: 1024px) {
  .offer-detail-content__container {
    display: grid;
    grid-template-columns: 475px 1fr; /* Image Col, Content Col */
    gap: 75px;
    align-items: start;
  }

  /* Force Image to the first column, spanning all rows */
  .offer-detail-content__media {
    grid-column: 1;
    width: 100%;
    margin: 0;
  }

  /* Force all other content to the second column */
  .offer-detail-content__container > *:not(.offer-detail-content__media) {
    grid-column: 2;
  }

  /* Reset previous padding top on content wrapper since we removed it */
  .offer-detail-content__container > .offer-detail-content__heading {
    padding-top: 60px;
  }
}

/* ==========================================================================
   Meetings Content Block
   ========================================================================== */

.meetings-content-block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem; /* 40px */
}

.meetings-content-block__title {
  margin: 0;
  letter-spacing: 4px;
}

.meetings-content-block__body {
  display: flex;
  flex-direction: column;
  gap: 2.5rem; */ /* 40px */
  
}

.meetings-content-block__left {
  display: flex;
  flex-direction: column;
  gap: 2.375rem; /* 38px */
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.meetings-content-block__carousel {
  display: flex;
  flex-direction: column;
}

.meetings-content-block__carousel-slides {
  position: relative;
  width: 100%;
}

.meetings-content-block__carousel-slides .slick-list {
  overflow: hidden;
}

.meetings-content-block__carousel-slide {
  width: 100%;
}

.meetings-content-block__carousel-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.meetings-content-block__pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.meetings-content-block__pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 3px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--bellhop-color-text-on-light);
}

.meetings-content-block__pagination-btn:hover {
  color: var(--bellhop-color-brand-iris-600);
}

.meetings-content-block__pagination-counter {
  padding: 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.meetings-content-block__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.meetings-content-block__contact-heading {
  margin: 0;
}

.meetings-content-block__contact-text {
  margin: 0;
}

.meetings-content-block__right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* 24px */
}

.meetings-content-block__feature {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.meetings-content-block__feature-title {
  margin: 0;
}

.meetings-content-block__feature-description {
  margin: 0;
}

@media (min-width: 48rem) {
  .meetings-content-block__body {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Desktop layout */
@media (min-width: 64rem) {
  .meetings-content-block {
    gap: 5rem; /* 80px */
  }

  .meetings-content-block__body {
    /* gap handled by grid gutter */
  }

  .meetings-content-block__left {
    /* width handled by be-grid-col-md-6 */
    padding-left: 0;
    padding-right: 0;
  }

  .meetings-content-block__right {
    /* width handled by be-grid-col-md-5 */
    margin-left: 0; /* 1 column offset */
  }
}

/* Meetings Content Block Arrows */
.meetings-content-block__arrow {
  display: block;
  width: 44px;
  height: 44px;
  transition: transform .2s;
}

.meetings-content-block__arrow--prev {
  transform: rotate(180deg);
}

.meetings-content-block__pagination-btn {
  padding: 0;
}

.meetings-content-block__pagination-btn:disabled .be-arrow-pagination-ol {
  background-image: url('../images/arrows/pagination-on-light-disabled.svg');
}

.meetings-content-block__pagination-btn:not(:disabled):hover
  .be-arrow-pagination-ol,
.meetings-content-block__pagination-btn:not(:disabled):focus-visible
  .be-arrow-pagination-ol {
  transform: scale(1.2);
}

.meetings-content-block__pagination-btn--prev:not(:disabled):hover .be-arrow-pagination-ol,
.meetings-content-block__pagination-btn--prev:not(:disabled):focus-visible .be-arrow-pagination-ol {
  transform: rotate(180deg) scale(1.2);
}

/* ========================================
   Weddings Content Block
   ======================================== */
.weddings-container {
  background-color: #211551;
  padding-bottom: 0;
}
.weddings-content-block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem; /* 40px */
  color: #ffffff;
}

.weddings-content-block__title {
  margin: 0;
  color: #ffffff;
}

.weddings-content-block__body {
  display: flex;
  flex-direction: column;
  gap: 2.5rem; /* 40px */
}

.weddings-content-block__body + .weddings-content-block__body {
  margin-top: 2.5rem;
}

.weddings-content-block__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* 24px */
  order: 2; /* Features below carousel on mobile */
}

.weddings-content-block__right {
  display: flex;
  flex-direction: column;
  gap: 2.375rem; /* 38px */
  order: 1; /* Carousel first on mobile */
}

.weddings-content-block__carousel {
  display: flex;
  flex-direction: column;
}

.weddings-content-block__carousel-slides {
  position: relative;
  width: 100%;
}

.weddings-content-block__carousel-slides .slick-list {
  overflow: hidden;
}

.weddings-content-block__carousel-slide {
  width: 100%;
}

.weddings-content-block__carousel-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.weddings-content-block__pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.weddings-content-block__pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 1.5rem;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.weddings-content-block__pagination-btn:not(:disabled):hover
  .be-arrow-pagination-od,
.weddings-content-block__pagination-btn:not(:disabled):focus-visible
  .be-arrow-pagination-od {
  background-image: url('../images/arrows/pagination-on-light-enabled.svg');
}

.weddings-content-block__pagination-counter {
  padding: 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}

.weddings-content-block__arrow {
  display: block;
  width: 2rem;
  height: 1.5rem;
}

.weddings-content-block__arrow--prev {
  transform: rotate(180deg);
}

.weddings-content-block__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.weddings-content-block__contact-heading {
  margin: 0;
  color: #ffffff;
}

.weddings-content-block__contact-text {
  margin: 0;
  color: #ffffff;
}

.contact-phone {
  color: #ffffff;
}

.weddings-content-block__phone {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
}

.weddings-content-block__feature {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.weddings-content-block__feature-title {
  margin: 0;
  color: #ffffff;
}

.weddings-content-block__feature-description {
  margin: 0;
  color: #ffffff;
}

/* Desktop layout */
@media (min-width: 64rem) {
  .weddings-content-block {
    gap: 5rem; /* 80px */
  }

  .weddings-content-block__body {
    flex-direction: row;
  }

  .weddings-content-block__left {
    order: 1; /* Features on left on desktop */
  }

  .weddings-content-block__right {
    order: 2; /* Carousel on right on desktop */
  }
}

/*
  ==========================================================================
   Amenties Page
  ========================================================================== 
*/

.page-amenities .image-copy-section .small-container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 48rem) {
  .page-amenities .image-copy-section .small-container {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }

  .wedding-separator {
    margin-top: 2.5rem;
  }
}

/*
  ==========================================================================
   Sitemap Page
  ========================================================================== 
*/

.sitemap {
  background-color: #ffffff;
}

.sitemap__content {
  display: flex;
  flex-direction: column;
}

.sitemap__nav {
  width: 100%;
}

.sitemap__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sitemap__item {
  line-height: 1.5;
}

.sitemap__link {
  font-size: 1.125rem;
  font-weight: 400;
  color: #211551;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sitemap__link:hover,
.sitemap__link:focus {
  color: #8b4513;
  text-decoration: underline;
}

@media (min-width: 48rem) {
  .sitemap__list {
    gap: 1rem;
  }

  .sitemap__link {
    font-size: 1.25rem;
  }
}

/* 404 page */
.not-found {
  background: linear-gradient(135deg, #f4f0eb, #ffffff);
  border: 1px solid #e7dfd6;
  border-radius: 1.25rem;
  padding: 3rem 2rem;
  text-align: center;
  display: grid;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.not-found__eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b4513;
  margin: 0;
}

.not-found__message {
  color: #4a4a4a;
  margin: 0 auto;
  max-width: 38rem;
}

.not-found__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.not-found__links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.not-found__link {
  color: #211551;
  text-decoration: none;
  font-weight: 600;
}

.not-found__link:hover,
.not-found__link:focus {
  color: #8b4513;
  text-decoration: underline;
}

@media (min-width: 48rem) {
  .not-found {
    padding: 4rem 3rem;
    gap: 2rem;
  }
}



.desktop-only {
  display: none;
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .desktop-only {
    display: flex;
  }
}

/* helpers */

.d-flex {
  display: flex !important;
}
.d-block {
  display: block !important;
}

/* widget */

.input-group-addon {
  background: #ffffff;
  padding: 11px .5rem;
  border-radius: 0 !important;
}
.input-daterange {
  position: relative;
}
.input-daterange input:first-child {
  -webkit-border-radius: .25rem 0 0 .25rem;
  -moz-border-radius: .25rem 0 0 .25rem;
  border-radius: .25rem 0 0 .25rem;
  border-right: 0;
}
.input-daterange input:last-child {
  -webkit-border-radius: 0 .25rem .25rem 0;
  -moz-border-radius: 0 .25rem .25rem 0;
  border-radius: 0 .25rem.25rem 0;
  border-left: 0;
}
.new-booking {
  width: auto;
  height: auto;
  position: relative;
  top: initial;
  //height: 170px;
  height: auto;
  padding: 2rem 0;
}
.new-booking .res-container {
  text-align: center;
  height: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: block;
  width: 100%;
}
.new-booking .res-container .booking-title {
  text-align: left;
  margin-bottom: 1rem;
}
.new-booking .res-container .booking-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  //padding-bottom: 30px;
  //padding-bottom: 1rem;
  width: 100%;
}
.new-booking .res-container .booking-container form {
  width: 100%;
}
.new-booking .res-container .booking-container-options,
.new-booking .res-container .booking-container-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  flex-direction: column;
}
.new-booking .res-container .booking-container-options .booking-col,
.new-booking .res-container .booking-container-content .booking-col {
  //padding: 0 1rem;
  //min-width: 200px;
  width: 100%;
}
.new-booking .res-container .booking-container-content .booking-arrival-departure,
.new-booking .res-container .booking-container-content .booking-adults-children {
  display: flex;
  width: 100%;
}
.new-booking .res-container .booking-container-content .booking-arrival-departure {
  position: relative;
  display: block;
}
.new-booking .res-container .booking-container-content .booking-arrival-departure .labels {
  display: flex;
  justify-content: space-around;
}
.new-booking .res-container .booking-container-content  .booking-arrival-departure .dash {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,0);
  padding: .5rem;
}
.new-booking .res-container .booking-container-content  .booking-arrival-departure .input-group-addon {
  padding: 0;
  background: transparent;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,0);
  padding: .675rem;
  z-index: 10000;
  height: 100%;
}
.new-booking .res-container .booking-container-content .booking-arrival {
  padding: 0;
}
.new-booking .res-container .booking-container-content .booking-arrival .form-control {
  border-right: 0;
  //border-radius: .25rem 0 0 .25rem;
}
.new-booking .res-container .booking-container-content .booking-departure {
  padding: 0;
}
.new-booking .res-container .booking-container-content .booking-departure .form-control {
  border-left: 0;
  //border-radius: 0 .25rem .25rem 0;
}
.new-booking .res-container .booking-container-content .booking-arrival,
.new-booking .res-container .booking-container-content .booking-departure {
  width: 50%;
}
.new-booking .res-container .booking-container-content .booking-col .booking-arrival-nights,
.new-booking .res-container .booking-container-content .booking-adults-children .booking-adults {
  padding-right: .125rem;
}
.new-booking .res-container .booking-container-content .booking-col .booking-nights,
.new-booking .res-container .booking-container-content .booking-adults-children .booking-children {
  padding-left: .125rem;  
}
.new-booking label {
  font-size: 1.05rem;
  font-weight: 500;
  text-align: center;
  padding: .125rem;
  display: block;
}
.new-booking .form-control:disabled, .new-booking .form-control[readonly] {
  background-color: #ffffff;
  opacity: 1;
}
.new-booking .form-control {
  border-radius: 0 !important;
  padding: .5rem;
  border: 1px solid #000000;
  text-align: center;
  background: #ffffff;
}
.new-booking .form-control:focus {
  box-shadow: 0 0 0 1px var(--bellhop-color-link-on-dark-hover), 0 0 0 3px var(--bellhop-color-link-on-light-enabled);
}
.new-booking .be-button {
  min-width: 100%;
  color: #ffffff;
  background-color: var(--bellhop-button-primary-on-dark-text-color-enabled);
}
.new-booking .be-button:hover {
  background-color: var( --bellhop-button-primary-on-dark-background-color-hover, #d3d0dc);
  color: var(--bellhop-button-primary-on-dark-text-color-enabled)
}
.new-booking .btn-primary {
  padding: 0.3rem 0;
  margin-top: 1rem;
  width: 100%;
  text-wrap: nowrap;
}
.booking-button {
  margin-top: 3px;
}

@media (min-width: 1200px) {
  .new-booking .res-container .booking-container-options,
  .new-booking .res-container .booking-container-content {
    flex-direction: row;
  }
  .new-booking .res-container .booking-container-content .booking-col {
    padding: 0;
    //max-width: 200px;
  }
  .new-booking .res-container .booking-container-options .booking-col {
    padding-left: .125rem;
    padding-right: .125rem;
  }
  .new-booking .res-container .booking-container {
    //padding-bottom: 30px;
  }
  .new-booking .res-container .booking-container-content .booking-arrival-departure {
    padding-right: .125rem;
    padding-left: .125rem;
  }
  .new-booking .res-container .booking-container-content .booking-arrival-departure,
  .new-booking .res-container .booking-container-content .booking-adults-children {
    min-width: 35%;
  }
  .new-booking .res-container .booking-container-content .booking-arrival {
    padding: 0;
  }
  .new-booking .res-container .booking-container-content .booking-departure {
    padding: 0;
  }
  .new-booking .res-container .booking-container-content .booking-adults-children {
    padding-left: .125rem;
    padding-right: .125rem;
  }
  .new-booking .res-container .booking-container-content .booking-button {
    padding-left: .125rem;  
  }
}

/* datepicker override styles */

.datepicker table {
  border-collapse: collapse;
}
.datepicker td, .datepicker th {
  background: #ffffff;
}
.datepicker table tr td.range-start {
  border-radius: 8px 0 0 8px !important;
  border-right: 1px solid var(--main-color);
}
.datepicker table tr td.range-end {
  border-radius: 0 8px 8px 0;
  border-left: 1px solid var(--main-color);
}
.datepicker table tr td.selected:hover,
.datepicker table tr td.range:hover,
.datepicker table tr td.range-start:hover,
.datepicker table tr td.range-end:hover {
  background-color: #eee !important;
  color: #000000 !important;
}
.datepicker table tr th.dow {
  min-width: 46px !important;
}
.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
  background-color: var(--bellhop-button-primary-on-dark-border-color-hover);
  color: #000000;
}
.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
  background-color: var(--bellhop-color-text-on-light);
}
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled] {
  background-color: var(--bellhop-color-text-on-light);
}
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled] {
  background-color: var(--bellhop-color-text-on-light);
}
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled] {
  background-color: var(--bellhop-color-text-on-light);
}
.datepicker.dropdown-menu {
  font-size: 1rem;
}

#reservation-selection #reservation-select {
  display: none;
}
#reservation-select-index {
  display: block;
}
#reservation-select-index .booking-title {
  display: none;
}
.fancybox-container #reservation-select-index .booking-title {
  display: block;
}
.fancybox-container .fancybox-content iframe {
  min-height: 460px;
}

.hide {
  display: none;
}

.fancybox-bg {
  background: var(--bellhop-color-text-on-light);
}
.fancybox-is-open .fancybox-bg {
  opacity: 1;
}
.fancy {
  display: none;
}
.fancybox-content,
#reservation-select {
  //display: none;
  //padding: 1rem;
  //width: 100%;
  width: 1280px;
  border-radius: 0;
  padding: 3rem 1rem 2rem 1rem;
  margin: 0 auto;
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .fancybox-content,
  #reservation-select {
    padding: 44px;
  }
}




/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .dining-slider__image {
    object-fit: cover;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* Custom extra large devices (large desktops, 1400px and up) */
@media (min-width: 1400px) {
  .image-bg {
    text-align: center;
  }
  .image-copy-section img {
    //inset: unset;
    //width: 50%;
    //object-fit: unset;
    //object-position: unset;
    //display: initial;
  }

}
