:root {
  --ink: #17231d;
  --cream: #f3efe5;
  --paper: #faf8f2;
  --sand: #d6c29c;
  --rust: #94452f;
  --sage: #9aa795;
  --line: rgba(23, 35, 29, 0.18);
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
button {
  font: inherit;
}
.topbar {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  color: white;
  transition: 0.45s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.topbar.scrolled {
  height: 72px;
  background: rgba(250, 248, 242, 0.95);
  backdrop-filter: blur(15px);
  color: var(--ink);
  border-color: var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 2px;
  font-weight: 500;
}
.brand small {
  font-size: 9px;
  letter-spacing: 2.4px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 19px;
}
.desktop-nav {
  display: flex;
  gap: 2.3vw;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.desktop-nav a {
  position: relative;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transition: 0.3s;
}
.desktop-nav a:hover:after {
  right: 0;
}
.gift-head {
  color: var(--sand);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.topbar.scrolled .gift-head {
  color: #8b672f;
}
.head-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.language-switcher { display: flex; align-items: center; gap: 5px; font-size: 10px; letter-spacing: .08em; }
.language-switcher button { border: 0; padding: 4px 1px; background: none; color: inherit; cursor: pointer; opacity: .48; font: inherit; letter-spacing: inherit; }
.language-switcher button.active { opacity: 1; box-shadow: inset 0 -1px currentColor; }
.language-switcher span { opacity: .32; }
.book-head {
  border: 1px solid currentColor;
  padding: 12px 19px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1.4px;
}
.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  width: 32px;
  height: 28px;
  padding: 5px;
}
.menu-btn span {
  display: block;
  height: 1px;
  background: currentColor;
  margin: 6px 0;
}
.menu-panel {
  display: none;
}
.hero {
  height: 100svh;
  min-height: 680px;
  position: relative;
  color: white;
  background: #17231d;
}
.hero-image,
.closing-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-night.webp");
  background-size: cover;
  background-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 20, 14, 0.74), rgba(10, 18, 13, 0.1) 65%),
    linear-gradient(0deg, rgba(10, 18, 13, 0.5), transparent 55%);
}
.hero-copy {
  position: absolute;
  left: 8vw;
  top: 50%;
  transform: translateY(-44%);
  max-width: 760px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 10px;
  font-weight: 500;
  margin: 0 0 26px;
}
.eyebrow.green {
  color: #526b5b;
}
.eyebrow.sand {
  color: var(--sand);
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}
.hero h1 {
  font-size: clamp(72px, 10vw, 155px);
  line-height: 0.82;
  letter-spacing: -4px;
  margin: 0;
}
.hero-sub {
  max-width: 500px;
  font-size: 15px;
  line-height: 1.75;
  margin: 35px 0 0;
}
.scroll-cue {
  position: absolute;
  left: 4vw;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 9px;
}
.scroll-cue i {
  display: block;
  width: 70px;
  height: 1px;
  background: #fff;
}
.hero-card {
  position: absolute;
  right: 4vw;
  bottom: 0;
  width: 330px;
  background: var(--paper);
  color: var(--ink);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.hero-card span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-card strong {
  font: 24px var(--serif);
  font-weight: 400;
}
.hero-card a {
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 5px;
  margin-top: 9px;
}
.section {
  padding: 130px 8vw;
}
.section-no {
  font: 16px var(--serif);
  padding-top: 9px;
}
.intro {
  display: grid;
  grid-template-columns: 10% 50% 32%;
  gap: 4%;
}
.intro h2,
.section-heading h2,
.tables h2,
.comptoir h2,
.spa h2,
.history h2,
.closing h2 {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -2px;
  margin: 0;
}
.intro h2 em {
  color: var(--rust);
  font-style: italic;
}
.intro-text {
  padding-top: 54px;
  font-size: 15px;
  line-height: 1.9;
}
.intro-text p:first-child {
  font-size: 18px;
}
.text-link,
.spa-card > a {
  display: inline-block;
  margin-top: 22px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 10px;
  font-weight: 500;
}
.mosaic {
  display: grid;
  grid-template-columns: 58% 42%;
  height: 850px;
}
.mosaic-side {
  display: grid;
  grid-template-rows: 55% 45%;
}
.mosaic-side blockquote {
  margin: 0;
  background: var(--ink);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw;
}
.mosaic-side blockquote span {
  font: 70px var(--serif);
  color: var(--sand);
  line-height: 0.5;
}
.mosaic-side blockquote p {
  font: clamp(30px, 4vw, 56px) var(--serif);
  line-height: 1.05;
  margin: 28px 0;
}
.stay {
  background: var(--cream);
}
.section-heading {
  display: grid;
  grid-template-columns: 58% 34%;
  gap: 8%;
  align-items: end;
}
.section-heading > p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}
.room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  margin-top: 75px;
}
.room-card {
  position: relative;
  height: 620px;
  overflow: hidden;
}
.room-card img {
  transition: transform 1.2s;
}
.room-card:hover img {
  transform: scale(1.035);
}
.room-card:after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(7, 16, 10, 0.82));
}
.room-card > div {
  position: absolute;
  z-index: 2;
  left: 38px;
  right: 38px;
  bottom: 35px;
  color: white;
}
.room-card span {
  font-size: 9px;
  letter-spacing: 2px;
}
.room-card h3 {
  font-size: 39px;
  margin: 11px 0;
}
.room-card p {
  margin: 0 0 18px;
  font-size: 13px;
}
.ghost-link {
  border: 0;
  border-bottom: 1px solid white;
  background: none;
  color: white;
  padding: 0 0 5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 9px;
  cursor: pointer;
}
.stay-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 80px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.5fr;
  align-items: center;
}
.stay-strip > div {
  display: flex;
  gap: 15px;
  align-items: center;
}
.stay-strip strong {
  font: 39px var(--serif);
}
.stay-strip span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.stay-strip > a {
  justify-self: end;
  background: var(--ink);
  color: white;
  padding: 18px 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 9px;
}
.tables {
  background: var(--ink);
  color: white;
}
.tables-head {
  align-items: end;
}
.tables-head > p {
  font-size: 16px;
  line-height: 1.8;
  color: #cbd0cc;
}
.table-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 760px;
}
.table-panel {
  position: relative;
  overflow: hidden;
}
.panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s;
}
.fine .panel-bg {
  background-image:
    linear-gradient(rgba(10, 15, 12, 0.08), rgba(10, 15, 12, 0.78)),
    url("assets/dining-room.webp");
}
.bistro .panel-bg {
  background-image:
    linear-gradient(rgba(10, 15, 12, 0.05), rgba(10, 15, 12, 0.8)),
    url("assets/bistro.webp");
}
.table-panel:hover .panel-bg {
  transform: scale(1.04);
}
.panel-content {
  position: absolute;
  left: 7vw;
  right: 5vw;
  bottom: 70px;
}
.panel-content span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.panel-content h3 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.95;
  margin: 18px 0;
}
.panel-content p {
  max-width: 430px;
  line-height: 1.7;
  font-size: 14px;
}
.panel-content a {
  display: inline-block;
  border-bottom: 1px solid white;
  padding-bottom: 6px;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 9px;
}
.chef-note {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 65px;
  padding-bottom: 65px;
}
.chef-initial {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  font: 24px var(--serif);
  color: var(--sand);
}
.chef-note p {
  font: 28px var(--serif);
  margin: 0;
  flex: 1;
}
.chef-note small {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 9px;
}
.comptoir {
  display: grid;
  grid-template-columns: 46% 42%;
  gap: 12%;
  align-items: center;
}
.comptoir-image {
  height: 700px;
  position: relative;
}
.stamp {
  position: absolute;
  right: -45px;
  top: 60px;
  background: var(--rust);
  color: white;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 10px;
  transform: rotate(8deg);
}
.comptoir-copy p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.9;
  max-width: 500px;
}
.spa {
  height: 900px;
  position: relative;
  background: var(--ink);
}
.spa-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 35%, rgba(10, 20, 14, 0.45)),
    url("assets/jacuzzi.webp") center/cover;
}
.spa-card {
  position: absolute;
  right: 8vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(520px, 48vw);
  background: rgba(23, 35, 29, 0.94);
  color: white;
  padding: 75px;
}
.spa-card p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.8;
  color: #d3d8d4;
}
.spa-price {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}
.spa-price strong {
  font: 42px var(--serif);
  color: var(--sand);
}
.spa-price span {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 75px;
}
.experience {
  padding: 45px 45px 70px 0;
  border-right: 1px solid var(--line);
}
.experience + article {
  padding-left: 45px;
}
.experience span {
  font: 15px var(--serif);
  color: var(--rust);
}
.experience h3 {
  font-size: 31px;
  margin: 50px 0 20px;
}
.experience p {
  font-size: 14px;
  line-height: 1.8;
}
.concierge {
  margin-top: 25px;
  background: var(--cream);
  padding: 35px 45px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.concierge p {
  font: 27px var(--serif);
  margin: 0;
}
.concierge span {
  font-size: 13px;
  flex: 1;
}
.concierge a {
  background: var(--rust);
  color: white;
  padding: 16px 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 9px;
}
.gascony-link {
  display: table;
  margin: 3rem auto 0;
  padding-bottom: .45rem;
  border-bottom: 1px solid currentColor;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.history {
  min-height: 750px;
  display: grid;
  grid-template-columns: 55% 45%;
  background: var(--ink);
  color: white;
}
.history-image {
  background: url("assets/facade.webp") center/cover;
}
.history-copy {
  padding: 10vw 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.history-copy p:not(.eyebrow) {
  line-height: 1.9;
  color: #cbd0cc;
}
.closing {
  height: 85vh;
  min-height: 650px;
  position: relative;
  color: white;
  text-align: center;
}
.closing-bg {
  background-image:
    linear-gradient(rgba(10, 18, 13, 0.3), rgba(10, 18, 13, 0.65)),
    url("assets/pool-aerial.webp");
}
.closing-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.closing-copy a {
  margin-top: 35px;
  border: 1px solid white;
  padding: 17px 26px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 9px;
}
footer {
  padding: 85px 6vw 30px;
  background: #111914;
  color: #d8ddd9;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 5vw;
  font-size: 12px;
  line-height: 1.8;
}
.footer-brand {
  display: flex;
  gap: 15px;
}
.footer-brand h3 {
  font-family: var(--sans);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.3;
  margin: 4px 0;
}
.footer-brand small {
  font-size: 10px;
}
.footer-brand .brand-mark {
  font-size: 19px;
}
.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  margin-top: 45px;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 8px;
}
.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: var(--paper);
  display: grid;
  place-items: center;
  padding: 10vw;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
}
.modal.open {
  opacity: 1;
  visibility: visible;
}
.modal > div {
  max-width: 700px;
}
.modal h2 {
  font: 68px/1 var(--serif);
  margin: 0 0 30px;
}
.modal p {
  font-size: 16px;
  line-height: 1.8;
}
.modal a {
  display: inline-block;
  background: var(--ink);
  color: white;
  padding: 17px 24px;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 9px;
}
.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  border: 0;
  background: none;
  font: 40px var(--serif);
  cursor: pointer;
}
.booking-drawer {
  position: fixed;
  z-index: 110;
  inset: 0 0 0 auto;
  width: min(520px, 100%);
  background: var(--paper);
  color: var(--ink);
  padding: 6rem 3rem 3rem;
  transform: translateX(100%);
  transition: 0.45s;
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.18);
  overflow-y: auto;
}
.booking-drawer.open {
  transform: none;
}
.booking-drawer h2 {
  font: 3.2rem/1 var(--serif);
}
.booking-choice {
  display: block;
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
}
.booking-choice strong {
  display: block;
  font: 1.4rem var(--serif);
}
.booking-choice span {
  font-size: 0.8rem;
}
.drawer-close {
  position: absolute;
  right: 2rem;
  top: 2rem;
  border: 0;
  background: none;
  color: inherit;
  font-size: 2rem;
  cursor: pointer;
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .topbar {
    height: 72px;
    padding: 0 22px;
  }
  .book-head {
    display: block;
    padding: 10px 12px;
    font-size: 9px;
    letter-spacing: 1.1px;
  }
  .gift-head {
    display: none;
  }
  .booking-drawer {
    padding: 5rem 1.5rem 2rem;
  }
  .menu-panel {
    display: flex;
    position: fixed;
    z-index: 45;
    inset: 0;
    background: var(--ink);
    color: white;
    flex-direction: column;
    justify-content: center;
    padding: 90px 10vw;
    transform: translateY(-100%);
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  }
  .menu-panel.open {
    transform: none;
  }
  .menu-panel nav {
    display: flex;
    flex-direction: column;
  }
  .menu-panel nav a {
    font: clamp(30px, 9vw, 38px)/1.35 var(--serif);
  }
  .menu-panel nav .gift-menu-link {
    color: var(--sand);
    font-size: clamp(23px, 7vw, 28px);
    margin-top: 0.35rem;
  }
  .menu-foot {
    position: absolute;
    bottom: 35px;
    font-size: 11px;
    line-height: 1.8;
  }
  .hero {
    min-height: 700px;
  }
  .hero-image {
    background-position: 58% center;
  }
  .hero-copy {
    left: 25px;
    right: 25px;
    top: 47%;
  }
  .hero h1 {
    font-size: 70px;
    letter-spacing: -2px;
  }
  .hero-sub {
    font-size: 13px;
    max-width: 310px;
  }
  .hero-card {
    right: 0;
    width: 85%;
    padding: 23px 27px;
  }
  .scroll-cue {
    display: none;
  }
  .section {
    padding: 85px 25px;
  }
  .intro {
    grid-template-columns: 1fr;
  }
  .section-no {
    display: none;
  }
  .intro-text {
    padding-top: 10px;
  }
  .intro h2,
  .section-heading h2,
  .tables h2,
  .comptoir h2,
  .spa h2,
  .history h2,
  .closing h2 {
    font-size: 48px;
  }
  .mosaic {
    grid-template-columns: 1fr;
    height: auto;
  }
  .mosaic-tall {
    height: 570px;
    margin: 0;
  }
  .mosaic-side {
    grid-template-rows: 320px 320px;
  }
  .mosaic-side figure {
    margin: 0;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .room-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 50px;
  }
  .room-card {
    height: 510px;
  }
  .room-card > div {
    left: 25px;
    right: 25px;
  }
  .stay-strip {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .stay-strip > div:nth-child(3) {
    display: none;
  }
  .stay-strip > a {
    grid-column: 1/-1;
    justify-self: stretch;
    text-align: center;
  }
  .tables-head {
    padding-bottom: 70px;
  }
  .table-duo {
    grid-template-columns: 1fr;
    height: auto;
  }
  .table-panel {
    height: 610px;
  }
  .panel-content {
    left: 25px;
    right: 25px;
    bottom: 45px;
  }
  .chef-note {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .chef-note p {
    flex-basis: 70%;
    font-size: 23px;
  }
  .chef-note small {
    margin-left: 110px;
  }
  .comptoir {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .comptoir-image {
    height: 540px;
  }
  .stamp {
    right: -6px;
  }
  .spa {
    height: 850px;
  }
  .spa-bg {
    background-position: 40% center;
  }
  .spa-card {
    left: 20px;
    right: 20px;
    bottom: 20px;
    top: auto;
    transform: none;
    width: auto;
    padding: 40px 30px;
  }
  .experience-grid {
    grid-template-columns: 1fr;
  }
  .experience,
  .experience + article {
    padding: 35px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .experience h3 {
    margin: 25px 0 12px;
  }
  .concierge {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }
  .concierge a {
    width: 100%;
    text-align: center;
  }
  .history {
    grid-template-columns: 1fr;
  }
  .history-image {
    height: 480px;
  }
  .history-copy {
    padding: 80px 25px;
  }
  .closing {
    min-height: 680px;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    padding: 65px 25px 25px;
  }
  .footer-brand {
    grid-column: 1/-1;
    margin-bottom: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .modal {
    padding: 25px;
  }
  .modal h2 {
    font-size: 48px;
  }
}

/* Resilient section sizing: prevents large editorial headings from being hidden at browser zoom. */
.mosaic {
  height: auto;
  min-height: 850px;
}
.mosaic-tall,
.mosaic-side > figure {
  margin: 0;
}
.mosaic-side {
  min-height: 850px;
}
.stay,
.gascony,
.tables,
.spa {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.stay,
.gascony {
  z-index: 2;
}
.section-heading h2 {
  overflow-wrap: anywhere;
}
.spa {
  height: auto;
  min-height: 900px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 520px);
  align-items: center;
  padding: 80px 8vw;
}
.spa-bg {
  z-index: -1;
}
.spa-card {
  position: relative;
  inset: auto;
  transform: none;
  width: 100%;
  max-height: none;
  overflow: visible;
  padding: clamp(45px, 5vw, 75px);
}
@media (max-width: 1200px) {
  .topbar { padding-left: 2vw; padding-right: 2vw; }
  .brand { width: 180px; flex-basis: 180px; }
  .desktop-nav { gap: 1.35vw; font-size: 10px; }
  .head-actions { gap: 10px; }
  .gift-head { font-size: 10px; letter-spacing: 1.1px; }
  .book-head { padding: 10px 13px; }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .section-heading h2 {
    font-size: clamp(48px, 7.5vw, 78px);
  }
  .section-heading > p {
    max-width: 680px;
  }
  .mosaic-side blockquote {
    padding: 6vw;
  }
  .mosaic-side blockquote p {
    font-size: clamp(30px, 4.5vw, 50px);
  }
}
@media (max-width: 900px) {
  .mosaic {
    min-height: 0;
  }
  .mosaic-side {
    min-height: 0;
  }
  .stay,
  .gascony {
    overflow: visible;
  }
  .spa {
    min-height: 0;
    display: block;
    padding: 420px 20px 20px;
  }
  .spa-card {
    max-height: none;
    overflow: visible;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Finished hotel identity */
.brand {
  width: 220px;
  height: 70px;
  flex: 0 0 220px;
  background: url("assets/logo-horizontal-reverse.svg") left center / contain no-repeat;
}
.brand .brand-mark {
  display: none;
}
.brand > span:not(.brand-mark),
.brand > span:not(.brand-mark) small {
  font-size: 0;
}
.topbar.scrolled .brand {
  background-image: url("assets/logo-horizontal-dark.svg");
}
.footer-brand {
  position: relative;
  width: 250px;
  min-height: 92px;
  background: url("assets/logo-horizontal-reverse.svg") left center / contain no-repeat;
}
.footer-brand .brand-mark,
.footer-brand h3 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 900px) {
  .brand {
    width: 132px;
    height: 58px;
    flex-basis: 132px;
  }
  .head-actions {
    gap: 9px;
  }
  .footer-brand {
    width: min(250px, 100%);
  }
}
@media (max-width: 480px) {
  .topbar { padding-left: 16px; padding-right: 16px; }
  .brand { width: 108px; flex-basis: 108px; }
  .language-switcher { gap: 3px; font-size: 9px; }
  .book-head { padding: 9px 10px; }
}
