:root {
    --beige: #e5cfbb;
    --bg: #f5f2ed;
    --bg-rgba: 245,242,237;
    --black: #1d1d1b;
    --burgundy: #560b11;
    --dark-green: #002e1a;
    --orange: #ff3300;
    --white: #fff;

    /* "Libre Caslon Text" 400/700 */
    --font-serif: "Libre Caslon Text";
    /* "Albert Sans" 100-900 */
    --font-sans-serif: "Albert Sans";
}

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

html,
body {
    font-family: var(--font-serif), serif;
    font-size: 15px;
    background: var(--bg) !important;
    color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
html { scroll-behavior: smooth; }
h1 {
    margin-bottom: 0.75rem;
    font-size: 2.1rem;
    font-weight: 400;
    text-transform: uppercase;
}
h2 {
    margin-bottom: 2rem;
    font-size: 2.1rem;
    font-weight: 400;
    text-transform: uppercase;
}
h3, .h3 {
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
    font-weight: 400;
    text-transform: none;
}
p {
    margin-bottom: 1.5rem;
    font-family: var(--font-sans-serif), sans-serif;
    font-weight: 300;
}
p.quote {
    font-family: var(--font-serif), serif;
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
}
a {
    color: var(--black);
}
a.no-decoration {
    text-decoration: none;
}
em {
    font-style: italic;
}
img.img-responsive {
    width: 100%;
    height: auto;
}

/* CONTAINER */
.container {
    max-width: 1500px;
    margin: auto;
    padding: 0;
}
.row {
    display: flex;
    align-items: center;
    justify-content: center;
}
.row .col {
    flex: 1;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1500px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(var(--bg-rgba), 0);
    transition: background 0.6s ease;
}
header.scrolled {
    background: rgba(var(--bg-rgba), 0.9);
}
header .col-center img {
    opacity: 0;
    transition: opacity 0.6s ease;
}
header.scrolled .col-center img {
    opacity: 1;
}
header .row {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
}
header .row .col {
    flex: 1;
}
header .row .col-center {
    flex: 1;
    align-items: center;
    text-align: center;
}
header .row .col-center img {
    width: 240px;
    margin: 0 auto;
}
header .row .col-right {
    flex: 1;
    align-items: flex-end;
    text-align: right;
}
.nav-links {
    margin: 0 0 0 auto;
    color: var(--black);
}
.nav-links a {
    font-size: 1.2em;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--black);
}
.nav-links .divider {
    display: inline-block;
    font-size: 1.4em;
    margin: 0 0.5rem;
}
/* BOOKING DISABLED */
#booking-link,
.nav-links .divider {
    display: none;
}

/* HERO */
.hero {
    display: flex;
}
.hero-left {
    flex: 1;
}
.hero-left .img-block {
    position: relative;
}
.hero-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-left img.logo-image {
    position: absolute;
    top: 0;
    left: 50%;
    width: 30%;
    margin-left: -15%;
    object-fit: unset;
    filter: brightness(0) invert(1);
}
.hero-right {
    flex: 1;
    align-self: flex-end;
    text-align: center;
}
.hero-right .inner {
    width: 80%;
    margin: auto auto 2rem;
}
.hero-right .img-block {
    width: 80%;
    max-width: 220px;
    margin: auto auto 0.5rem;
}
.hero-right .hero-subtitle {
    margin-bottom: 1rem;
}

/* SPOTLIGHTS */
.spotlight {
    position: relative;
    margin: 0 auto;
    padding: 5rem 3rem;
}
.spotlight .row {
    display: flex;
    align-items: center;
    justify-content: center;
}
.spotlight .row .col {
    flex: 1;
}
.spotlight .item-top {
    align-self: flex-start;
}
.spotlight .item-bottom {
    align-self: flex-end;
}
.spotlight .row .col .text-block {
    padding: 0 1rem;
}
.spotlight .row .col .text-block h2,
.spotlight .row .col .text-block h3 {
    max-width: 450px;
}
body.english .spotlight .row .col .text-block h2,
body.english .spotlight .row .col .text-block h3 {
    max-width: 540px;
}
.spotlight .row .col .text-block p {
    max-width: 320px;
}
body.english .spotlight .row .col .text-block p {
    max-width: 340px;
}
.spotlight .row .col .text-block p.quote,
body.english .spotlight .row .col .text-block p.quote {
    max-width: 480px;
}
.spotlight.type-1  {
    margin-top: 2rem;
}
.spotlight.type-1 .row .col-left,
.spotlight.type-3 .row .col-left {
    flex: 0.9;
}
.spotlight.type-1 .row .col-left .img-block,
.spotlight.type-3 .row .col-left .img-block {
    width: 80%;
    margin: auto auto 2rem;
}
.spotlight .row .col-right .text-block {
    align-self: flex-end;
}
.spotlight .row .col-right .text-block p.quote {
    margin-bottom: 0;
}
.spotlight.type-2 .bg {
    position: absolute;
    top: 0;
    left: -100vw;
    right: -100vw;
    width: 300vw;
    height: 100%;
    background: var(--burgundy);
    z-index: 0;
}
.spotlight.type-2 .col-left {
    display: flex;
    align-self: stretch;
    background: url('../img/hotel-quinconces-bordeaux_logo_icon_red.svg') no-repeat bottom 0.25rem left 1rem;
    background-size: 40px auto;
}
.spotlight.type-2 .col-left .text-block {
    margin: auto 0;
}
.spotlight.type-2 .row {
    position: relative;
    z-index: 1;
}
.spotlight.type-2 .row * {
    color: var(--white);
}

/* MAP */
#map {
    width: 100%;
    height: 750px;
}
.col-map {
    position: relative;
}
.col-map::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg);
    opacity: 1;
    mix-blend-mode: color;
    pointer-events: none;
}

/* SOCIAL */
.section-social {
    padding: 2rem;
    text-align: center;
}
.section-social h3 {
    margin-bottom: 0.5rem;
}
.section-social a {
    font-family: var(--font-serif), serif;
    font-size: 1.2rem;
    font-style: italic;
    text-align: center;
}
.section-social .instagram-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
}
.section-social .instagram-icon svg {
    width: 100%;
    height: 100%;
}

/* EMAIL SIGNUP */
.section-signup {
    padding: 2rem;
    text-align: center;
}
.section-signup .row {
    max-width: 900px;
    margin: auto;
}
body.english .section-signup .row {
    max-width: 1100px;
    margin: auto;
}
.section-signup .col {
    padding: 1rem 3rem;
}
body.english .section-signup .row .col:first-child {
    flex: 1.2;
}
.section-signup h2 {
    text-align: left;
    text-transform: none;
}
.section-signup .col-right {
    align-self: flex-end;
}
.sib-form {
}
#sib-container {
    max-width: 100% !important;
    padding-bottom: 0;
}
#sib-form {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
#sib-form .sib-input.sib-form-block {
    padding: 0;
}
#sib-form > div:first-child {
    flex: 6;
}
#sib-form .entry__field {
    display: -webkit-inline-flex;
    display: inline-flex;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    margin: 0;
    max-width: 100%;
}
#sib-form input {
    padding: 0;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--black);
    background: transparent;
    outline: none;
    font-family: var(--font-sans-serif), sans-serif;
    color: var(--black);
}
#sib-form input::placeholder {
    padding-bottom: 0;
    font-family: var(--font-sans-serif), sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--black);
    opacity: 1;
}
#sib-form .sib-form-block__button {
    padding: 0;
    font-family: var(--font-serif), serif;
    font-size: 2rem;
    background: transparent;
    color: var(--black);
}
#sib-form > div:last-child {
    flex: 1;
}

/* FOOTER */
footer {
    position: relative;
    padding: 2rem;
}
footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #f1ede6;
    -webkit-mask: url('../img/hotel-quinconces-bordeaux_pattern.svg') no-repeat top center;
    mask: url('../img/hotel-quinconces-bordeaux_pattern.svg') no-repeat top center;
    -webkit-mask-size: 100% auto;
    mask-size: 100% auto;
    pointer-events: none;
    z-index: 0;
}
footer > * {
    position: relative;
    z-index: 1;
}
footer .row {
    align-items: flex-start;
    padding: 2rem;
}
footer .row h3 {
    margin-bottom: 0;
    font-size: 1.4rem;
    text-transform: uppercase;
}
footer .row .col-left h3 {
    font-weight: 700;
}
footer .row .col-center {
    text-align: center;
}
footer .row .col-center h3 {
    font-style: italic;
    text-transform: none;
}
footer .row .col-center h3 a {
    text-decoration: none;
}
footer .row .col-right {
    text-align: right;
}
.footer-logo-center {
    text-align: center;
}
.footer-logo-center img {
    width: 150px;
    height: auto;
    margin: 0 auto 12px;
}
.footer-logo-center .logo-door img {
    width: 110px;
}

/* COPYRIGHT */
.copyright {
    font-size: 0.8rem;
    text-align: center;
}

/* LINE BREAKS */
span.br {
    display: block;
}

/* LEGALS */
.container.legals-container .text-block,
.container.legals-container .text-block p {
    max-width: 100% !important;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    footer::before {
        -webkit-mask-size: 1200px auto;
        mask-size: 1200px auto;
    }
}
@media (max-width: 1080px) {
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3, .h3 {
        font-size: 1.5rem;
    }
    .hero-right .img-block {
        max-width: 200px;
    }
}
@media (max-width: 999px) {
    .hero-left .img-block {
        width: 100%;
        height: 100%;
    }
    .hero-left .img-block picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .hero-right {
        padding-top: 5rem;
    }
    .hero-right .img-block {
        max-width: 180px;
    }
}
@media (max-width: 899px) {
    span.br {
        display: none;
    }
}
@media (max-width: 799px) {
    .section-signup h2 {
        font-size: 1.5rem;
    }
}
@media (max-width: 767px) {
    .container {
        padding-top: 4rem;
    }
    header .row {
        padding: 1rem;
    }
    header .row .col-left {
        display: none
    }
    header .row .col-center {
        align-items: flex-start;
        text-align: left;
    }
    header .col-center img {
        opacity: 1;
    }
    .hero {
        flex-direction: column;
    }
    .hero-right {
        width: 100%;
        padding-top: 4rem;
    }
    .hero-right .img-block {
        max-width: 220px;
    }
    .spotlight {
        padding: 5rem 1.5rem;
    }
    .spotlight .row {
        flex-direction: column;
    }
    .spotlight .row .col {
        width: 100%;
    }
    .spotlight.type-1 {
        margin-top: 0;
        padding-top: 2rem;
    }
    .spotlight.type-1 .row .col-left .img-block,
    .spotlight.type-3 .row .col-left .img-block {
        width: 100%;
        margin: auto auto 2rem;
    }
    .spotlight .row .col .text-block {
        padding: 0;
    }
    .spotlight .row .col .text-block h2,
    .spotlight .row .col .text-block h3,
    .spotlight .row .col .text-block p {
        max-width: 100%;
    }
    .spotlight.type-2 .col-left {
        display: flex;
        align-self: flex-start;
        margin-bottom: 5rem;
        padding-bottom: 5rem;
    }
    .section-signup .row {
        flex-direction: column;
    }
    .section-signup .row .col {
        width: 100%;
    }
    .section-signup .row h2 {
        text-align: center;
    }
    footer .row {
        flex-direction: column;
    }
    footer .row .col {
        width: 100%;
        text-align: center;
    }
    footer .row .col-center h3 {
        margin-bottom: 2rem;
    }
}
@media (max-width: 599px) {
    .hero-left img.logo-image {
        width: 40%;
        margin-left: -20%;
    }
}
@media (max-width: 459px) {
    header .row {
        padding: 1rem 0.75rem;
    }
    .nav-links .divider {
        margin: 0 0.25rem;
    }
    .hero-left img.logo-image {
        width: 48%;
        margin-left: -24%;
    }
}
@media (max-width: 429px) {
    .container {
        padding-top: 3.5rem;
    }
    header .row {
        padding: 1rem 0.75rem 0;
    }
    header .row .col-center {
        flex: 1.5;
    }
    header .row .col-center img {
        width: 100%;
    }
    header .row .col-right {
    }
    .nav-links a {
        font-size: 1.1em;
    }
}
@media (max-width: 389px) {
    header .row .col-center {
        flex: 1.4;
    }
}
@media (max-width: 369px) {
    header .row .col-center {
        flex: 1.3;
    }
    header .row .col-right {
        padding-bottom: 0.5%;
    }
}
@media (max-width: 349px) {
    header .row .col-center {
        flex: 1.2;
    }
    header .row .col-right {
        padding-bottom: 1%;
    }
    .nav-links a {
        font-size: 1em;
    }
}
@media (max-width: 339px) {
    header .row .col-center {
        flex: 1.1;
    }
    header .row .col-right {
        padding-bottom: 1.5%;
    }
}

/* CONSENT BANNER */
#consent-banner {
    position: fixed;
    bottom: 1rem;
    left: auto;
    right: 1rem;
    width: 100%;
    max-width: 215px;
    z-index: 999;
    background: var(--burgundy);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 1rem;
}
#consent-banner h3 {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
}
#consent-banner p {
    margin: -0.75rem 0 0 0;
    font-family: var(--font-sans-serif), sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--white);
}
.consent-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}
.consent-actions button {
    padding: 0.4rem 1.25rem;
    border: 1px solid var(--white);
    background: transparent;
    color: var(--white);
    font-family: var(--font-sans-serif), sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    cursor: pointer;
}
#consent-accept {
    background: var(--white);
    color: var(--black);
}