:root {
  color-scheme: light;
  --wine: #7a2638;
  --wine-dark: #541827;
  --wine-soft: #a85b68;
  --ink: #2b3030;
  --muted: #5e6664;
  --gold: #c4a477;
  --gold-soft: #eadbc5;
  --cream: #f0ede7;
  --paper: #fffdf8;
  --mist: #e8eeea;
  --line: rgba(84, 24, 39, 0.13);
  --shadow: 0 24px 70px rgba(62, 31, 38, 0.15);
  --shadow-soft: 0 14px 38px rgba(62, 31, 38, 0.09);
  --radius-xl: 20px;
  --radius: 9px;
  --content: 1200px;
  --font: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font);
  text-rendering: geometricPrecision;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
}

body::before {
  background:
    linear-gradient(90deg, rgba(122, 38, 56, 0.035) 1px, transparent 1px) 50% 0 / 92px 92px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, transparent 78%);
}

body::after {
  z-index: -1;
  background: url("/assets/logo-bordeaux.png") no-repeat calc(100% + 8rem) 8rem / min(30rem, 60vw);
  opacity: 0.045;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(196, 164, 119, 0.85);
  outline-offset: 4px;
}

p,
li {
  line-height: 1.72;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font);
  font-weight: 760;
  line-height: 1.03;
  overflow-wrap: break-word;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 6.2vw, 5.25rem);
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.48rem;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  color: var(--paper);
  background: var(--wine-dark);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 1.15rem;
  min-height: 29px;
  padding: 0.22rem 1rem;
  color: rgba(255, 253, 248, 0.9);
  background:
    linear-gradient(90deg, rgba(196, 164, 119, 0.22), transparent 18%, transparent 82%, rgba(196, 164, 119, 0.22)),
    var(--wine-dark);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar a,
.topbar span {
  position: relative;
}

.topbar a:not(:last-child)::after,
.topbar span::after {
  position: absolute;
  top: 50%;
  right: -0.66rem;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(84, 24, 39, 0.1);
  background: rgba(255, 253, 248, 0.96);
}

.site-header__inner,
.page-hero,
.section,
.site-footer__inner {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(196px, auto) 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 66px;
  padding: 0.3rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
  font-weight: 900;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(84, 24, 39, 0.13));
}

.brand span {
  display: grid;
  gap: 0.1rem;
  font-size: 1.08rem;
  line-height: 0.95;
}

.brand small {
  color: var(--muted);
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav,
.header-actions,
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.nav {
  justify-content: center;
}

.nav__link,
.language,
.button,
.text-link {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav__link,
.language {
  border-bottom: 2px solid transparent;
  padding: 0.52rem 0.3rem 0.44rem;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.045em;
}

.nav__link:hover,
.language:hover,
.nav__link.is-active {
  border-color: var(--gold);
  color: var(--wine-dark);
}

.header-actions {
  justify-content: flex-end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  border: 1px solid var(--wine);
  border-radius: 4px;
  padding: 0.75rem 1.05rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.button:hover {
  transform: translateY(-2px);
}

.button--solid {
  color: var(--paper);
  background: var(--wine);
  box-shadow: 0 10px 26px rgba(122, 38, 56, 0.18);
}

.button--solid:hover {
  color: #fff;
  background: var(--wine-dark);
  box-shadow: 0 14px 30px rgba(84, 24, 39, 0.24);
}

.button--ghost {
  color: var(--wine-dark);
  background: transparent;
}

.button--ghost:hover {
  background: rgba(122, 38, 56, 0.07);
}

.button--light {
  border-color: var(--paper);
  color: var(--paper);
  background: transparent;
}

.button--compact {
  min-height: 37px;
  padding: 0.58rem 0.78rem;
  font-size: 0.68rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.2rem;
  color: var(--wine-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
}

.text-link:hover {
  gap: 0.7rem;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu__icon,
.mobile-menu__icon::before,
.mobile-menu__icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wine-dark);
}

.mobile-menu__icon {
  position: relative;
}

.mobile-menu__icon::before,
.mobile-menu__icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.mobile-menu__icon::before {
  top: -7px;
}

.mobile-menu__icon::after {
  top: 7px;
}

.mobile-menu__panel {
  display: grid;
  position: fixed;
  top: 104px;
  right: 1rem;
  width: min(320px, calc(100vw - 2rem));
  max-height: calc(100dvh - 120px);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.55rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.mobile-menu__panel .nav__link {
  padding: 0.85rem 0.7rem;
}

.mobile-menu__language {
  border-top: 1px solid var(--line);
  color: var(--wine);
}

.mobile-menu[open] .mobile-menu__icon {
  background: transparent;
}

.mobile-menu[open] .mobile-menu__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu[open] .mobile-menu__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  display: grid;
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: clamp(620px, 70vh, 760px);
  overflow: hidden;
  align-items: center;
  margin: 0;
  padding: clamp(4.5rem, 9vw, 7rem) max(1rem, calc((100vw - var(--content)) / 2));
  color: var(--paper);
  background: var(--wine-dark);
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.25rem;
  max-width: 590px;
}

.hero h1 {
  max-width: 9.5ch;
  text-wrap: balance;
}

.hero--home .hero__copy {
  max-width: 720px;
}

.hero--home h1 {
  max-width: 16ch;
  font-size: clamp(2.9rem, 5.2vw, 4.7rem);
}

.hero .eyebrow {
  margin: 0;
  color: var(--gold-soft);
}

.hero .lead {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 253, 248, 0.84);
}

.eyebrow,
.card__kicker {
  margin-bottom: 0.85rem;
  color: var(--wine);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead {
  max-width: 670px;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.24rem);
}

.hero__actions {
  margin-top: 0.45rem;
}

.hero .button--ghost {
  border-color: rgba(255, 253, 248, 0.62);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.hero .button--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--wine-dark);
  pointer-events: none;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
}

.hero__media::after {
  background:
    linear-gradient(90deg, var(--wine-dark) 0%, var(--wine-dark) 35%, rgba(84, 24, 39, 0.94) 42%, rgba(84, 24, 39, 0.42) 58%, rgba(84, 24, 39, 0.08) 75%),
    linear-gradient(180deg, rgba(28, 14, 18, 0.02), rgba(28, 14, 18, 0.18));
}

.hero__image {
  position: absolute;
  top: 0;
  right: 0;
  width: min(66%, 980px);
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.95) contrast(1.02);
}

.hero__note {
  position: absolute;
  right: max(1rem, calc((100vw - var(--content)) / 2));
  bottom: 2rem;
  z-index: 2;
  display: grid;
  gap: 0.25rem;
  max-width: 290px;
  border: 1px solid rgba(255, 253, 248, 0.35);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  color: var(--paper);
  background: rgba(84, 24, 39, 0.66);
  box-shadow: 0 18px 45px rgba(28, 14, 18, 0.2);
  backdrop-filter: blur(12px);
}

.hero__note strong {
  color: var(--gold-soft);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__note span {
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.4;
}

.reassurance-strip {
  color: var(--paper);
  background: var(--wine-dark);
}

.reassurance-strip ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.reassurance-strip li {
  display: grid;
  min-height: 76px;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.reassurance-strip li:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.booking-band {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.booking-band__inner {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) 2fr;
  gap: 2rem;
  align-items: end;
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
  padding: 1.6rem 0;
}

.booking-band h2 {
  font-size: 1.35rem;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 0.85rem;
  align-items: end;
}

.field {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  min-height: 43px;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.65rem 0.72rem;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.section--compact {
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

.section--wide {
  width: 100%;
  padding-inline: max(1rem, calc((100vw - var(--content)) / 2));
}

.section--paper {
  background: var(--paper);
}

.section__intro {
  display: grid;
  gap: 1rem;
  max-width: 740px;
  margin-bottom: 2.6rem;
}

.section__intro p {
  color: var(--muted);
  font-size: 1.03rem;
}

.section__intro--center {
  margin-inline: auto;
  text-align: center;
}

.grid {
  display: grid;
  gap: 1.35rem;
}

.grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.card > img,
.card > a > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card > a {
  display: block;
  overflow: hidden;
}

.card > a > img {
  transition: transform 450ms ease;
}

.card:hover > a > img {
  transform: scale(1.025);
}

.card__body {
  display: grid;
  gap: 0.85rem;
  padding: 1.4rem;
}

.card__body p {
  color: var(--muted);
}

.card__body .button,
.card__body .text-link {
  justify-self: start;
}

.fact-card {
  min-height: 180px;
  padding: 1.5rem;
}

.fact-card strong {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--wine);
  font-size: 2rem;
  line-height: 1;
}

.fact-card p {
  color: var(--muted);
}

.room-carousel-section {
  width: 100%;
  padding-inline: max(1rem, calc((100vw - var(--content)) / 2));
  background: var(--paper);
}

.home-room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: 980px;
  margin-bottom: 1.5rem;
}

.home-room-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.home-room-card > a {
  aspect-ratio: 4 / 3;
  background: var(--cream);
}

.home-room-card > a > img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.home-room-card .card__body {
  flex: 1;
  align-content: start;
}

.home-room-card .card__body .button {
  margin-top: 0.3rem;
}

.carousel-shell {
  position: relative;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.carousel-control {
  width: 42px;
  height: 42px;
  border: 1px solid var(--wine);
  border-radius: 50%;
  color: var(--wine);
  background: transparent;
  cursor: pointer;
  font-size: 1.2rem;
}

.room-carousel {
  display: grid;
  grid-auto-columns: minmax(285px, 360px);
  grid-auto-flow: column;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.2rem 0 1.25rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--wine-soft) transparent;
}

.room-carousel__card {
  display: grid;
  scroll-snap-align: start;
}

.room-carousel__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.room-carousel__facts span,
.chip-cloud span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.62rem;
  color: var(--muted);
  background: var(--cream);
  font-size: 0.72rem;
  font-weight: 750;
}

.home-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.home-split--reverse .home-split__copy {
  order: 2;
}

.home-split__copy {
  display: grid;
  gap: 1.25rem;
  padding: clamp(0rem, 3vw, 2rem);
}

.home-split__copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.home-split__media {
  position: relative;
}

.home-split__media::after {
  position: absolute;
  right: -0.9rem;
  bottom: -0.9rem;
  z-index: -1;
  width: 58%;
  height: 64%;
  border: 1px solid var(--gold);
  content: "";
}

.home-split__media img,
.home-split__media video {
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.home-split__media--dish {
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(1rem, 4vw, 2.5rem);
  background:
    radial-gradient(circle at 52% 42%, rgba(255, 253, 248, 0.98), rgba(234, 219, 197, 0.9) 52%, rgba(196, 164, 119, 0.72)),
    var(--gold-soft);
  box-shadow: var(--shadow);
}

.home-split__media.home-split__media--dish img {
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(84, 24, 39, 0.22));
  box-shadow: none;
}

.photo-story {
  display: grid;
  gap: 2rem;
}

.photo-story__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
}

.photo-story__intro p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
}

.photo-story__grid,
.room-gallery__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 1rem;
}

.photo-story__grid figure,
.room-gallery__grid figure {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--wine-dark);
  box-shadow: var(--shadow-soft);
}

.photo-story__main,
.room-gallery__wide {
  grid-row: 1 / 3;
}

.photo-story__grid img,
.room-gallery__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.photo-story__grid figure:hover img,
.room-gallery__grid figure:hover img {
  transform: scale(1.018);
}

.photo-story__grid figcaption,
.room-gallery__grid figcaption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  left: 0.8rem;
  z-index: 1;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
  color: var(--paper);
  background: rgba(43, 48, 48, 0.64);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

.room-gallery {
  display: grid;
  gap: 2.2rem;
}

.room-gallery__grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.room-type {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.room-type--reverse .room-type__copy {
  order: 2;
}

.room-type__copy {
  display: grid;
  gap: 1.15rem;
}

.room-type__copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.room-type__copy .button {
  justify-self: start;
}

.room-type__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.room-type__gallery figure,
.restaurant-gallery__grid figure {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--wine-dark);
  box-shadow: var(--shadow-soft);
}

.room-type__gallery .room-type__main {
  grid-column: 1 / -1;
  min-height: 390px;
}

.room-type__gallery img,
.restaurant-gallery__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-type__gallery--superior img[src$="room-superieure-1.jpg"],
.room-type__gallery--superior img[src$="room-superieure-2.jpg"] {
  object-fit: contain;
  object-position: center;
  background: var(--cream);
}

.room-type__gallery figcaption,
.restaurant-gallery__grid figcaption {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  left: 0.65rem;
  border-radius: 5px;
  padding: 0.55rem 0.7rem;
  color: var(--paper);
  background: rgba(43, 48, 48, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.room-photo__zoom {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 34px;
  border: 1px solid rgba(255, 253, 248, 0.55);
  border-radius: 999px;
  padding: 0.45rem 0.65rem;
  color: var(--paper);
  background: rgba(43, 48, 48, 0.72);
  box-shadow: 0 8px 20px rgba(28, 14, 18, 0.18);
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 850;
  backdrop-filter: blur(8px);
}

.room-photo__zoom:hover {
  background: var(--wine-dark);
}

.room-photo__zoom svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.photo-lightbox {
  width: min(94vw, 1100px);
  max-width: none;
  max-height: 92dvh;
  overflow: visible;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 28px 90px rgba(28, 14, 18, 0.45);
}

.photo-lightbox::backdrop {
  background: rgba(28, 14, 18, 0.82);
  backdrop-filter: blur(6px);
}

.photo-lightbox figure {
  display: grid;
  gap: 0;
}

.photo-lightbox img {
  width: 100%;
  max-height: calc(92dvh - 58px);
  object-fit: contain;
  background: var(--ink);
}

.photo-lightbox figcaption {
  padding: 0.8rem 1rem;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
}

.photo-lightbox__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
  min-height: 36px;
  border: 1px solid rgba(255, 253, 248, 0.55);
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  color: var(--paper);
  background: rgba(43, 48, 48, 0.78);
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 850;
  backdrop-filter: blur(8px);
}

.restaurant-gallery {
  display: grid;
  gap: 2rem;
}

.restaurant-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(240px, 30vw);
  gap: 1rem;
}

.restaurant-gallery__wide {
  grid-column: 1 / -1;
}

.restaurant-gallery__grid img[src="/assets/signature-dish.png"] {
  padding: 1.4rem;
  object-fit: contain;
  background: var(--gold-soft);
}

.tourism-jumps a {
  display: grid;
  min-height: 100%;
  place-items: center;
}

.guide-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.guide-cta p {
  max-width: 680px;
  color: var(--muted);
}

.photo-credits {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.photo-credits h2 {
  margin-bottom: 0.7rem;
  font-size: 1rem;
}

.photo-credits p {
  color: var(--muted);
  font-size: 0.75rem;
}

.photo-credits a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 520px;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.page-hero > div {
  display: grid;
  gap: 1rem;
}

.page-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.7rem, 4.6vw, 4.25rem);
}

.page-hero > img {
  width: 100%;
  height: clamp(430px, 42vw, 560px);
  border-radius: var(--radius-xl);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.page-hero > img[src="/assets/hero-restaurant.jpg"] {
  object-position: center 70%;
}

.page-hero > img[src="/assets/exterior-portrait.jpg"] {
  object-position: center 38%;
}

.page-hero--rooms > img {
  object-position: center 58%;
}

.page-hero--compact {
  grid-template-columns: 1fr;
  min-height: 350px;
  text-align: center;
}

.page-hero--compact > div,
.page-hero--compact h1,
.page-hero--compact .lead {
  max-width: 850px;
  margin-inline: auto;
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.practical-item {
  display: grid;
  gap: 0.65rem;
  min-height: 165px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.3rem;
  background: rgba(255, 253, 248, 0.65);
}

.practical-item strong {
  color: var(--wine-dark);
}

.practical-item span {
  color: var(--muted);
  line-height: 1.6;
}

.feature-list {
  display: grid;
  gap: 0;
  margin: 1.2rem 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 0.78rem 0 0.78rem 1.4rem;
  color: var(--muted);
}

.feature-list li::before {
  position: absolute;
  top: 1.25rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.hours-table {
  border-top: 1px solid var(--line);
}

.hours-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}

.hours-row strong {
  color: var(--wine-dark);
}

.hours-row span {
  color: var(--muted);
}

.quote-band {
  width: 100%;
  padding: clamp(4rem, 8vw, 7rem) max(1rem, calc((100vw - var(--content)) / 2));
  color: var(--paper);
  background:
    linear-gradient(rgba(84, 24, 39, 0.85), rgba(84, 24, 39, 0.9)),
    url("/assets/terrace.jpg") center / cover;
}

.quote-band__inner {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 2rem;
  align-items: end;
}

.quote-band h2 {
  max-width: 800px;
}

.quote-band p {
  max-width: 650px;
  margin-top: 1rem;
  color: rgba(255, 253, 248, 0.82);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 1.25rem 2.5rem 1.25rem 0;
  cursor: pointer;
  color: var(--wine-dark);
  font-weight: 850;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 1.12rem;
  right: 0.25rem;
  content: "+";
  font-size: 1.4rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 820px;
  padding: 0 0 1.25rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
}

.contact-card {
  display: grid;
  gap: 1.1rem;
  padding: 1.7rem;
  color: var(--paper);
  background: var(--wine-dark);
}

.contact-card a {
  font-weight: 800;
}

.map-placeholder {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 2rem;
  text-align: center;
  background:
    linear-gradient(rgba(43, 48, 48, 0.18), rgba(43, 48, 48, 0.55)),
    url("/assets/exterior.jpg") center / cover;
}

.map-placeholder .button {
  border-color: var(--paper);
  color: var(--paper);
  background: rgba(84, 24, 39, 0.72);
}

.legal-copy {
  display: grid;
  gap: 2.2rem;
  max-width: 900px;
  margin-inline: auto;
}

.legal-copy section {
  display: grid;
  gap: 0.8rem;
}

.legal-copy h2 {
  font-size: 1.7rem;
}

.legal-copy h3 {
  margin-top: 0.7rem;
  font-size: 1.08rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.site-map-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.site-map-list a {
  display: block;
  border: 1px solid var(--line);
  padding: 1rem;
  color: var(--wine-dark);
  background: var(--paper);
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 253, 248, 0.82);
  background: var(--wine-dark);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.75fr);
  gap: 2.2rem;
  padding-block: 4rem 2.2rem;
}

.footer-brand {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 1rem;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 0.8rem;
  color: var(--paper);
}

.site-footer h2 {
  font-size: 1.8rem;
}

.site-footer h3 {
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  line-height: 1.85;
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 1rem;
  padding-top: 1.4rem;
  font-size: 0.72rem;
}

.mobile-action-bar {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-header .nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero__image {
    width: 72%;
  }

  .practical-grid,
  .grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .topbar {
    display: none;
  }

  .site-header {
    border-bottom-color: rgba(84, 24, 39, 0.08);
    background: rgba(255, 253, 248, 0.86);
    box-shadow: 0 8px 24px rgba(62, 31, 38, 0.06);
    backdrop-filter: blur(14px);
  }

  .site-header__inner {
    min-height: 64px;
  }

  .mobile-menu__panel {
    top: 72px;
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    max-height: calc(100dvh - 84px);
  }

  .has-mobile-action-bar .mobile-menu__panel {
    max-height: calc(100dvh - 156px - env(safe-area-inset-bottom));
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .language {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 3.2rem;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 10.5vw, 2.85rem);
    overflow-wrap: normal;
  }

  .page-hero > img {
    justify-self: stretch;
  }

  .hero {
    min-height: 610px;
    padding: 4rem 1rem;
  }

  .hero__copy {
    gap: 1rem;
    width: 100%;
    min-width: 0;
    max-width: 560px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.45rem, 11.5vw, 3.2rem);
    text-wrap: pretty;
  }

  .hero--home {
    min-height: 650px;
  }

  .hero--home h1 {
    max-width: none;
    font-size: clamp(2.2rem, 10.5vw, 2.9rem);
  }

  .hero .lead {
    font-size: 0.98rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.5rem;
  }

  .hero__actions .button {
    width: 100%;
    padding-inline: 0.55rem;
    font-size: 0.66rem;
    letter-spacing: 0.045em;
  }

  .hero__image {
    width: 100%;
    opacity: 0.82;
    object-position: 72% center;
  }

  .hero__media::after {
    display: block;
    background:
      linear-gradient(90deg, rgba(84, 24, 39, 0.94), rgba(84, 24, 39, 0.67) 68%, rgba(84, 24, 39, 0.38)),
      linear-gradient(180deg, rgba(28, 14, 18, 0.06), rgba(28, 14, 18, 0.38));
  }

  .hero__note {
    display: none;
  }

  .reassurance-strip ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .reassurance-strip li {
    min-height: 62px;
  }

  .booking-band__inner,
  .booking-form,
  .home-split,
  .home-split--reverse,
  .photo-story__intro,
  .quote-band__inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .photo-story__grid,
  .room-gallery__grid,
  .room-type,
  .restaurant-gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .photo-story__main,
  .room-gallery__wide {
    grid-row: auto;
  }

  .photo-story__grid figure,
  .room-gallery__grid figure {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .home-split--reverse .home-split__copy {
    order: 0;
  }

  .room-type--reverse .room-type__copy {
    order: 0;
  }

  .room-type__gallery .room-type__main,
  .restaurant-gallery__wide {
    grid-column: auto;
  }

  .room-type__gallery .room-type__main,
  .room-type__gallery figure,
  .restaurant-gallery__grid figure {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .room-type__gallery .room-type__main,
  .room-type__gallery figure {
    aspect-ratio: auto;
    background: var(--paper);
  }

  .room-type__gallery img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .room-type__gallery figcaption {
    position: static;
    width: fit-content;
    max-width: calc(100% - 1.3rem);
    margin: 0.55rem 0.65rem 0.65rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    color: var(--wine-dark);
    background: var(--cream);
    font-size: 0.68rem;
    line-height: 1.3;
    backdrop-filter: none;
  }

  .room-photo__zoom {
    top: 0.55rem;
    right: 0.55rem;
    justify-content: center;
    width: 34px;
    min-height: 34px;
    padding: 0;
  }

  .room-photo__zoom span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .photo-lightbox {
    width: calc(100vw - 1rem);
    max-height: calc(100dvh - 1rem);
  }

  .photo-lightbox img {
    max-height: calc(100dvh - 74px);
  }

  .restaurant-gallery__grid {
    grid-auto-rows: auto;
  }

  .home-split__copy {
    padding: 0;
  }

  .home-split__media img,
  .home-split__media video {
    aspect-ratio: 4 / 3;
  }

  .home-split__media--dish {
    min-height: 300px;
  }

  .page-hero > img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .room-carousel {
    grid-auto-columns: minmax(280px, 84vw);
  }

  .grid--two,
  .grid--three,
  .grid--four,
  .home-room-grid,
  .practical-grid,
  .site-map-list {
    grid-template-columns: 1fr;
  }

  .page-hero--compact {
    text-align: left;
  }

  .hours-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .quote-band__inner .button {
    justify-self: start;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-column: 1;
  }

  body.has-mobile-action-bar {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .mobile-action-bar {
    display: grid;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
    border-top: 1px solid var(--line);
    padding: 0.48rem 0.55rem calc(0.48rem + env(safe-area-inset-bottom));
    background: rgba(255, 253, 248, 0.97);
    box-shadow: 0 -12px 30px rgba(62, 31, 38, 0.16);
    backdrop-filter: blur(12px);
  }

  .mobile-action-bar--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-action-bar__item {
    display: grid;
    min-width: 0;
    min-height: 46px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 0.45rem 0.25rem;
    color: var(--wine-dark);
    background: var(--paper);
    font-size: clamp(0.58rem, 2.55vw, 0.69rem);
    font-weight: 900;
    letter-spacing: 0.035em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-action-bar__item.is-primary {
    border-color: var(--wine);
    color: var(--paper);
    background: var(--wine);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
