@import url("https://fonts.googleapis.com/css2?family=Alex+Brush&family=Hanken+Grotesk:wght@400;500;600;700&family=Libre+Caslon+Text:wght@400;700&display=swap");

:root {
    --color-primary: #6a0109;
    --color-primary-dark: #520006;
    --color-primary-text-on-light: #6a0109;
    --color-primary-text: var(--color-primary-text-on-light);
    --color-primary-text-on-dark: #ffffff;
    --color-secondary: #f0eded;
    --color-accent: #6a0109;
    --color-text: #1c1b1b;
    --color-muted: #58413f;
    --color-surface: #ffffff;
    --color-surface-dark: #fcf9f8;
    --color-surface-deep: #6a0109;
    --color-border: rgba(106, 1, 9, 0.16);
    --color-border-strong: rgba(106, 1, 9, 0.32);
    --color-on-primary: #ffffff;
    --color-taupe: #58413f;
    --color-sand: #e9e2d6;
    --color-mist: #f0eded;
    --shadow-soft: 0 10px 30px -10px rgba(98, 94, 85, 0.15);
    --shadow-card: 0 20px 40px -15px rgba(98, 94, 85, 0.15);
    --content-max: 1280px;

    --af-primary: var(--color-primary);
    --af-primary-container: var(--color-primary-dark);
    --af-on-primary: var(--color-on-primary);
    --af-on-surface: var(--color-text);
    --af-on-surface-variant: var(--color-muted);
    --af-surface-container-lowest: var(--color-surface-deep);
    --af-surface-container-low: var(--color-surface-dark);
    --af-surface-container-high: var(--color-surface);
    --af-secondary-container: var(--color-secondary);
    --af-outline-variant: var(--color-border);
}

:is(
    .bg-dark,
    .text-bg-dark,
    .od-offcanvas-nav,
    .od-service-cards__card,
    .od-booking-strip,
    .od-weather__copy-card,
    .od-step-timeline--dark,
    .od-editorial--dark,
    .od-bootfitting-section--dark,
    .od-promo-text-image--bg-2,
    .od-textpic-section--bg-2
) {
    --color-primary-text: var(--color-primary-text-on-dark);
}

html,
body {
    background: var(--color-surface-dark);
    color: var(--color-text);
    font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
    background: var(--color-surface-dark);
}

h1,
h2,
h3,
h4,
h5,
h6,
.fw-black {
    font-family: "Libre Caslon Text", Georgia, serif;
}

.fw-black {
    font-weight: 400;
}

.od-heading-font--alex-brush {
    display: contents;
}

.od-heading-font--alex-brush :is(.frame-header h1, .frame-header h2, .frame-header h3, .frame-header h4, .frame-header h5, .frame-header h6, .od-content-heading) {
    font-family: "Alex Brush", cursive !important;
    font-style: normal;
    font-weight: 400;
}

.od-rte-button {
    display: inline-flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: 1px solid var(--color-primary);
    border-radius: 0;
    background: var(--color-primary);
    color: var(--color-on-primary);
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.od-rte-button:hover,
.od-rte-button:focus-visible {
    border-color: var(--color-primary-dark);
    background: var(--color-primary-dark);
    color: var(--color-on-primary);
    transform: translateY(-1px);
}

.od-rte-button:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(106, 1, 9, 0.18);
}

.od-rte-button + .od-rte-button {
    margin-left: 0.75rem;
}

.od-group-rental {
    margin-top: clamp(1rem, 3vw, 2.5rem);
    color: var(--color-text);
}

.od-group-rental__form {
    border: 1px solid var(--color-border);
    border-radius: 2px;
    background: var(--color-surface);
    padding: clamp(1.25rem, 2.5vw, 2rem);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.od-group-rental__steps {
    display: flex;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.od-group-rental__step {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    border: 1px solid var(--color-border);
    color: var(--color-muted);
    font-weight: 800;
}

.od-group-rental__step.is-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-on-primary);
}

.od-group-rental__panel {
    display: none;
    min-inline-size: 0;
}

.od-group-rental__panel.is-active {
    display: block;
}

.od-group-rental__panel legend {
    margin-bottom: 1.1rem;
    color: var(--color-text);
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.15;
    font-weight: 900;
    text-transform: uppercase;
}

.od-group-rental .form-label {
    color: var(--color-text);
    font-weight: 700;
}

.od-group-rental .form-control {
    min-height: 48px;
    border-radius: 2px;
    border: 1px solid var(--color-border);
    background: var(--color-surface-dark);
    color: var(--color-text);
}

.od-group-rental .form-control::placeholder {
    color: rgba(204, 195, 212, 0.7);
}

.od-group-rental .form-control:focus {
    border-color: var(--color-primary);
    background: var(--color-surface-dark);
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(106, 1, 9, 0.18);
}

.od-group-rental .invalid-feedback {
    color: #ffb4ab;
}

.od-group-rental .alert-success {
    border-color: rgba(148, 211, 192, 0.4);
    background: rgba(148, 211, 192, 0.14);
    color: #d8f5ec;
}

.od-group-rental .alert-danger {
    border-color: rgba(255, 180, 171, 0.45);
    background: rgba(255, 180, 171, 0.13);
    color: #ffe1dc;
}

.od-group-rental .btn-danger,
.od-group-rental__next {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-on-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.od-group-rental .btn-danger:hover,
.od-group-rental .btn-danger:focus,
.od-group-rental__next:hover,
.od-group-rental__next:focus {
    border-color: var(--color-primary-dark);
    background: var(--color-primary-dark);
    color: var(--color-on-primary);
}

.od-group-rental .btn-outline-secondary {
    border-color: rgba(234, 242, 255, 0.36);
    color: var(--color-text);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.od-group-rental .btn-outline-secondary:hover,
.od-group-rental .btn-outline-secondary:focus {
    border-color: rgba(234, 242, 255, 0.58);
    background: rgba(234, 242, 255, 0.1);
    color: #ffffff;
}

.od-group-rental__equipment {
    height: 100%;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.035);
}

.od-group-rental__equipment h3 {
    margin-bottom: 0.85rem;
    color: var(--color-secondary);
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 900;
    text-transform: uppercase;
}

.od-group-rental__equipment-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.od-group-rental__equipment-row:last-child {
    margin-bottom: 0;
}

.od-group-rental__equipment-row .form-label {
    margin-bottom: 0;
    line-height: 1.35;
}

.od-group-rental__quantity {
    flex: 0 0 5.25rem;
    width: 5.25rem;
    min-height: 2.5rem;
    padding: 0.45rem 0.6rem;
    text-align: center;
}

.frame-type-form_formframework {
    width: min(calc(100% - 2rem), var(--content-max));
    margin: clamp(2rem, 5vw, 4rem) auto;
    color: var(--color-text);
}

.frame-type-form_formframework form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 2vw, 1.75rem) clamp(1.25rem, 3vw, 2.5rem);
    padding: clamp(1.5rem, 4vw, 4rem);
    border: 1px solid rgba(119, 104, 85, 0.22);
    background: var(--color-surface);
    box-shadow: 0 1.5rem 4rem rgba(106, 1, 9, 0.12);
}

.frame-type-form_formframework form > div:first-child:has(> input[type="hidden"]) {
    display: none;
}

.frame-type-form_formframework form > h2,
.frame-type-form_formframework .form-element-textarea,
.frame-type-form_formframework .form-element-statictext,
.frame-type-form_formframework .form-element:has(input[value="akzeptiert"]),
.frame-type-form_formframework .actions,
.frame-type-form_formframework .form-navigation {
    grid-column: 1 / -1;
}

.frame-type-form_formframework form > h2 {
    margin: 0 0 clamp(0.5rem, 2vw, 1.25rem);
    color: var(--color-text);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.05;
}

.frame-type-form_formframework .form-element {
    margin-bottom: 0 !important;
}

.frame-type-form_formframework .form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.frame-type-form_formframework .required {
    color: #b42318;
    font-weight: 900;
}

.frame-type-form_formframework .form-control,
.frame-type-form_formframework .form-select,
.frame-type-form_formframework textarea {
    width: 100%;
    min-height: 3.25rem;
    border: 1px solid var(--color-border-strong);
    border-radius: 0;
    background-color: #ffffff;
    color: var(--color-text);
    padding: 0.85rem 1rem;
    font-size: 1rem;
    line-height: 1.4;
    box-shadow: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.frame-type-form_formframework textarea.form-control,
.frame-type-form_formframework textarea {
    min-height: 9rem;
    resize: vertical;
}

.frame-type-form_formframework .form-control::placeholder,
.frame-type-form_formframework textarea::placeholder {
    color: #685c4f;
    opacity: 1;
}

.frame-type-form_formframework .form-control:focus,
.frame-type-form_formframework .form-select:focus,
.frame-type-form_formframework textarea:focus {
    border-color: var(--color-primary);
    background-color: #ffffff;
    color: var(--color-text);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(239, 92, 39, 0.16);
}

.frame-type-form_formframework fieldset.form-element {
    min-width: 0;
    margin: 0;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(119, 104, 85, 0.2);
    background: var(--color-surface-dark);
}

.frame-type-form_formframework fieldset legend {
    float: none;
    width: auto;
    max-width: 100%;
    margin: 0 0 0.75rem;
    padding: 0;
    color: var(--color-text);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.25;
}

.frame-type-form_formframework .form-check {
    min-height: 0;
    margin: 0 0 0.65rem !important;
    padding: 0;
}

.frame-type-form_formframework .form-check:last-child {
    margin-bottom: 0 !important;
}

.frame-type-form_formframework .form-check-wrapping-label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    cursor: pointer;
}

.frame-type-form_formframework .form-check-input {
    float: none;
    flex: 0 0 1.2rem;
    width: 1.2rem;
    height: 1.2rem;
    margin: 0.1rem 0 0;
    border: 1px solid var(--color-border-strong);
    border-radius: 0.15rem;
    background-color: #ffffff;
    box-shadow: none;
}

.frame-type-form_formframework .form-check-input:checked {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
}

.frame-type-form_formframework .form-check-input:focus-visible {
    border-color: var(--color-primary);
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.frame-type-form_formframework .form-check-label {
    color: var(--color-text);
    line-height: 1.45;
}

.frame-type-form_formframework input[type="file"].form-control {
    padding: 0;
    overflow: hidden;
}

.frame-type-form_formframework input[type="file"]::file-selector-button {
    min-height: 3.2rem;
    margin-right: 1rem;
    padding: 0.75rem 1rem;
    border: 0;
    border-right: 1px solid var(--color-border-strong);
    background: var(--color-mist);
    color: var(--color-text);
    font-weight: 700;
    cursor: pointer;
}

.frame-type-form_formframework input[type="file"]::file-selector-button:hover {
    background: var(--color-sand);
}

.frame-type-form_formframework .form-element-statictext {
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--color-primary);
    background: var(--color-mist);
    line-height: 1.6;
}

.frame-type-form_formframework .actions {
    margin-top: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.frame-type-form_formframework .form-navigation {
    display: flex;
    justify-content: flex-end;
}

.frame-type-form_formframework .btn,
.frame-type-form_formframework button[type="submit"] {
    min-height: 3rem;
    border-radius: 0;
    padding: 1rem 1.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.frame-type-form_formframework .btn-primary,
.frame-type-form_formframework button[type="submit"] {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-on-primary);
}

.frame-type-form_formframework .btn-primary:hover,
.frame-type-form_formframework .btn-primary:focus-visible,
.frame-type-form_formframework button[type="submit"]:hover,
.frame-type-form_formframework button[type="submit"]:focus-visible {
    border-color: var(--color-primary-dark);
    background-color: var(--color-primary-dark);
    color: var(--color-on-primary);
    box-shadow: 0 0 0 0.2rem rgba(106, 1, 9, 0.2);
}

.frame-type-form_formframework .alert,
.frame-type-form_formframework .error,
.frame-type-form_formframework .help-block,
.frame-type-form_formframework .invalid-feedback {
    grid-column: 1 / -1;
}

.frame-type-form_formframework .invalid-feedback,
.frame-type-form_formframework .error,
.frame-type-form_formframework .help-block {
    color: #b42318;
}

.frame-type-form_formframework .form-control.is-invalid,
.frame-type-form_formframework .form-check-input.is-invalid {
    border-color: #b42318;
}

@media (max-width: 767.98px) {
    .frame-type-form_formframework {
        width: min(calc(100% - 1.5rem), var(--content-max));
        margin-block: 1.5rem;
    }

    .frame-type-form_formframework form {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.25rem;
    }

    .frame-type-form_formframework .form-navigation,
    .frame-type-form_formframework button[type="submit"] {
        width: 100%;
    }
}

.od-navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: rgba(19, 19, 19, 0.9);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1030;
    transition: transform 240ms ease, opacity 240ms ease, background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
    will-change: transform, opacity;
}

.od-navbar.od-navbar--hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.od-main--with-navbar-margin {
    margin-top: 50px;
}

.od-navbar.od-navbar--top-solid.od-navbar--on-top {
    background: rgba(19, 19, 19, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.od-navbar .navbar-brand {
    color: var(--color-text);
    letter-spacing: 0;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    margin-right: 0.5rem;
}

.od-navbar .container-fluid {
    position: relative;
}

.od-navbar__logo {
    display: block;
    width: auto;
    height: auto;
    max-height: 2rem;
    max-width: min(46vw, 12rem);
    object-fit: contain;
}

.od-navbar__brand-text {
    display: inline-block;
    color: var(--color-text);
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    line-height: 1.3;
    letter-spacing: -0.05em;
    font-weight: 700;
    white-space: nowrap;
}

.od-navbar-quickmenu {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    gap: 1.25rem;
    z-index: 2;
}

.od-navbar-quickmenu__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    position: relative;
    color: inherit;
    text-decoration: none;
}

.od-navbar-quickmenu__item--text {
    width: auto;
    min-width: 0;
    height: 1.5rem;
    padding-bottom: 0.18rem;
    position: relative;
}

.od-navbar-quickmenu__icon {
    display: block;
    width: 1.75rem;
    height: 1.75rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.od-navbar-quickmenu__text {
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

.od-navbar-quickmenu__item--text .od-navbar-quickmenu__label {
    display: none;
}

.od-navbar-quickmenu__item--text::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.od-navbar-quickmenu__item--text:hover .od-navbar-quickmenu__text,
.od-navbar-quickmenu__item--text:focus-visible .od-navbar-quickmenu__text {
    color: var(--color-primary-text);
}

.od-navbar-quickmenu__item--text:hover::after,
.od-navbar-quickmenu__item--text:focus-visible::after {
    transform: scaleX(1);
}

.od-navbar-quickmenu__label {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 50%;
    transform: translate(-50%, -0.25rem);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    background: rgba(26, 26, 26, 0.96);
    color: var(--color-text);
    font-size: 0.68rem;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.4rem 0.5rem;
    border-radius: 0.3rem;
    transition: opacity 160ms ease, transform 160ms ease;
    z-index: 6;
}

.od-navbar-quickmenu__item:hover .od-navbar-quickmenu__label,
.od-navbar-quickmenu__item:focus-visible .od-navbar-quickmenu__label {
    opacity: 1;
    transform: translate(-50%, 0);
}

.od-navbar.od-navbar--on-top {
    background: rgba(19, 19, 19, 0.72);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.od-navbar.od-navbar--on-top .od-navbar__logo {
    max-height: 2rem;
    max-width: min(62vw, 18rem);
}

.od-navbar.od-navbar--on-top .od-navbar-quickmenu__icon {
    width: 2.1rem;
    height: 2.1rem;
    filter: brightness(0) invert(1);
}

.od-navbar.od-navbar--on-top .od-navbar-quickmenu__text {
    color: #fff;
}

.od-navbar.od-navbar--on-top .od-menu-toggle {
    color: #fff;
}

.od-navbar.od-navbar--on-top .od-menu-toggle-btn .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.od-menu-toggle {
    min-width: 2.75rem;
    min-height: 2.75rem;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.od-menu-toggle-btn .navbar-toggler-icon {
    width: 1.35rem;
    height: 1.35rem;
    filter: brightness(0) invert(1);
}

.od-navbar-cart {
    color: #e9f2ff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    position: relative;
}

.od-navbar-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    justify-content: flex-end;
}

.od-navbar-search__toggle,
.od-navbar-search__submit {
    position: relative;
    z-index: 2;
    flex: 0 0 2.35rem;
    width: 2.35rem;
    height: 2.35rem;
    border: 0;
    background: transparent;
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.od-navbar-search__toggle:hover,
.od-navbar-search__toggle:focus-visible {
    color: var(--color-primary-text);
}

.od-navbar-search__collapse {
    position: relative;
    z-index: 1;
    flex: 0 1 auto;
    width: 0;
    min-width: 0;
    overflow: hidden;
    transition: width 220ms ease;
}

.od-navbar-search__collapse.collapse:not(.show) {
    display: block;
}

.od-navbar-search__collapse.collapsing,
.od-navbar-search__collapse.show {
    width: min(34vw, 22rem);
    height: auto !important;
}

.od-navbar-search__form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
    min-width: 0;
    width: min(34vw, 22rem);
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.od-navbar-search__input {
    min-width: 0;
    height: 2.75rem;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text);
    padding: 0.55rem 0.7rem;
}

.od-navbar-search__input::placeholder {
    color: #c7d0d8;
    opacity: 1;
}

.od-navbar-search__input:focus {
    outline: 0;
    border-color: var(--color-primary);
}

.od-navbar-search__submit {
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    color: #ffffff;
}

.od-navbar-search__submit:hover,
.od-navbar-search__submit:focus-visible {
    background: var(--color-primary-dark);
    color: #ffffff;
    border-color: var(--color-primary-dark);
}

.od-navbar-cart .bi {
    font-size: 1rem;
    line-height: 1;
}

.od-navbar-cart .cart-bubble {
    position: absolute;
    top: -0.25rem;
    right: -0.4rem;
    display: block;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-on-primary);
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1rem;
    text-align: center;
    opacity: 0;
    transition: opacity 140ms ease;
}

.od-navbar-cart:hover {
    color: var(--color-primary-text);
}

.od-offcanvas-nav {
    max-width: 26rem;
    background: var(--color-surface-deep);
    color: var(--color-text);
    width: min(26rem, 100vw);
    max-width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    padding-top: env(safe-area-inset-top, 0);
    padding-bottom: env(safe-area-inset-bottom, 0);
    overscroll-behavior: contain;
}

.od-offcanvas-nav .offcanvas-header {
    padding-top: max(1rem, env(safe-area-inset-top, 0)) !important;
    padding-right: max(1.5rem, env(safe-area-inset-right, 0)) !important;
    padding-left: max(1.5rem, env(safe-area-inset-left, 0)) !important;
}

.od-offcanvas-nav .offcanvas-body {
    padding-right: max(1.5rem, env(safe-area-inset-right, 0)) !important;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0)) !important;
    padding-left: max(1.5rem, env(safe-area-inset-left, 0)) !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    touch-action: pan-y;
}

html.od-navigation-open {
    overflow: hidden !important;
    overscroll-behavior: none;
}

body.od-navigation-open {
    position: fixed;
    top: var(--od-navigation-scroll-offset, 0);
    right: 0;
    left: 0;
    width: 100%;
    overflow: hidden !important;
    overscroll-behavior: none;
}

body.od-navigation-open .od-offcanvas-nav {
    touch-action: pan-y;
}

.offcanvas-backdrop {
    touch-action: none;
}

.od-offcanvas-nav .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.95;
}

.od-nav-list > .nav-item {
    border-bottom: 1px solid var(--color-border);
}

.od-nav-list .nav-link {
    padding: 0.75rem 0;
}

.od-subnav-row {
    position: relative;
    cursor: pointer;
}

.od-subnav-row__link {
    position: relative;
    z-index: 2;
}

.od-subnav-row__toggle {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--color-muted);
    cursor: pointer;
}

.od-navbar .nav-link {
    color: var(--color-muted);
}

.od-navbar .nav-link.active,
.od-navbar .nav-link:hover {
    color: var(--color-primary-text);
}

.od-subnav-list {
    padding-left: 0.75rem;
}

.od-subnav-list .nav-link {
    color: var(--color-muted);
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

.od-subnav-toggle-icon {
    margin-left: 0.5rem;
    transition: transform 180ms ease;
}

[aria-expanded="true"] .od-subnav-toggle-icon {
    transform: rotate(180deg);
}

.od-language-switcher {
    position: relative;
    --od-language-bg: #1a1a1a;
    --od-language-bg-hover: #202020;
    --od-language-border: var(--color-border-strong);
    --od-language-active: var(--color-primary);
    --od-language-active-hover: var(--color-primary-dark);
    --od-language-active-text: var(--color-on-primary);
    --od-language-text: var(--color-text);
    --od-language-muted: rgba(204, 195, 212, 0.5);
}

.od-language-switcher__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.8rem;
    height: 1.9rem;
    padding: 0.2rem 0.72rem;
    border-radius: 999px;
    border: 1px solid var(--od-language-border);
    background: var(--od-language-bg);
    color: var(--od-language-text);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}

.od-language-switcher__toggle::-webkit-details-marker {
    display: none;
}

.od-language-switcher__toggle:hover,
.od-language-switcher__toggle:focus,
.od-language-switcher__toggle:active,
.od-language-switcher[open] .od-language-switcher__toggle {
    background: var(--od-language-bg-hover);
    color: var(--od-language-text);
    border-color: rgba(106, 1, 9, 0.56);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

.od-language-switcher__toggle::after {
    content: "";
    display: inline-block;
    margin-left: 0.45rem;
    vertical-align: 0.12em;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.od-language-switcher__menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    z-index: 1070;
    min-width: 5.8rem;
    margin: 0;
    border: 1px solid var(--od-language-border);
    border-radius: 0.6rem;
    padding: 0.3rem;
    list-style: none;
    background: rgba(26, 26, 26, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32);
}

.od-language-switcher__item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.45rem;
    padding: 0.45rem 0.7rem;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--od-language-text);
    text-decoration: none;
    text-transform: uppercase;
}

.od-language-switcher__item:hover,
.od-language-switcher__item:focus {
    background: rgba(106, 1, 9, 0.14);
    color: var(--od-language-text);
}

.od-language-switcher__item.active,
.od-language-switcher__item:active {
    background: var(--od-language-active);
    color: var(--od-language-active-text);
}

.od-language-switcher__item.active:hover,
.od-language-switcher__item.active:focus {
    background: var(--od-language-active-hover);
    color: var(--od-language-active-text);
}

.od-language-switcher__item.disabled {
    color: var(--od-language-muted);
    opacity: 1;
    pointer-events: none;
}

.od-offcanvas-language-wrap,
.od-offcanvas-language-wrap .od-language-switcher {
    position: relative;
    z-index: 1065;
}

.od-offcanvas-language-wrap .od-language-switcher__menu {
    z-index: 1070;
}

.od-hero {
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
}

.od-hero-carousel {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
}

.frame-type-sitepackage_hero,
.frame-type-sitepackage-hero {
    width: 100%;
    max-width: none;
}

.od-hero-carousel .od-hero-carousel__swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.od-hero-carousel .od-hero-carousel__swiper,
.od-hero-carousel .swiper-wrapper,
.od-hero-carousel .od-hero-carousel__slide {
    min-height: 92vh;
}

.od-hero-carousel .od-hero-carousel__swiper {
    position: relative;
}

.od-hero-carousel .od-hero-carousel__slide {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    overflow: hidden;
}

.od-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.od-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(19, 19, 19, 0.82) 0%, rgba(19, 19, 19, 0.64) 48%, rgba(19, 19, 19, 0.18) 76%, rgba(19, 19, 19, 0.02) 100%),
        linear-gradient(180deg, rgba(19, 19, 19, 0.1) 0%, rgba(19, 19, 19, 0.5) 100%);
}

.od-hero-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    align-items: center;
    min-height: 92vh;
}

.od-hero-content__inner {
    width: min(100%, 1280px);
    display: flex;
    align-items: center;
    min-height: 100%;
}

.od-hero-glass-card {
    width: min(100%, 40rem);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.15rem;
}

.od-hero-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.6rem;
    padding: 0.18rem 0.8rem;
    gap: 0.5rem;
    border: 0;
    background: transparent;
    color: var(--color-secondary);
    font-size: 0.8rem;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.od-hero-title {
    margin: 0;
    color: var(--color-text);
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    max-width: 35rem;
}

.od-hero-title strong,
.od-hero-title em,
.od-hero-title span {
    color: var(--color-primary);
    font-style: italic;
}

.od-hero-copy {
    margin: 0;
    color: var(--color-muted);
    font-size: clamp(1rem, 1.45vw, 1.15rem);
    line-height: 1.45;
    max-width: 33rem;
}

.od-hero-actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 0.5rem;
}

.od-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.1rem;
    padding: 1rem 2.5rem;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 0.875rem;
    line-height: 1;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.od-hero-btn--primary {
    background: var(--color-primary);
    color: var(--color-on-primary);
    box-shadow: none;
}

.od-hero-btn--secondary {
    background: transparent;
    border-color: #dfbfbc;
    color: var(--color-text);
}

.od-hero-btn:hover {
    transform: translateY(-1px);
}

.od-hero-btn--primary:hover {
    color: var(--color-on-primary);
    background: var(--color-primary-dark);
}

.od-hero-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.od-hero-status {
    position: absolute;
    right: clamp(1rem, 2.2vw, 2rem);
    bottom: clamp(1rem, 2.2vw, 1.8rem);
    z-index: 4;
}

.od-hero-status__link {
    min-width: min(100%, 23.5rem);
    background: rgba(26, 26, 26, 0.92);
    border: 1px solid var(--color-border);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.od-hero-status__icon {
    width: 3.15rem;
    height: 3.15rem;
    background: var(--color-secondary);
    color: #002019;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.od-hero-status__meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.od-hero-status__label {
    color: var(--color-secondary);
    font-size: 0.9rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.od-hero-status__value {
    color: var(--color-text);
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    line-height: 1;
    text-transform: uppercase;
    font-weight: 800;
}

.od-hero-status__link:hover .od-hero-status__icon {
    background: #b1e5d5;
}

.od-hero-carousel__controls {
    position: absolute;
    right: clamp(1rem, 4vw, 2.6rem);
    bottom: 2.2rem;
    z-index: 13;
    gap: 0.5rem;
}

.od-hero-carousel__next,
.od-hero-carousel__prev {
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(20, 28, 36, 0.45);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 180ms ease, border-color 180ms ease;
}

.od-hero-carousel__next:hover,
.od-hero-carousel__prev:hover {
    background: rgba(20, 28, 36, 0.68);
    border-color: rgba(255, 255, 255, 0.7);
}

.od-hero-carousel > .od-hero-carousel__pagination.swiper-pagination {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: 2.35rem !important;
    transform: none !important;
    z-index: 12 !important;
    width: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0;
    pointer-events: none;
}

.od-hero-carousel .od-hero-carousel__pagination .swiper-pagination-bullet {
    position: relative;
    flex: 0 0 3rem;
    width: 3rem;
    height: 3rem;
    margin: 0 !important;
    border: 0;
    border-radius: 50%;
    background: transparent;
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
}

.od-hero-carousel .od-hero-carousel__pagination .swiper-pagination-bullet::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.625rem;
    height: 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    content: "";
    transform: translate(-50%, -50%);
    transition: width 160ms ease, height 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.od-hero-carousel .od-hero-carousel__pagination .swiper-pagination-bullet-active::before {
    width: 0.75rem;
    height: 0.75rem;
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.od-hero-carousel .od-hero-carousel__pagination .swiper-pagination-bullet:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: -0.3rem;
}

.od-hero-carousel .od-hero-carousel__pagination.swiper-pagination-lock {
    display: inline-flex !important;
}

@media (max-width: 767.98px) {
    .od-hero-content {
        min-height: 74vh;
    }

    .od-hero-glass-card {
        width: 100%;
        padding: 0;
    }

    .od-hero-pill {
        font-size: 0.9rem;
        line-height: 1.35rem;
    }

    .od-hero-title {
        font-size: clamp(1.7rem, 8.8vw, 2.55rem);
    }

    .od-hero-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .od-hero-btn {
        width: 100%;
        flex: 0 0 100%;
        min-height: 3.45rem;
        padding: 0.8rem 1rem;
        font-size: clamp(1rem, 6.6vw, 1.4rem);
    }

    .od-hero-carousel > .od-hero-carousel__pagination.swiper-pagination {
        bottom: 1.35rem !important;
    }

    .od-hero-status {
        position: static;
        margin: 1rem 0 0;
    }

    .od-hero-status__link {
        min-width: 0;
        width: 100%;
    }

    .od-hero-status__value {
        font-size: clamp(1.15rem, 6.4vw, 1.65rem);
    }
}

@media (max-width: 767.98px) {
    .od-navbar-search {
        position: static;
        flex: 0 0 auto;
    }

    .od-navbar-search__collapse {
        position: absolute;
        top: calc(100% + 0.5rem);
        right: 0;
        left: 0;
        width: 100%;
        padding: 0.75rem;
        background: rgba(19, 19, 19, 0.96);
        border-top: 1px solid var(--color-border);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
    }

    .od-navbar-search__collapse.collapse:not(.show) {
        display: none;
    }

    .od-navbar-search__collapse.collapsing,
    .od-navbar-search__collapse.show,
    .od-navbar-search__form {
        width: 100%;
    }

    .od-navbar-search__input {
        padding-right: 0.55rem;
        padding-left: 0.55rem;
    }
}

@media (max-width: 575.98px) {
    html,
    body {
        overflow-x: hidden;
    }

    .od-navbar .container-fluid,
    .od-hero-content.container-fluid,
    .od-textpic-section .container-fluid,
    .od-bento .container-fluid,
    .od-cta-section .container-fluid,
    .od-footer .container-fluid,
    .od-footer-subline .container-fluid {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .od-hero-carousel {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .od-hero-carousel .od-hero-carousel__swiper,
    .od-hero-carousel .od-hero-carousel__slide {
        width: 100%;
        max-width: 100%;
        flex-basis: 100%;
    }

    .od-hero-title {
        font-size: clamp(1.5rem, 8.8vw, 1.95rem);
        line-height: 1.05;
    }

    .od-textmedia__headline,
    .od-textpic-title,
    .od-bento-feature__title,
    .od-cta__title {
        font-size: clamp(1.35rem, 7.5vw, 1.8rem) !important;
        line-height: 1.12 !important;
    }

    .od-bento-mini h3 {
        font-size: 1.45rem;
    }

    .od-rental-static__bar {
        padding: 12px;
        gap: 12px;
    }

    .od-rental-static__field {
        font-size: 12px;
        letter-spacing: 0.45px;
        padding: 10px 12px;
        width: 100%;
    }

    .od-rental-static__field--date {
        display: flex;
        flex-wrap: nowrap;
        column-gap: 8px;
        row-gap: 0;
        align-items: center;
    }

    .od-rental-static__field--date .bi-calendar3 {
        margin-top: 0;
    }

    .od-rental-static__field--date input {
        min-width: 0;
        width: 0;
        flex: 1 1 0;
    }

    .od-rental-static__date-sep {
        display: inline;
    }

    .od-rental-static__cta {
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
        letter-spacing: 0.9px;
    }
}

@media (max-width: 459.98px) {
    .od-menu-toggle {
        font-size: 0.72rem;
        letter-spacing: 0.08em;
    }
}

.od-teaser {
    min-height: auto;
    overflow: hidden;
}

.od-teaser-large {
    min-height: auto;
}

.od-teaser .card-img {
    height: auto;
    transform: scale(1);
    transition: transform 450ms cubic-bezier(.2, .65, .2, 1), filter 450ms ease;
    will-change: transform;
    border-radius: 0 !important;
}

.od-teaser::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.16));
}

.od-teaser .card-img-overlay {
    position: absolute;
    z-index: 2;
    border-radius: 0 !important;
}

.od-teaser-cards__kicker {
    color: var(--color-primary-text);
}

.od-teaser-cards__link-label {
    border-color: var(--color-primary) !important;
}

.od-teaser-cards .od-teaser:hover .card-img {
    transform: scale(1.08);
    filter: contrast(1.05) saturate(1.05);
}

.od-teaserswiper .od-teaser:hover .card-img {
    transform: scale(1.08);
    filter: contrast(1.05) saturate(1.05);
}

@media (min-width: 992px) {
    .od-teaser-cards .row {
        align-items: stretch;
    }

    .od-teaser-cards .col-lg-8,
    .od-teaser-cards .col-lg-4 {
        min-height: 100%;
    }

    .od-teaser-cards .col-lg-4.d-grid {
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }

    .od-teaser-cards .col-lg-8 > a,
    .od-teaser-cards .col-lg-4 > a,
    .od-teaser-cards .col-lg-8 .od-teaser,
    .od-teaser-cards .col-lg-4 .od-teaser {
        height: 100%;
    }

    .od-teaser-cards .od-teaser .card-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.od-live-bar {
    background: rgba(18, 18, 18, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    transition: transform 240ms ease, opacity 240ms ease;
    will-change: transform, opacity;
}

.od-live-bar__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.od-live-bar__item .bi {
    font-size: 0.95rem;
    line-height: 1;
}

.od-live-bar.od-live-bar--hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.od-footer {
    margin-bottom: 0;
    background: var(--color-secondary);
    border-top: 1px solid var(--color-border);
    padding-top: clamp(4rem, 8vw, 7.5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.od-footer .row > div {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--color-muted);
}

.od-footer .frame,
.od-footer .frame-type-text,
.od-footer .od-textmedia {
    width: 100%;
    margin: 0;
    padding: 0;
}

.od-footer .od-textmedia.container {
    max-width: none;
}

.od-footer .od-textmedia > .row {
    margin: 0;
}

.od-footer .od-textmedia > .row > [class*="col-"] {
    padding: 0;
}

.od-footer .od-textmedia__panel {
    height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.od-footer .frame-type-text h1,
.od-footer .frame-type-text h2,
.od-footer .frame-type-text h3,
.od-footer .frame-type-text h4,
.od-footer .frame-type-text h5,
.od-footer .frame-type-text h6,
.od-footer .od-textmedia__headline {
    margin: 0 0 1.15rem;
    max-width: 100%;
    color: var(--color-primary);
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
}

.od-footer .od-textmedia__subheadline {
    margin: 0 0 0.65rem;
    color: var(--color-primary);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
}

.od-footer .frame-type-text p,
.od-footer .od-textmedia__body,
.od-footer .od-textmedia__body p {
    margin-bottom: 0.5rem;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.od-footer .frame-type-text ul,
.od-footer .od-textmedia__body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.od-footer .frame-type-text li,
.od-footer .od-textmedia__body li {
    margin: 0 0 0.5rem;
    padding: 0;
    color: var(--color-muted);
    font-weight: 600;
}

.od-footer .frame-type-text a,
.od-footer .od-textmedia__body a {
    color: var(--color-muted);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 180ms ease, border-color 180ms ease;
}

.od-footer .frame-type-text a:hover,
.od-footer .od-textmedia__body a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.od-footer .frame-type-text strong,
.od-footer .frame-type-text b,
.od-footer .od-textmedia__body strong,
.od-footer .od-textmedia__body b {
    color: var(--color-text);
    font-weight: 800;
}

.btn-danger {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.btn-danger:hover,
.btn-danger:focus {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #ffffff;
}

.py-lg-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.od-split-feature-title {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    letter-spacing: 0;
}

.od-split-feature-line-lg {
    background-color: var(--color-primary);
    width: 3rem;
    height: 0.5rem;
}

.od-split-feature-line-sm {
    width: 1.5rem;
    height: 0.5rem;
    background-color: var(--color-primary);
}

.od-split-feature-copy p {
    margin-bottom: 1rem;
}

.od-split-feature-link {
    transition: gap 250ms ease;
}

.od-split-feature-link:hover {
    gap: 2rem !important;
}

.od-split-feature-image-frame {
    aspect-ratio: 4 / 5;
    border-radius: 0 !important;
}

.od-split-feature-badge {
    background-color: var(--color-primary);
    left: -2.5rem;
    bottom: -2.5rem;
    padding: 2rem 2.25rem;
}

.od-split-feature-badge-value {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1;
}

.od-split-feature-badge-text {
    letter-spacing: 0;
    font-size: 0.65rem;
}

.od-split-feature-image-frame img,
.od-teaser-cards .card,
.od-teaser-cards .card-img,
.od-teaserswiper .card,
.od-teaserswiper .card-img {
    border-radius: 0 !important;
}

.od-textpic-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
}

.od-textpic-split--media-right .od-textpic-media {
    order: 2;
}

.od-textpic-split--media-right .od-textpic-content {
    order: 1;
}

.od-textpic-split--media-right .od-textpic-badge {
    right: auto;
    left: clamp(1rem, 2.5vw, 2rem);
}

.od-textpic-split--media-top,
.od-textpic-split--media-bottom {
    grid-template-columns: minmax(0, 1fr);
}

.od-textpic-split--media-bottom .od-textpic-media {
    order: 2;
}

.od-textpic-split--media-bottom .od-textpic-content {
    order: 1;
}

.od-textpic-media {
    position: relative;
}

.od-textpic-media-inner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
    gap: 1rem;
    border-radius: 2px;
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--af-outline-variant);
}

.od-textpic-figure {
    min-width: 0;
    margin: 0;
}

.od-textpic-caption {
    padding: 0.625rem 0.75rem;
    color: var(--color-text);
    font-size: 0.875rem;
    line-height: 1.4;
}

.od-textpic-media-inner::before,
.od-textpic-media-inner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 3rem;
    z-index: 2;
    pointer-events: none;
}

.od-textpic-media-inner::before {
    top: 0;
    background: linear-gradient(180deg, rgba(19, 19, 19, 0.72) 0%, rgba(19, 19, 19, 0) 100%);
}

.od-textpic-media-inner::after {
    bottom: 0;
    background: linear-gradient(0deg, rgba(19, 19, 19, 0.72) 0%, rgba(19, 19, 19, 0) 100%);
}

.od-textpic-section--plain-image .od-textpic-media-inner {
    border: 0;
    background: transparent;
}

.od-textpic-section--plain-image .od-textpic-media-inner::before,
.od-textpic-section--plain-image .od-textpic-media-inner::after {
    display: none;
}

.od-textpic-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.od-textpic-badge {
    position: absolute;
    right: clamp(1rem, 2.5vw, 2rem);
    bottom: clamp(-1.5rem, -1.5vw, -1rem);
    z-index: 20;
    min-width: 13rem;
    max-width: 18rem;
    padding: 0.9rem 1.1rem;
    border-radius: 2px;
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid var(--af-outline-variant);
    box-shadow: 0 10px 24px rgba(26, 28, 30, 0.12);
}

.od-textpic-badge-value,
.od-textpic-badge-text {
    margin: 0;
    color: var(--af-on-surface);
    font-size: 1.1rem;
    line-height: 1.35;
    font-weight: 600;
}

.od-textpic-badge-text {
    margin-top: 0.2rem;
    color: var(--af-on-surface-variant);
    font-size: 0.95rem;
    font-weight: 500;
}

.od-textpic-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.od-textpic-content--center {
    align-items: center;
    text-align: center;
}

.od-textpic-content--right {
    align-items: flex-end;
    text-align: right;
}

.od-textpic-content--center .od-textpic-copy,
.od-textpic-content--right .od-textpic-copy {
    width: 100%;
}

.od-textpic-title {
    margin: 0;
    color: var(--af-on-surface);
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
    line-height: 1.2;
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.od-textpic-subheader {
    margin: 0;
    color: var(--color-secondary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.od-textpic-copy,
.od-textpic-copy p {
    margin: 0;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.5;
}

.od-textpic-copy p + p {
    margin-top: 1rem;
}

.od-textpic-copy a,
.od-textmedia__body a {
    color: var(--color-primary-text);
    text-decoration-color: rgba(106, 1, 9, 0.42);
    text-decoration-thickness: 0.06em;
    text-underline-offset: 0.18em;
    transition: color 180ms ease, text-decoration-color 180ms ease;
}

.od-textpic-copy a:hover,
.od-textpic-copy a:focus-visible,
.od-textmedia__body a:hover,
.od-textmedia__body a:focus-visible {
    color: var(--color-primary-text);
    text-decoration-color: var(--color-primary-text);
}

.od-textpic-copy a.od-rte-button,
.od-textmedia__body a.od-rte-button {
    color: var(--color-on-primary);
    text-decoration: none;
}

.od-textpic-copy a.od-rte-button:hover,
.od-textpic-copy a.od-rte-button:focus-visible,
.od-textmedia__body a.od-rte-button:hover,
.od-textmedia__body a.od-rte-button:focus-visible {
    color: var(--color-on-primary);
    text-decoration: none;
}

.od-textpic-copy ul,
.od-textmedia__body ul {
    margin: 0.75rem 0 0;
    padding-left: 1.35rem;
    list-style: disc;
}

.od-textpic-copy li,
.od-textmedia__body li {
    padding-left: 0.15rem;
    min-height: 0;
    font-size: 1rem;
    line-height: 1.45;
    color: var(--color-text);
}

.od-textpic-copy li + li,
.od-textmedia__body li + li {
    margin-top: 0.45rem;
}

.od-textpic-cta {
    padding-top: 0.25rem;
}

.od-textpic-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 3.5rem;
    padding: 1rem 2rem;
    border-radius: 0;
    background: var(--af-primary);
    color: #ffffff;
    text-decoration: none;
}

.od-textpic-btn:hover,
.od-textpic-btn:focus-visible {
    background: var(--af-primary-container);
    color: #ffffff;
}

.od-textpic-btn .bi {
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .od-textpic-split {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .od-textpic-split--media-right .od-textpic-media,
    .od-textpic-split--media-right .od-textpic-content {
        order: initial;
    }

    .od-textpic-badge {
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .od-textpic-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .od-textpic-section + .od-textpic-section,
    .od-textpic-section + .od-heading-font--alex-brush > .od-textpic-section,
    .od-heading-font--alex-brush:has(> .od-textpic-section) + .od-textpic-section,
    .od-heading-font--alex-brush:has(> .od-textpic-section) + .od-heading-font--alex-brush > .od-textpic-section {
        padding-top: 0 !important;
    }

    .od-textpic-section > .container-fluid {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }

    .od-textpic-split {
        gap: 1.5rem;
    }

    .od-textpic-media-inner {
        border-width: 0.5rem;
    }

    .od-textpic-image {
        max-height: 30rem;
        object-fit: cover;
    }

    .od-textpic-content {
        gap: 1rem;
    }

    .od-textpic-title {
        font-size: clamp(2rem, 9vw, 2.5rem);
    }

    .od-textpic-btn {
        width: 100%;
        justify-content: center;
    }
}

.od-bento-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}

.od-bento-feature {
    grid-row: 1 / 3;
    position: relative;
    min-height: 34rem;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    overflow: hidden;
}

.od-bento-feature__hit {
    position: absolute;
    inset: 0;
    z-index: 5;
    text-indent: -9999px;
    overflow: hidden;
}

.od-bento-feature__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 420ms cubic-bezier(.2, .65, .2, 1);
}

.od-bento-feature__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.7rem;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(19, 19, 19, 0.06) 35%, rgba(19, 19, 19, 0.86) 100%);
}

.od-bento-feature__overlay > .bi {
    color: var(--color-secondary);
    font-size: 1.15rem;
    line-height: 1;
}

.od-bento-feature__title {
    margin: 0;
    color: var(--color-text);
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    text-transform: uppercase;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.1;
}

.od-bento-feature__text {
    margin: 0;
    color: var(--color-muted);
    max-width: 32rem;
    font-size: 1.05rem;
    line-height: 1.45;
}

.od-bento-feature__cta {
    align-self: flex-start;
    margin-top: 0.35rem;
    background: var(--color-primary);
    color: var(--color-on-primary);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.03em;
    font-size: 0.85rem;
    padding: 0.8rem 1.25rem;
}

.od-bento-feature__cta:hover {
    background: var(--color-primary-dark);
    color: var(--color-on-primary);
}

.od-bento-feature--linked {
    cursor: pointer;
}

.od-bento-feature--linked:hover .od-bento-feature__image,
.od-bento-feature--linked:focus-within .od-bento-feature__image {
    transform: scale(1.06);
}

.od-bento-right-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.od-bento-mini {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 1rem 1.1rem 1.2rem;
    min-height: 17rem;
}

.od-bento-mini__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-muted);
    margin-bottom: 0.9rem;
}

.od-bento-mini__head .bi {
    color: var(--color-secondary);
}

.od-bento-mini__head span {
    font-size: 0.8rem;
    color: #dfbfbc;
}

.od-bento-mini h3 {
    margin: 0 0 0.45rem;
    color: var(--color-text);
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 1.05;
}

.od-bento-mini p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.45;
}

.od-bento-concierge {
    background: rgba(106, 1, 9, 0.14);
    border: 1px solid var(--color-border-strong);
    min-height: 13rem;
    padding: 2rem 2.3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.7rem;
    transform: scale(1);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.od-bento-concierge__hit {
    position: absolute;
    inset: 0;
    z-index: 5;
    text-indent: -9999px;
    overflow: hidden;
}

.od-bento-concierge h3 {
    margin: 0;
    color: var(--color-text);
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    text-transform: uppercase;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.od-bento-concierge > .bi {
    color: var(--color-primary);
    font-size: 1.1rem;
    line-height: 1;
}

.od-bento-concierge p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.45;
}

.od-bento-concierge__cta {
    align-self: flex-start;
    margin-top: 0.4rem;
    background: var(--color-primary);
    color: var(--color-on-primary);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.03em;
    font-size: 0.82rem;
    padding: 0.8rem 1.2rem;
}

.od-bento-concierge__cta:hover {
    color: var(--color-on-primary);
    background: var(--color-primary-dark);
}

.od-bento-concierge--linked {
    cursor: pointer;
}

.od-bento-concierge--linked:hover,
.od-bento-concierge--linked:focus-within {
    transform: scale(1.015);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

@media (max-width: 991.98px) {
    .od-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .od-bento-feature {
        grid-row: auto;
        min-height: 26rem;
    }

    .od-bento-right-top {
        grid-template-columns: 1fr;
    }
}

.od-cta {
    position: relative;
    overflow: hidden;
    max-width: 68rem;
    margin-inline: auto;
    border-radius: 0.5rem;
    background: linear-gradient(180deg, var(--color-surface-dark), var(--color-surface-deep));
    min-height: clamp(17rem, 26vw, 22rem);
    border: 1px solid var(--color-border);
}

.od-cta__inner {
    position: relative;
    z-index: 3;
    width: min(100%, 40rem);
    min-height: clamp(17rem, 26vw, 22rem);
    padding: clamp(2rem, 4vw, 3.5rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.85rem;
}

.od-cta__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
    filter: grayscale(1) contrast(1.12);
}

.od-cta__bg-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(19, 19, 19, 0.96) 0%, rgba(19, 19, 19, 0.82) 56%, rgba(19, 19, 19, 0.58) 100%),
        linear-gradient(180deg, rgba(19, 19, 19, 0.12) 0%, rgba(19, 19, 19, 0.72) 100%);
}

.od-cta__kicker {
    margin: 0;
    color: var(--color-secondary);
    font-size: 0.82rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.od-cta__title {
    margin: 0;
    color: var(--color-text);
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.02;
    font-weight: 800;
    text-transform: uppercase;
    max-width: 34rem;
}

.od-cta__copy,
.od-cta__copy p {
    margin: 0;
    max-width: 33rem;
    color: var(--color-text);
    font-size: clamp(0.98rem, 1.2vw, 1.08rem);
    line-height: 1.45;
}

.od-cta__actions {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.55rem;
}

.od-cta__picker {
    min-height: 4.35rem;
    padding: 0.9rem 1.1rem;
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    display: grid;
    grid-template-columns: 1.25rem 1fr auto;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
}

.od-cta__picker-icon {
    color: var(--color-secondary);
    font-size: 1.1rem;
    line-height: 1;
}

.od-cta__picker-label {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
    font-weight: 700;
}

.od-cta__picker-caret {
    color: #dfbfbc;
    font-size: 0.95rem;
    line-height: 1;
}

.od-cta__picker:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text);
}

.od-cta__btn {
    min-height: 3.25rem;
    padding: 1rem 2.25rem;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: 800;
}

.od-cta__btn--primary {
    background: var(--color-primary);
    color: var(--color-on-primary);
    box-shadow: none;
}

.od-cta__btn--primary:hover {
    background: var(--color-primary-dark);
    color: var(--color-on-primary);
}

@media (max-width: 767.98px) {
    .od-cta {
        min-height: 0;
        border-radius: 0.35rem;
    }

    .od-cta__bg-shade {
        background: linear-gradient(180deg, rgba(19, 19, 19, 0.96) 0%, rgba(19, 19, 19, 0.9) 100%);
    }

    .od-cta__inner {
        width: 100%;
        min-height: 0;
        padding: 1.5rem 1.15rem 1.6rem;
    }

    .od-cta__actions,
    .od-cta__picker,
    .od-cta__btn {
        width: 100%;
    }

    .od-cta__btn {
        min-height: 3.35rem;
        font-size: 0.86rem;
    }
}

.od-product-teaser__swiper {
    overflow: visible;
}

.od-product-card {
    height: 100%;
    background: var(--color-surface);
    border-radius: 2px;
    border: 1px solid var(--color-border);
    box-shadow: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.od-product-card__media {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

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

.od-product-card__badge {
    position: absolute;
    left: 1rem;
    top: 0.7rem;
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
    background: var(--color-secondary);
    color: #002019;
    font-size: 0.75rem;
    line-height: 0.75rem;
    font-weight: 700;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.od-product-card__body {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 0.5rem;
    column-gap: 0.75rem;
}

.od-product-card__title {
    margin: 0;
    color: var(--color-text);
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.od-product-card__price {
    color: var(--color-primary-text);
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    text-align: right;
}

.od-product-card__price-note {
    grid-column: 2;
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: right;
    margin-top: -0.25rem;
}

.od-product-card__desc {
    grid-column: 1 / -1;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.6rem;
    min-height: 5.8rem;
}

.od-product-card__desc p {
    margin: 0;
}

.od-product-card__button {
    grid-column: 1 / -1;
    margin-top: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 0;
    background: var(--color-primary);
    color: var(--color-on-primary);
    text-decoration: none;
    min-height: 3rem;
}

.od-product-card__button:hover {
    background: var(--color-primary-dark);
    color: var(--color-on-primary);
}

.od-product-teaser__controls {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.od-product-teaser__prev,
.od-product-teaser__next {
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    background: var(--color-surface);
    color: var(--color-text);
    line-height: 1;
}

@media (max-width: 991.98px) {
    .od-navbar {
        background: rgba(19, 19, 19, 0.94);
    }

    .od-navbar.od-navbar--on-top {
        background: rgba(19, 19, 19, 0.72);
    }

    .od-navbar__logo {
        max-height: 2rem;
        max-width: min(58vw, 10rem);
    }

    .od-navbar.od-navbar--on-top .od-navbar__logo {
        max-height: 2rem;
        max-width: min(72vw, 14rem);
    }

    .od-hero {
        min-height: 68vh;
    }

    .od-hero-carousel .od-hero-carousel__swiper,
    .od-hero-carousel .swiper-wrapper,
    .od-hero-carousel .od-hero-carousel__slide {
        min-height: 68vh;
    }

    .od-hero-content h1 {
        font-size: clamp(2.1rem, 8vw, 3.6rem);
    }

    .py-lg-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}


.container{
    max-width: 1200px;
}

/*Teaserswiper css*/
.od-teaserswiper {
    --swiper-theme-color: var(--color-primary);
}

.od-teaserswiper .swiper {
    overflow: hidden;
}

.od-teaserswiper-feature,
.od-teaserswiper-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.od-teaserswiper-feature__image,
.od-teaserswiper-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms cubic-bezier(.2, .65, .2, 1), filter 450ms ease;
}

.od-teaserswiper-feature {
    min-height: 520px;
}

.od-teaserswiper-feature picture,
.od-teaserswiper-card picture {
    display: block;
    height: 100%;
    overflow: hidden;
}

.od-teaserswiper-feature__content,
.od-teaserswiper-card__content {
    height: 100%;
    padding: clamp(2rem, 4vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.od-teaserswiper-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.od-teaserswiper-card picture {
    aspect-ratio: 4 / 3;
}

.od-teaserswiper-card__content {
    flex: 1;
    justify-content: space-between;
    min-height: 280px;
}

.od-teaserswiper__kicker {
    color: var(--color-secondary);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.od-teaserswiper__headline {
    color: var(--color-text);
    font-size: clamp(1.75rem, 3vw, 3rem);
    font-weight: 900;
    line-height: .95;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.od-teaserswiper__text {
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.od-teaserswiper__link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-text);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: gap 250ms ease, color 250ms ease;
}

.od-teaserswiper__link:hover {
    gap: 1.5rem;
    color: var(--color-primary-text);
}

.od-teaserswiper__link-icon {
    color: var(--color-secondary);
    font-size: 1.25rem;
    line-height: 1;
}

.od-teaserswiper-card:hover .od-teaserswiper-card__image,
.od-teaserswiper-feature:hover .od-teaserswiper-feature__image {
    transform: scale(1.06);
    filter: contrast(1.05) saturate(1.05);
}

.od-teaserswiper__nav {
    color: var(--color-primary);
}

@media (max-width: 767.98px) {
    .od-teaserswiper-feature {
        min-height: auto;
    }

    .od-teaserswiper-feature picture {
        aspect-ratio: 4 / 3;
    }

    .od-teaserswiper-feature__content,
    .od-teaserswiper-card__content {
        padding: 2rem;
    }
}

.od-teaserswiper__next,
.od-teaserswiper__prev {
    position: absolute;
    color: #e6f0ff;
    background: transparent;
    border: 0;
    border-radius: 0;
    width: auto;
    height: auto;
    padding: 0;
    margin: auto;
    --swiper-navigation-size: 2.6rem;
}

.od-teaserswiper__next:hover,
.od-teaserswiper__prev:hover {
    color: #ffffff;
    background: transparent;
    border: 0;
}

.od-teaserswiper__next::after,
.od-teaserswiper__prev::after {
    font-size: 2.6rem !important;
    font-weight: 900;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.od-video-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.od-video-showcase {
    display: grid;
    gap: 1.75rem;
}

.od-video-showcase__intro {
    max-width: 44rem;
    display: grid;
    gap: 0.6rem;
}

.od-video-showcase__eyebrow {
    margin: 0;
    color: var(--color-secondary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.od-video-showcase__title {
    margin: 0;
    color: var(--color-text);
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    line-height: 0.98;
    font-weight: 900;
    text-transform: uppercase;
}

.od-video-showcase__text {
    margin: 0;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.od-video-showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.od-video-showcase__rail {
    display: contents;
}

.od-video-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    background:
        radial-gradient(circle at top right, rgba(106, 1, 9, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(26, 26, 26, 0.95), rgba(14, 14, 14, 0.98));
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.od-video-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--color-accent), rgba(188, 19, 254, 0));
    opacity: 0.85;
    pointer-events: none;
}

.od-video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--color-surface-deep);
}

.od-video-frame iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.od-video-card__body {
    display: grid;
    gap: 0.55rem;
    padding: 1.05rem 1.1rem 1.15rem;
}

.od-video-card__meta {
    margin: 0;
    color: var(--color-secondary);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.od-video-card__title {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    line-height: 1.2;
    font-weight: 800;
}

.od-video-card__text {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

@media (max-width: 991.98px) {
    .od-video-showcase__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .od-video-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .od-video-showcase {
        gap: 1.15rem;
    }

    .od-video-showcase__grid,
    .od-video-showcase__rail {
        gap: 1rem;
    }

    .od-video-showcase__grid {
        grid-template-columns: 1fr;
    }

    .od-video-showcase__title {
        font-size: clamp(1.7rem, 9vw, 2.45rem);
    }

.od-video-card__body {
    padding: 0.95rem 1rem 1rem;
    }
}

.od-brand-slider {
    overflow: hidden;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background: transparent;
}

.od-brand-slider__header {
    margin-bottom: 2rem;
    text-align: center;
}

.od-brand-slider__title {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    line-height: 1.2;
    font-weight: 800;
}

.od-brand-slider__subtitle {
    max-width: 48rem;
    margin: 0.75rem auto 0;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.55;
}

.od-brand-slider__viewport {
    width: 100%;
    overflow: hidden;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.od-brand-slider__track {
    display: flex;
    width: max-content;
    gap: clamp(1.5rem, 4vw, 4rem);
    animation: od-brand-slider-marquee 56s linear infinite;
    will-change: transform;
}

.od-brand-slider__viewport:hover .od-brand-slider__track {
    animation-play-state: paused;
}

.od-brand-slider__item {
    flex: 0 0 auto;
    width: clamp(180px, 20vw, 320px);
    min-height: 144px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
}

.od-brand-slider__link {
    display: flex;
    width: 100%;
    min-height: inherit;
    align-items: center;
    justify-content: center;
}

.od-brand-slider__image {
    display: block;
    width: 100%;
    max-height: 144px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.72;
    transition: filter 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.od-brand-slider__item:hover .od-brand-slider__image {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-2px);
}

@keyframes od-brand-slider-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-50% - (clamp(1.5rem, 4vw, 4rem) / 2)), 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .od-brand-slider__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .od-brand-slider {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .od-brand-slider__header {
        margin-bottom: 1.5rem;
    }

    .od-brand-slider__item {
        width: clamp(160px, 58vw, 280px);
        min-height: 128px;
        padding: 0.5rem 0.7rem;
    }

    .od-brand-slider__image {
        max-height: 104px;
    }
}

.od-rental-static {
    width: 100%;
}

.od-rental-static__bar {
    width: 100%;
    padding: 20px;
    margin: 0;
    box-sizing: border-box;
    background: var(--color-surface);
    outline: 1px var(--color-border) solid;
    outline-offset: -1px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 16px;
    align-items: end;
}

.od-rental-static__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    max-width: 100%;
}

.od-rental-static__label {
    color: var(--color-secondary);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.6px;
}

.od-rental-static__field {
    min-height: 40px;
    box-sizing: border-box;
    background: var(--color-surface-dark);
    outline: 1px var(--color-border) solid;
    outline-offset: -1px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.7px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.od-rental-static__field .bi {
    color: var(--color-secondary);
    font-size: 16px;
    line-height: 1;
}

.od-rental-static__field input,
.od-rental-static__field select {
    flex: 1 1 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 0;
}

.od-rental-static__field input[type="number"] {
    text-transform: none;
}

.od-rental-static__field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 22px;
}

.od-rental-static__field select::-ms-expand {
    display: none;
}

.od-rental-static__field--select {
    position: relative;
}

.od-rental-static__field--select::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid #8b716e;
    border-bottom: 2px solid #8b716e;
    transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
}

.od-rental-static__field--custom-select {
    position: relative;
    overflow: visible;
    padding-right: 36px;
    padding-left: 40px;
    cursor: pointer;
}

.od-rental-static__select-trigger {
    display: block;
    width: 100%;
    min-width: 0;
    background: transparent;
    border: 0;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    text-align: left;
    padding: 0;
    cursor: pointer;
}

.od-rental-static__field--custom-select .bi {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.od-rental-static__field--custom-select::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid #8b716e;
    border-bottom: 2px solid #8b716e;
    transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
    transition: transform 140ms ease;
}

.od-rental-static__field--custom-select.is-open::after {
    transform: translateY(-40%) rotate(-135deg);
}

.od-rental-static__select-menu {
    list-style: none;
    margin: 0;
    padding: 6px 0;
    position: absolute;
    left: -1px;
    right: -1px;
    top: calc(100% + 8px);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    display: none;
    z-index: 1200;
}

.od-rental-static__field--custom-select.is-open .od-rental-static__select-menu {
    display: block;
}

.od-rental-static__select-menu li {
    color: var(--color-text);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 10px 14px;
    cursor: pointer;
}

.od-rental-static__select-menu li:hover,
.od-rental-static__select-menu li[aria-selected="true"] {
    background: rgba(148, 211, 192, 0.14);
    color: var(--color-secondary);
}

/* Flatpickr dark theme override */
.flatpickr-calendar {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.42);
    color: var(--color-text);
}

.flatpickr-calendar.od-flatpickr-dark {
    background: var(--color-surface);
    color: var(--color-text);
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year,
.flatpickr-weekdays,
.flatpickr-weekday {
    background: var(--color-surface);
    color: var(--color-text) !important;
    fill: var(--color-text);
}

.flatpickr-calendar .flatpickr-rContainer,
.flatpickr-calendar .flatpickr-days,
.flatpickr-calendar .dayContainer {
    background: var(--color-surface);
}

.flatpickr-calendar .flatpickr-prev-month svg,
.flatpickr-calendar .flatpickr-next-month svg {
    fill: var(--color-text);
}

.flatpickr-day {
    color: var(--color-text);
    border-color: transparent;
}

.flatpickr-day.today {
    border-color: var(--color-secondary);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #002019;
}

.flatpickr-day:hover {
    background: rgba(148, 211, 192, 0.2);
    border-color: rgba(148, 211, 192, 0.2);
}

.flatpickr-calendar .flatpickr-time {
    border-top: 1px solid var(--color-border);
}

.flatpickr-calendar .flatpickr-time input,
.flatpickr-calendar .flatpickr-time .flatpickr-am-pm {
    color: var(--color-text);
}

.od-rental-static__field--date {
    gap: 10px;
}

.od-rental-static__field--date input {
    min-width: 0;
    width: 0;
    flex: 1 1 0;
}

.od-rental-static__date-sep {
    color: #dfbfbc;
    font-weight: 700;
}

.od-rental-static__cta {
    min-height: 40px;
    box-sizing: border-box;
    padding: 0 30px;
    border: 0;
    background: var(--color-secondary);
    box-shadow: none;
    color: #002019;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    white-space: nowrap;
    min-width: 0;
    max-width: 100%;
}

@media (max-width: 991.98px) {
    .od-rental-static__bar {
        grid-template-columns: 1fr;
    }

    .od-rental-static__cta {
        width: 100%;
    }

    .od-rental-static__field--date {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .od-rental-static__field--date input {
        flex: 1 1 calc(50% - 8px);
    }
}


.od-teaserswiper__swiper {
    width: 100%;
    overflow: hidden;
}

.od-teaserswiper .swiper-wrapper {
    display: flex;
}

.od-teaserswiper .swiper-slide {
    flex-shrink: 0;
    height: auto;
}
.od-textmedia__headline {
    color: var(--color-text);
    font-size: clamp(2.25rem, 4.5vw, 3rem);
    line-height: 1;
    text-transform: uppercase;
}

.od-textmedia__subheadline {
    color: var(--color-secondary);
    letter-spacing: .12em;
    font-size: .78rem;
}

.od-textmedia__body {
    color: var(--color-text);
    font-size: 1.125rem;
    line-height: 1.625;
}

.od-textmedia__panel {
    background: transparent;
    padding: clamp(2rem, 4vw, 6rem);
    min-height: 100%;
}

.od-textmedia__media-panel {
    min-height: 100%;
}

.od-textmedia__media-panel .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.od-textmedia__media-panel .col {
    padding: 0;
}

.od-textmedia__cta {
    letter-spacing: 0.1em;
    line-height: 1.25rem;
    border-radius: 0;
    color: #ffffff;
}

.od-textmedia__cta:hover,
.od-textmedia__cta:focus-visible {
    color: #ffffff;
}

.od-textmedia__figure {
    overflow: hidden;
    height: 100%;
}

.od-textmedia__image {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .12);
    border-radius: 0 !important;
}

.od-textmedia--split-feature .od-textmedia__image {
    aspect-ratio: 4 / 5;
}

.od-textmedia__media-panel .od-textmedia__image {
    aspect-ratio: 16 / 9;
}

.od-textmedia__media-wrap {
    width: min(100%, 840px);
}

.od-textmedia__split--beside .od-textmedia__media-panel .od-textmedia__image {
    aspect-ratio: 4 / 5;
}

@media (min-width: 992px) {
    .od-textmedia__split--beside > [class*="col-"] {
        display: flex;
    }

    .od-textmedia__split--beside .od-textmedia__gallery,
    .od-textmedia__split--beside .od-textmedia__media-panel,
    .od-textmedia__split--beside .od-textmedia__figure,
    .od-textmedia__split--beside .od-textmedia__media-panel > .row,
    .od-textmedia__split--beside .od-textmedia__media-panel > .row > .col {
        height: 100%;
    }

    .od-textmedia__split--beside .od-textmedia__media-panel > .row {
        margin-bottom: 0 !important;
    }

    .od-textmedia__split--beside .od-textmedia__image {
        aspect-ratio: auto !important;
        height: 100%;
        min-height: 100%;
    }
}

.od-textmedia__step--text {
    position: relative;
    z-index: 2;
}

.od-textmedia__step--media {
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .od-textmedia__step--text {
        margin-left: -2.75rem;
    }

    .od-textmedia__step--media {
        margin-right: -2.75rem;
    }
}

@media (min-width: 1200px) {
    .od-textmedia__step--text {
        margin-left: -4rem;
    }

    .od-textmedia__step--media {
        margin-right: -4rem;
    }
}

.od-textmedia__caption {
    color: var(--color-muted);
}

.od-textmedia picture,
.od-textmedia .od-textmedia__figure {
    border-radius: 0 !important;
}

.od-table-ce {
    color: var(--color-text);
}

.od-table-ce__panel {
    position: relative;
    overflow: hidden;
    padding: clamp(1.25rem, 3vw, 2rem);
    background:
        linear-gradient(135deg, rgba(106, 1, 9, 0.08), rgba(106, 1, 9, 0) 34%),
        linear-gradient(180deg, var(--color-surface) 0%, var(--color-surface-dark) 100%);
    border: 1px solid var(--color-border);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.24);
}

.od-table-ce__panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), rgba(188, 19, 254, 0));
    pointer-events: none;
}

.od-table-ce__header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.od-table-ce__kicker {
    margin: 0 0 0.45rem;
    color: var(--color-secondary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.od-table-ce__title {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(1.5rem, 2.6vw, 2.3rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.od-table-ce__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--color-border);
}

.od-table-ce__scroll:focus {
    outline: 3px solid rgba(106, 1, 9, 0.24);
    outline-offset: 3px;
}

.od-table-ce__scroll--mobile {
    display: none;
}

.od-table-ce__table {
    width: 100%;
    min-width: 640px;
    margin: 0;
    border-collapse: collapse;
    color: var(--color-text);
    font-size: 0.96rem;
    line-height: 1.55;
}

.od-table-ce__table caption {
    caption-side: top;
    padding: 0.95rem 1rem 0.75rem;
    color: var(--color-muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
}

.od-table-ce__table th,
.od-table-ce__table td {
    padding: 0.9rem 1rem;
    vertical-align: top;
    border-bottom: 1px solid var(--color-border);
}

.od-table-ce__table thead th {
    color: var(--color-on-primary);
    background: var(--color-primary);
    border-bottom-color: rgba(106, 1, 9, 0.42);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    line-height: 1.25;
    text-transform: uppercase;
}

.od-table-ce__table tbody th {
    color: var(--color-text);
    background: rgba(106, 1, 9, 0.1);
    font-weight: 800;
}

.od-table-ce__table tbody td {
    color: var(--color-muted);
}

.od-table-ce__table tbody tr:nth-child(even) th,
.od-table-ce__table tbody tr:nth-child(even) td {
    background-color: rgba(255, 255, 255, 0.035);
}

.od-table-ce__table tbody tr:hover th,
.od-table-ce__table tbody tr:hover td {
    background-color: rgba(106, 1, 9, 0.08);
}

.od-table-ce__table tbody tr:last-child th,
.od-table-ce__table tbody tr:last-child td {
    border-bottom: 0;
}

.od-indexed-search {
    width: min(100%, 68rem);
    margin: 0 auto;
    padding: clamp(3rem, 7vw, 6rem) 1rem;
}

.od-indexed-search__header {
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.od-indexed-search__eyebrow {
    margin: 0 0 0.65rem;
    color: var(--color-secondary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.od-indexed-search__title {
    margin: 0;
    color: var(--color-text);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.05;
}

.od-indexed-search__box {
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    padding: clamp(1rem, 3vw, 1.5rem);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
}

.od-indexed-search__form-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
}

.od-indexed-search__input {
    min-height: 3.25rem;
    width: 100%;
    border: 1px solid var(--color-taupe);
    background: var(--color-surface);
    color: var(--color-text);
    padding: 0.8rem 1rem;
}

.od-indexed-search__input::placeholder {
    color: var(--color-muted);
    opacity: 1;
}

.od-indexed-search__input:focus {
    outline: 0;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(106, 1, 9, 0.18);
}

.od-indexed-search__submit {
    min-height: 3.25rem;
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    color: var(--color-on-primary);
    padding: 0.8rem 1.5rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.od-indexed-search__submit:hover,
.od-indexed-search__submit:focus-visible {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-on-primary);
}

.od-indexed-search__submit:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

.od-indexed-search__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.od-indexed-search__meta strong {
    color: var(--color-text);
}

.od-indexed-search__category,
.od-indexed-search__section-head h2 {
    color: var(--color-text);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-weight: 400;
}

.od-indexed-search__sections {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.od-indexed-search .od-indexed-search__sections a {
    border: 1px solid var(--color-taupe);
    color: var(--color-text);
    padding: 0.45rem 0.65rem;
    text-decoration: none;
}

.od-indexed-search .od-indexed-search__sections a:hover,
.od-indexed-search .od-indexed-search__sections a:focus-visible {
    border-color: var(--color-secondary);
    background: var(--color-surface-dark);
    color: var(--color-text);
}

.od-indexed-search .od-indexed-search__sections a:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

.od-indexed-search__list {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.od-indexed-search-result {
    padding: clamp(1rem, 3vw, 1.35rem);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
}

.od-indexed-search-result__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.od-indexed-search-result__title {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.25;
}

.od-indexed-search .od-indexed-search-result__title a {
    color: var(--color-text);
    text-decoration-color: rgba(239, 92, 39, 0.55);
    text-underline-offset: 0.18em;
}

.od-indexed-search .od-indexed-search-result__title a:hover,
.od-indexed-search .od-indexed-search-result__title a:focus-visible {
    color: var(--color-secondary);
    text-decoration-color: var(--color-primary);
}

.od-indexed-search .od-indexed-search-result__title a:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

.od-indexed-search-result__number,
.od-indexed-search-result__rating {
    color: var(--color-secondary);
    font-size: 0.85rem;
    font-weight: 800;
}

.od-indexed-search-result__description {
    margin: 0.85rem 0 0;
    color: var(--color-muted);
    line-height: 1.6;
}

.od-indexed-search-result__description .tx-indexedsearch-redMarkup {
    color: var(--color-text);
    background: rgba(239, 92, 39, 0.16);
    border-radius: 0.15rem;
    padding: 0.02rem 0.18rem;
    font-weight: 800;
}

.od-indexed-search__empty {
    padding: 1.25rem;
    background: var(--color-surface);
    border: 1px solid var(--color-taupe);
    color: var(--color-muted);
}

.od-indexed-search-pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.od-indexed-search .od-indexed-search-pagination a.tx-indexedsearch-page-selector {
    display: inline-flex;
    min-width: 2.35rem;
    min-height: 2.35rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-taupe);
    color: var(--color-text);
    padding: 0.45rem 0.7rem;
    text-decoration: none;
}

.od-indexed-search .od-indexed-search-pagination a.tx-indexedsearch-page-selector:hover {
    background: var(--color-surface);
    border-color: var(--color-secondary);
    color: var(--color-text);
}

.od-indexed-search .od-indexed-search-pagination a.tx-indexedsearch-page-selector:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

.od-indexed-search .od-indexed-search-pagination a.tx-indexedsearch-page-selector.is-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text);
}

@media (max-width: 767.98px) {
    .od-indexed-search__form-main {
        grid-template-columns: 1fr;
    }

    .od-indexed-search__submit {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .od-table-ce__panel {
        padding: 1rem;
    }

    .od-table-ce__scroll--desktop {
        display: none;
    }

    .od-table-ce__scroll--mobile {
        display: block;
        overflow-x: visible;
    }

    .od-table-ce__table {
        min-width: 560px;
        font-size: 0.88rem;
    }

    .od-table-ce__table--transposed {
        width: 100%;
        min-width: 0;
        table-layout: fixed;
    }

    .od-table-ce__table th,
    .od-table-ce__table td {
        padding: 0.75rem 0.7rem;
        hyphens: auto;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .od-table-ce__table.od-table-ce__table--transposed tbody tr > th:first-child {
        width: 36%;
        color: var(--color-on-primary);
        background: var(--color-primary) !important;
        background-color: var(--color-primary) !important;
    }

    .od-table-ce__table--transposed tbody td {
        width: auto;
        font-size: 0.84rem;
    }
}

@media (max-width: 399.98px) {
    .od-table-ce__scroll--mobile {
        overflow-x: auto;
    }

    .od-table-ce__table--transposed {
        width: 420px;
        min-width: 420px;
    }
}

.icc-footer {
    text-align: center;
    margin-top: 0.5rem;
}

.icc-footer img {
    filter: brightness(0) invert(1);
}

@media (max-width: 991.98px) {
    .od-textmedia {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* Quick booking banner */
.quick-book {
    position: relative;
    z-index: 10;
    padding: clamp(1rem, 2vw, 1.5rem) max(1rem, env(safe-area-inset-left, 0px));
}

.quick-book__inner {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: clamp(1rem, 2.2vw, 1.35rem);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
}

.quick-book__form {
    display: grid;
    grid-template-columns: minmax(8rem, 0.9fr) minmax(9rem, 1fr) minmax(9rem, 1fr) minmax(10rem, 1fr) minmax(8rem, auto) minmax(10rem, 0.95fr);
    align-items: center;
    gap: 0.75rem;
}

.quick-book__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 2.75rem;
    color: var(--color-text);
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    white-space: nowrap;
}

.quick-book__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 2px;
    background: rgba(148, 211, 192, 0.16);
    color: var(--color-secondary);
}

.quick-book input,
.quick-book select {
    width: 100%;
    min-width: 0;
    height: 2.75rem;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    background: var(--color-surface-dark);
    color: var(--color-text);
    padding: 0.625rem 0.75rem;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: none;
    outline: 0;
}

.quick-book input::placeholder {
    color: var(--color-muted);
    opacity: 1;
}

.quick-book input:focus,
.quick-book select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(106, 1, 9, 0.18);
}

.quick-book select option {
    background: var(--color-surface);
    color: var(--color-text);
}

.quick-book__promo-toggle {
    min-width: auto;
    height: 2.75rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-muted);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 0.16em;
    box-shadow: none;
    cursor: pointer;
}

.quick-book__promo-toggle:hover,
.quick-book__promo-toggle:focus {
    color: var(--color-primary-text);
}

.quick-book__promo-toggle[hidden],
.quick-book__promo[hidden] {
    display: none !important;
}

.quick-book__promo {
    display: flex;
    min-width: 0;
}

.quick-book__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 2.75rem;
    min-width: 0;
    border: 1px solid var(--color-primary);
    border-radius: 0;
    background: var(--color-primary);
    color: var(--color-on-primary);
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.quick-book__submit:hover,
.quick-book__submit:focus {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-on-primary);
}

@media (max-width: 1199.98px) {
    .quick-book__form {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .quick-book__badge,
    .quick-book__submit {
        grid-column: span 3;
    }
}

@media (max-width: 767.98px) {
    .quick-book__form {
        grid-template-columns: 1fr;
    }

    .quick-book__badge,
    .quick-book__submit {
        grid-column: auto;
    }

    .quick-book__badge {
        white-space: normal;
    }
}

/* Hotel Troschana design system (Figma nodes 6:2, 6:190, 6:387) */
body {
    overflow-x: hidden;
}

body,
main {
    background: var(--color-surface-dark);
}

main > .frame:not(.frame-type-form_formframework),
header > .frame {
    margin: 0;
}

.container,
.od-navbar__inner,
.od-hero-content,
.od-product-teaser > .container-fluid,
.od-teaser-cards > .container-fluid,
.od-textpic-section > .container-fluid,
.od-footer > .container-fluid,
.od-footer-subline > .container-fluid {
    max-width: var(--content-max);
    margin-inline: auto;
}

.od-main--with-navbar-margin {
    margin-top: 0;
    padding-top: 5rem;
}

.od-navbar {
    min-height: 4.5rem;
    padding-block: 0 !important;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(106, 1, 9, 0.08);
    backdrop-filter: blur(6px);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.od-navbar.od-navbar--top-solid,
.od-navbar.od-navbar--top-solid.od-navbar--on-top,
.od-navbar.od-navbar--on-top {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: rgba(106, 1, 9, 0.1);
}

.od-navbar__inner {
    min-height: 4.5rem;
}

.od-navbar .navbar-brand {
    flex: 0 0 auto;
    margin-right: clamp(1.5rem, 4vw, 4rem);
}

.od-navbar__actions {
    display: flex;
    flex: 0 1 auto;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 2rem);
    min-width: 0;
}

.od-navbar .od-menu-toggle,
.od-navbar.od-navbar--on-top .od-menu-toggle {
    color: var(--color-primary);
}

.od-navbar__logo,
.od-navbar.od-navbar--on-top .od-navbar__logo {
    width: auto;
    height: 3.75rem;
    max-width: 10rem;
    max-height: 3.75rem;
    filter: none;
}

.od-desktop-nav {
    flex: 1 1 auto;
    justify-content: center;
    gap: clamp(1rem, 2.5vw, 2rem);
}

.od-navbar .od-desktop-nav .nav-link {
    position: relative;
    padding: 0.65rem 0;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1;
    white-space: nowrap;
}

.od-navbar .od-desktop-nav .nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.od-navbar .od-desktop-nav .nav-link:hover,
.od-navbar .od-desktop-nav .nav-link.active {
    color: var(--color-primary-text);
}

.od-navbar .od-desktop-nav .nav-link:hover::after,
.od-navbar .od-desktop-nav .nav-link.active::after {
    transform: scaleX(1);
}

.od-navbar-search {
    position: static;
    flex: 1 1 auto;
    margin-left: 0 !important;
}

.od-navbar-search__collapse {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.od-navbar-search__collapse.collapsing,
.od-navbar-search__collapse.show {
    width: min(28vw, 22rem);
    padding: 0;
    border-width: 0;
    box-shadow: none;
}

.od-navbar-search__form {
    width: 100%;
}

.od-navbar-search__toggle,
.od-navbar-search__submit {
    color: var(--color-primary);
}

.od-navbar-search__input {
    border-color: var(--color-border-strong);
    border-right: 0;
    background: #ffffff;
    color: var(--color-text);
}

.od-navbar-search__input::placeholder {
    color: var(--color-muted);
    opacity: 1;
}

.od-navbar-search__submit,
.od-navbar-search__submit:hover,
.od-navbar-search__submit:focus-visible {
    border-color: var(--color-border-strong);
    background: #ffffff;
    color: var(--color-primary);
}

.od-navbar-search__toggle:focus-visible,
.od-navbar-search__submit:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.od-navbar-book,
.od-menu-toggle {
    flex: 0 0 auto;
}

.od-navbar-book {
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1;
    text-decoration: none;
    border-radius: 0.25rem;
    text-transform: none;
    white-space: nowrap;
}

.od-navbar-book:hover,
.od-navbar-book:focus-visible {
    background: var(--color-primary-dark);
    color: #ffffff;
}

.od-navbar-quickmenu {
    position: static;
    flex: 0 1 auto;
    gap: clamp(1rem, 2vw, 2rem);
    min-width: 0;
    transform: none;
}

.od-navbar-quickmenu__item,
.od-navbar-quickmenu__item--text {
    width: auto;
    min-width: 2.25rem;
    height: 2.75rem;
    padding: 0;
}

.od-navbar-quickmenu__icon,
.od-navbar.od-navbar--on-top .od-navbar-quickmenu__icon {
    width: 1.25rem;
    height: 1.25rem;
    filter: sepia(1) saturate(8) hue-rotate(320deg) brightness(0.42);
}

.od-navbar-quickmenu__text,
.od-navbar.od-navbar--on-top .od-navbar-quickmenu__text {
    color: var(--color-muted);
    font-size: 0.875rem;
}

.od-navbar-quickmenu__label {
    top: calc(100% + 0.4rem);
    right: auto;
    left: 50%;
    border-radius: 0;
    background: var(--color-surface-deep);
    color: #ffffff;
    transform: translate(-50%, -0.25rem);
}

.od-navbar-quickmenu__item:hover .od-navbar-quickmenu__label,
.od-navbar-quickmenu__item:focus-visible .od-navbar-quickmenu__label {
    transform: translate(-50%, 0);
}

.od-navbar.od-navbar--on-top .od-menu-toggle-btn .navbar-toggler-icon {
    filter: sepia(1) saturate(8) hue-rotate(320deg) brightness(0.42);
}

.od-offcanvas-nav {
    background: var(--color-surface-deep);
}

.od-offcanvas-nav .offcanvas-title {
    color: #ffffff;
}

.od-offcanvas-nav .nav-link,
.od-offcanvas-nav .od-subnav-list .nav-link {
    color: var(--color-sand);
}

.od-offcanvas-nav .nav-link:hover,
.od-offcanvas-nav .nav-link:focus-visible,
.od-offcanvas-nav .nav-link.active,
.od-offcanvas-nav .nav-link[aria-current="page"],
.od-offcanvas-nav .od-subnav-list .nav-link:hover,
.od-offcanvas-nav .od-subnav-list .nav-link:focus-visible,
.od-offcanvas-nav .od-subnav-list .nav-link.active,
.od-offcanvas-nav .od-subnav-list .nav-link[aria-current="page"] {
    color: var(--color-primary-text);
}

.od-offcanvas-quickmenu {
    display: grid;
    gap: 0.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.od-offcanvas-quickmenu__label {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.od-offcanvas-quickmenu__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--color-sand);
    font-weight: 600;
    text-decoration: none;
}

.od-offcanvas-quickmenu__item:hover,
.od-offcanvas-quickmenu__item:focus-visible {
    color: var(--color-primary-text);
}

.od-offcanvas-quickmenu__icon {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.od-hero,
.od-hero-carousel .od-hero-carousel__swiper,
.od-hero-carousel .swiper-wrapper,
.od-hero-carousel .od-hero-carousel__slide {
    min-height: min(57.5rem, 100svh);
}

.od-hero-image {
    transform: none;
}

.od-hero-overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.12) 52%, rgba(0, 0, 0, 0.3) 100%),
        rgba(0, 0, 0, 0.08);
}

.od-hero-content {
    min-height: min(57.5rem, 100svh);
}

.od-hero-content__inner {
    justify-content: center;
}

.od-hero-glass-card {
    width: min(100%, 56rem);
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.od-hero-pill {
    min-height: 0;
    padding: 0;
    color: var(--color-primary);
    font-size: 0.875rem;
    letter-spacing: 0.2em;
}

.od-hero-title,
.od-hero-title strong,
.od-hero-title em,
.od-hero-title span {
    max-width: 56rem;
    color: #ffffff;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(3rem, 5vw, 4rem);
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.od-hero-copy {
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
}

.od-hero-actions {
    justify-content: center;
    padding-top: 1rem;
}

.od-hero-btn {
    min-height: 3rem;
    padding: 1rem 2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 0.25rem;
    text-transform: none;
}

.od-hero-btn--primary {
    background: #ffffff;
    color: var(--color-primary);
}

.od-hero-btn--primary:hover {
    background: var(--color-primary);
    color: #ffffff;
}

.od-hero-btn--secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.od-hero-btn--secondary:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #ffffff;
}

.py-lg-6 {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}

.od-textmedia,
.od-textpic-section,
.od-teaser-cards,
.od-product-teaser,
.od-teaserswiper,
.od-brand-slider,
.od-table-ce {
    color: var(--color-text);
}

.od-textmedia__panel {
    padding: clamp(2rem, 5vw, 5rem);
}

.od-textmedia__headline,
.od-textpic-title,
.od-bento-feature__title,
.od-cta__title,
.od-brand-slider__title,
.od-table-ce__title,
.od-teaserswiper__headline {
    color: var(--color-taupe);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    text-transform: none;
}

.od-textmedia__headline,
.od-textpic-title {
    font-size: clamp(2.25rem, 4vw, 3rem);
}

.od-textmedia__subheadline,
.od-textpic-subheader,
.od-teaserswiper__kicker,
.od-table-ce__kicker,
.od-cta__kicker {
    color: var(--color-primary-text);
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.od-textmedia__body,
.od-textmedia__body p,
.od-textpic-copy,
.od-textpic-copy p,
.od-textpic-copy li,
.od-textmedia__body li {
    color: var(--color-muted);
    font-size: 1.0625rem;
    line-height: 1.625;
}

.od-textmedia__image,
.od-textpic-image {
    box-shadow: none;
}

.od-textpic-media-inner {
    border: 0;
    border-radius: 0.5rem;
    background: var(--color-mist);
    box-shadow: var(--shadow-soft);
}

.od-textpic-media-inner::before,
.od-textpic-media-inner::after {
    display: none;
}

.od-textpic-badge {
    border: 0;
    border-left: 4px solid var(--color-primary);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-taupe);
    box-shadow: none;
}

.od-textpic-badge-value,
.od-textpic-badge-text {
    color: var(--color-taupe);
}

.od-rte-button,
.btn-danger,
.od-textmedia__cta,
.od-textpic-btn {
    border-color: var(--color-primary);
    border-radius: 0.25rem;
    background: var(--color-primary);
    color: #ffffff;
}

.od-rte-button:hover,
.btn-danger:hover,
.btn-danger:focus,
.od-textmedia__cta:hover,
.od-textmedia__cta:focus-visible,
.od-textpic-btn:hover,
.od-textpic-btn:focus-visible {
    border-color: var(--color-primary-dark);
    background: var(--color-primary-dark);
    color: #ffffff;
}

.od-bento {
    padding-block: clamp(4rem, 8vw, 7.5rem);
}

.od-bento-grid {
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.od-bento-feature {
    min-height: 38rem;
    overflow: hidden;
    border: 0;
    border-radius: 0.5rem;
    background: var(--color-mist);
}

.od-bento-feature__overlay {
    padding: 2rem;
    background: linear-gradient(180deg, transparent 35%, rgba(106, 1, 9, 0.72) 100%);
}

.od-bento-feature__title,
.od-bento-feature__text {
    color: #ffffff;
}

.od-bento-feature__title {
    font-size: clamp(2rem, 3vw, 2.6rem);
}

.od-bento-mini {
    min-height: 18rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    background: var(--color-primary);
    color: #ffffff;
    padding: 2rem;
}

.od-bento-mini h3 {
    color: #ffffff;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: none;
}

.od-bento-mini p,
.od-bento-mini__head,
.od-bento-mini__head span {
    color: rgba(255, 255, 255, 0.72);
}

.od-bento-mini__head .bi,
.od-bento-feature__overlay > .bi {
    color: var(--color-primary);
}

.od-bento-concierge {
    border: 0;
    border-radius: 0.5rem;
    background: var(--color-mist);
}

.od-bento-concierge h3 {
    color: var(--color-taupe);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-weight: 400;
    text-transform: none;
}

.od-product-card {
    border: 1px solid rgba(119, 104, 85, 0.16);
    overflow: hidden;
    border-radius: 0.5rem;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.od-product-card__title,
.od-product-card__price {
    color: var(--color-taupe);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-weight: 400;
    text-transform: none;
}

.od-product-card__badge {
    border-radius: 0.125rem;
    background: var(--color-primary);
    color: #ffffff;
}

.od-product-card__desc,
.od-product-card__price-note {
    color: var(--color-muted);
}

.od-product-card__button {
    border-radius: 0.25rem;
    background: var(--color-primary);
    color: #ffffff;
}

.od-teaserswiper__next,
.od-teaserswiper__prev,
.od-product-teaser__next,
.od-product-teaser__prev {
    color: var(--color-taupe);
}

.od-cta-section {
    background: var(--color-primary);
}

.od-cta {
    min-height: clamp(28rem, 55vw, 44rem);
    border: 0;
}

.od-cta__bg-shade {
    background: linear-gradient(90deg, rgba(106, 1, 9, 0.74), rgba(106, 1, 9, 0.12));
}

.od-cta__title,
.od-cta__copy {
    color: #ffffff;
}

.od-cta__btn--primary {
    background: var(--color-primary);
    color: #ffffff;
}

.od-brand-slider__subtitle,
.od-table-ce__table tbody td {
    color: var(--color-muted);
}

.od-table-ce__panel {
    background: #ffffff;
    border-color: var(--color-border);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-soft);
}

.od-table-ce__panel::before {
    background: var(--color-primary);
}

.od-table-ce__table thead th {
    background: var(--color-primary);
    color: #ffffff;
}

.quick-book {
    padding-block: 2rem;
    background: var(--color-mist);
}

.quick-book__inner {
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.quick-book__badge {
    color: var(--color-taupe);
}

.quick-book__icon {
    border-radius: 0.25rem;
    background: var(--color-primary);
    color: #ffffff;
}

.quick-book input,
.quick-book select {
    border-radius: 0.25rem;
    background: var(--color-surface-dark);
    color: var(--color-text);
}

.quick-book__submit {
    color: #ffffff;
}

.od-footer-subline {
    border-color: var(--color-border) !important;
    background: var(--color-secondary);
    color: var(--color-muted);
}

.od-footer-subline__text,
.od-footer-subline__consent {
    color: var(--color-muted);
}

.od-footer-subline .icc-footer img {
    filter: brightness(0);
}

/* Burgundy primary actions always use the light on-primary foreground. */
:is(
    .btn-primary,
    .btn-danger,
    .od-rte-button,
    .od-indexed-search__submit,
    .od-navbar-book,
    .od-textmedia__cta,
    .od-textpic-btn,
    .od-product-card__button,
    .od-cta__btn--primary,
    .quick-book__submit
) {
    color: var(--color-on-primary);
}

:is(
    .btn-primary,
    .btn-danger,
    .od-rte-button,
    .od-indexed-search__submit,
    .od-navbar-book,
    .od-textmedia__cta,
    .od-textpic-btn,
    .od-product-card__button,
    .od-cta__btn--primary,
    .quick-book__submit
):is(:hover, :focus-visible) {
    color: var(--color-on-primary);
}

@media (min-width: 1200px) {
    .od-navbar__inner,
    .od-hero-content,
    .od-product-teaser > .container-fluid,
    .od-teaser-cards > .container-fluid,
    .od-textpic-section > .container-fluid,
    .od-footer > .container-fluid,
    .od-footer-subline > .container-fluid {
        padding-right: 4rem !important;
        padding-left: 4rem !important;
    }
}

@media (max-width: 1199.98px) {
    .od-navbar .navbar-brand {
        margin-right: 1rem;
    }

    .od-navbar-search {
        margin-left: 0 !important;
    }
}

@media (max-width: 991.98px) {
    .od-navbar {
        min-height: 4.5rem;
        background: rgba(255, 255, 255, 0.96);
    }

    .od-navbar__inner {
        min-height: 4.5rem;
    }

    .od-navbar__logo,
    .od-navbar.od-navbar--on-top .od-navbar__logo {
        height: 3.5rem;
        max-height: 3.5rem;
    }

    .od-navbar__actions {
        gap: clamp(0.75rem, 2.5vw, 1.25rem);
    }

    .od-menu-toggle {
        color: var(--color-primary);
    }

    .od-menu-toggle-btn .navbar-toggler-icon {
        filter: sepia(1) saturate(8) hue-rotate(320deg) brightness(0.42);
    }

    .od-main--with-navbar-margin {
        padding-top: 4.5rem;
    }

    .od-bento-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .od-navbar .navbar-brand {
        margin-right: 0;
    }

    .od-navbar__logo,
    .od-navbar.od-navbar--on-top .od-navbar__logo {
        height: 3rem;
        max-width: 7.5rem;
        max-height: 3rem;
    }

    .od-menu-toggle__label {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .od-navbar-search {
        position: static;
    }

    .od-navbar-search__collapse,
    .od-navbar-search__collapse.collapsing,
    .od-navbar-search__collapse.show {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        width: 100%;
        max-width: none;
        background: var(--color-surface-deep);
    }

    .od-navbar-search__collapse.collapsing,
    .od-navbar-search__collapse.show {
        padding: 0.75rem 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-right: 0;
        border-left: 0;
        box-shadow: 0 1rem 2.5rem rgba(106, 1, 9, 0.2);
    }

    .od-navbar-search__form {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .od-hero,
    .od-hero-carousel .od-hero-carousel__swiper,
    .od-hero-carousel .swiper-wrapper,
    .od-hero-carousel .od-hero-carousel__slide,
    .od-hero-content {
        min-height: min(46rem, 100svh);
    }

    .od-hero-glass-card {
        gap: 0.85rem;
    }

    .od-hero-title,
    .od-hero-title strong,
    .od-hero-title em,
    .od-hero-title span {
        font-size: clamp(2.25rem, 10vw, 3rem);
        line-height: 1.08;
    }

    .od-hero-copy {
        font-size: 1rem;
        line-height: 1.5;
    }

    .od-hero-actions {
        width: auto;
        flex-direction: row;
    }

    .od-hero-btn {
        width: auto;
        flex: 0 1 auto;
        min-height: 3rem;
        padding: 0.85rem 1.25rem;
        font-size: 0.8rem;
    }

    .py-lg-6 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .od-textmedia__panel {
        padding: 1rem 0;
    }

    .od-bento {
        padding-block: 4rem;
    }

    .od-bento-feature {
        min-height: 28rem;
    }

    .od-bento-right-top {
        grid-template-columns: 1fr;
    }

    .od-bento-mini {
        min-height: 14rem;
    }

    .od-footer {
        padding-top: 4rem;
    }
}

/* Public launch gate */
.ht-construction-page {
    min-width: 20rem;
    margin: 0;
    background: var(--color-surface-dark) !important;
}

.ht-construction {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 24%, rgba(106, 1, 9, 0.08), transparent 25rem),
        linear-gradient(135deg, #fcf9f8 0%, #f0eded 100%) !important;
    color: var(--color-text);
    isolation: isolate;
}

.ht-construction::before,
.ht-construction::after {
    position: absolute;
    z-index: -1;
    right: -13vw;
    bottom: -31vw;
    width: min(72rem, 88vw);
    aspect-ratio: 1;
    border: 1px solid rgba(106, 1, 9, 0.12);
    border-radius: 50%;
    content: "";
}

.ht-construction::after {
    right: 9vw;
    bottom: -42vw;
    width: min(54rem, 66vw);
    border-color: rgba(106, 1, 9, 0.22);
}

.ht-construction__accent {
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(0.35rem, 0.7vw, 0.7rem);
    height: 100%;
    background: var(--color-primary);
}

.ht-construction__shell {
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: min(100%, var(--content-max));
    min-height: 100vh;
    min-height: 100svh;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 7vw, 5rem);
}

.ht-construction__brand {
    display: inline-flex;
    width: fit-content;
    padding: 0.5rem 0.85rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
}

.ht-construction__brand img {
    display: block;
    width: clamp(9.5rem, 18vw, 13.5rem);
    height: auto;
}

.ht-construction__content {
    align-self: center;
    width: min(100%, 48rem);
    padding-block: clamp(4rem, 10vh, 8rem);
}

.ht-construction__eyebrow {
    display: inline-flex;
    margin: 0 0 1.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    background: var(--color-primary);
    color: var(--color-on-primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.ht-construction h1 {
    max-width: 46rem;
    margin: 0;
    color: var(--color-primary);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.94;
    text-wrap: balance;
}

.ht-construction__copy {
    max-width: 39rem;
    margin: clamp(1.75rem, 4vw, 3rem) 0 0;
    color: var(--color-muted);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.65;
}

.ht-construction__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-top: 1.75rem;
}

.ht-construction__contact a {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration-color: rgba(106, 1, 9, 0.3);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.3em;
}

.ht-construction__contact a:hover,
.ht-construction__contact a:focus-visible {
    color: var(--color-primary-dark);
    text-decoration-color: currentColor;
}

.ht-construction__status {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 2rem;
    color: var(--color-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ht-construction__status span {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 0.35rem rgba(106, 1, 9, 0.12);
}

.ht-construction__copyright {
    margin: 0;
    color: rgba(88, 65, 63, 0.58);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 575.98px) {
    .ht-construction__shell {
        padding: 1.5rem;
    }

    .ht-construction h1 {
        font-size: clamp(3.2rem, 16vw, 4.75rem);
    }

    .ht-construction__content {
        padding-block: 3.5rem;
    }

    .ht-construction__contact {
        display: grid;
    }
}
