:root {
  --ink: #071935;
  --ink-2: #10294c;
  --night: #050b15;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --gold: #c79b4d;
  --gold-2: #e5c783;
  --green: #255e55;
  --wine: #57283f;
  --copper: #b76b4b;
  --mist: #e8edf1;
  --muted: #68717f;
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(5, 11, 21, .18);
  --radius: 8px;
  --container: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(199, 155, 77, .34);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--gold);
  color: var(--night);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

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

.container {
  width: min(100% - 56px, var(--container));
  margin: 0 auto;
}

.wide-container {
  width: min(100% - 56px, 1560px);
}

.section-pad {
  padding: 104px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  padding: 14px 0;
  transition: background .28s ease, padding .28s ease, box-shadow .28s ease;
}

.site-header.is-scrolled {
  padding: 8px 0;
  background: rgba(5, 11, 21, .82);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .16);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(100% - 34px, 1540px);
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 12px 10px 20px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(5, 11, 21, .18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 148px;
  flex: 0 0 auto;
}

.brand img {
  width: 148px;
  height: auto;
}

.primary-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.primary-menu > a,
.menu-group > button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  padding: 10px 10px;
  color: var(--ink);
  font-weight: 750;
  font-size: .9rem;
  transition: background .2s ease, color .2s ease;
}

.nav-icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex: 0 0 auto;
}

.primary-menu > a:hover,
.menu-group > button:hover,
.primary-menu > a:focus-visible,
.menu-group > button:focus-visible {
  background: rgba(199, 155, 77, .14);
  color: var(--wine);
  outline: none;
}

.menu-group {
  position: relative;
}

.submenu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  min-width: 220px;
  display: grid;
  gap: 4px;
  padding: 10px;
  background: rgba(255, 253, 248, .98);
  border: 1px solid rgba(16, 41, 76, .1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.submenu a {
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
  font-weight: 700;
}

.submenu a:hover,
.submenu a:focus-visible {
  background: var(--ink);
  color: var(--white);
  outline: none;
}

.menu-group:hover .submenu,
.menu-group:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-cta {
  flex: 0 0 auto;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(7, 25, 53, .22);
}

.nav-cta svg,
.btn svg,
.contact-list svg,
.social-links svg,
.footer-social svg,
.to-top svg,
.floating-call svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(7, 25, 53, .14);
  border-radius: var(--radius);
  background: var(--paper);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
  z-index: 930;
}

.language-current,
.language-menu a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .24);
  font-weight: 950;
}

.language-current {
  min-width: 92px;
  border: 0;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--night);
  box-shadow: 0 14px 34px rgba(199, 155, 77, .28);
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 116px;
  display: grid;
  gap: 9px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(9, 21, 36, .96);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu a {
  width: 100%;
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  padding: 9px 12px;
}

.language-menu a:hover,
.language-menu a:focus-visible,
.language-menu a[aria-current="page"] {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--night);
  outline: none;
}

.flag {
  width: 20px;
  height: 14px;
  display: inline-block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .45), 0 2px 8px rgba(0, 0, 0, .18);
  overflow: hidden;
  flex: 0 0 auto;
}

.flag-tr {
  background:
    radial-gradient(circle at 46% 50%, #d71920 0 18%, transparent 19%),
    radial-gradient(circle at 40% 50%, #fff 0 25%, transparent 26%),
    #d71920;
}

.flag-en {
  background: url("assets/flags/en.svg") center / cover no-repeat;
}

.flag-de {
  background: linear-gradient(#000 0 33%, #dd0000 33% 66%, #ffce00 66%);
}

.flag-ru {
  background: linear-gradient(#fff 0 33%, #1c57a6 33% 66%, #d52b1e 66%);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  padding: 142px 0 84px;
  isolation: isolate;
  overflow: hidden;
  background: var(--night);
}

.hero-media,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 1.2s ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 11, 21, .86), rgba(5, 11, 21, .55) 45%, rgba(5, 11, 21, .16)),
    linear-gradient(0deg, rgba(5, 11, 21, .72), rgba(5, 11, 21, 0) 42%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--green), var(--wine), var(--copper));
}

.hero-content {
  width: min(100% - 36px, 1120px);
  margin: 0 auto;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow.dark {
  color: var(--green);
}

.hero h1,
.intro-copy h2,
.section-heading h2,
.wide-photo-copy h2,
.corporate-copy h2,
.reservation-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.04;
  font-weight: 700;
}

.hero h1 {
  max-width: 760px;
  font-size: 4.8rem;
  text-shadow: 0 22px 62px rgba(0, 0, 0, .32);
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 18px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--night);
  box-shadow: 0 18px 44px rgba(199, 155, 77, .28);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .2);
}

.booking-strip {
  position: relative;
  z-index: 5;
  width: min(100% - 36px, var(--container));
  margin: -34px auto 0;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
  gap: 10px;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(16, 41, 76, .1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.booking-form label,
.reservation-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.booking-form span,
.reservation-form span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 850;
}

.booking-form input,
.booking-form select,
.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(7, 25, 53, .12);
  border-radius: var(--radius);
  background: #fbfaf6;
  padding: 11px 12px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(199, 155, 77, .16);
}

.intro-grid,
.reservation-grid,
.contact-grid,
.corporate-grid {
  display: grid;
  gap: 46px;
  align-items: center;
}

.intro-grid,
.reservation-grid,
.contact-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
}

.intro-copy h2,
.section-heading h2,
.wide-photo-copy h2,
.corporate-copy h2,
.reservation-copy h2,
.contact-copy h2 {
  font-size: 3rem;
}

.intro-copy p,
.section-heading p,
.corporate-copy p,
.reservation-copy p,
.contact-copy p,
.wide-photo-copy p {
  color: #4d5867;
  font-size: 1.02rem;
}

.signature-line {
  margin-top: 26px;
  padding-left: 18px;
  border-left: 4px solid var(--gold);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.5;
}

.intro-image {
  position: relative;
}

.intro-image::before {
  content: "";
  position: absolute;
  inset: 24px -22px -22px 24px;
  border: 1px solid rgba(199, 155, 77, .46);
  border-radius: var(--radius);
  z-index: -1;
}

.intro-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-band {
  padding: 44px 0;
  background: linear-gradient(135deg, var(--ink), var(--green));
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-item {
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, .08);
}

.service-item svg {
  width: 32px;
  height: 32px;
  fill: var(--gold-2);
}

.service-item h3 {
  margin: 18px 0 8px;
  font-size: 1.08rem;
}

.service-item p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.rooms-section {
  position: relative;
  overflow: hidden;
}

.rooms-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, .96), rgba(255, 253, 248, .86)),
    var(--rooms-bg) center / cover;
  z-index: -1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.light {
  color: var(--white);
}

.section-heading.light p {
  color: rgba(255, 255, 255, .78);
}

.room-luxury-wrap {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.room-selector {
  display: grid;
  gap: 10px;
}

.room-selector button {
  min-height: 104px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-areas:
    "num title"
    "num meta";
  column-gap: 14px;
  align-items: center;
  border: 1px solid rgba(7, 25, 53, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .76);
  padding: 18px;
  text-align: left;
  box-shadow: 0 14px 36px rgba(5, 11, 21, .06);
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.room-selector button:hover,
.room-selector button:focus-visible {
  border-color: rgba(199, 155, 77, .55);
  transform: translateY(-2px);
  outline: none;
}

.room-selector button[aria-selected="true"] {
  background: linear-gradient(135deg, var(--ink), var(--green));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 24px 60px rgba(7, 25, 53, .18);
}

.room-selector span {
  grid-area: num;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(199, 155, 77, .18);
  color: var(--gold);
  font-weight: 950;
}

.room-selector button[aria-selected="true"] span {
  background: rgba(255, 255, 255, .16);
  color: var(--gold-2);
}

.room-selector strong {
  grid-area: title;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.05;
}

.room-selector small {
  grid-area: meta;
  color: var(--muted);
  font-weight: 800;
}

.room-selector button[aria-selected="true"] small {
  color: rgba(255, 255, 255, .74);
}

.room-panels {
  min-width: 0;
  border-radius: var(--radius);
}

.room-panel {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: stretch;
  padding: 20px;
  border: 1px solid rgba(7, 25, 53, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

[hidden] {
  display: none !important;
}

.room-media {
  position: relative;
  min-height: 580px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mist);
}

.room-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 11, 21, .38), rgba(5, 11, 21, 0) 44%);
  pointer-events: none;
}

.room-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

.room-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 12px 18px 0;
}

.room-kicker {
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 900;
}

.room-copy h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1.1;
}

.room-copy p {
  color: #4d5867;
}

.room-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 4px;
}

.room-highlights span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  background: rgba(37, 94, 85, .1);
  color: var(--green);
  padding: 8px 11px;
  font-weight: 900;
}

.room-cta {
  align-self: flex-start;
}

.feature-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 10px;
}

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

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-2);
  font-weight: 700;
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .46em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--green));
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--wine);
  font-weight: 900;
  border-bottom: 2px solid rgba(87, 40, 63, .28);
}

.wide-photo-section {
  width: min(100% - 56px, 1560px);
  min-height: 500px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  background: var(--night);
  color: var(--white);
  overflow: hidden;
  margin: 72px auto 104px;
  border-radius: var(--radius);
  box-shadow: 0 28px 78px rgba(5, 11, 21, .18);
}

.wide-photo-copy {
  width: min(100% - 60px, 600px);
  justify-self: center;
  align-self: center;
  padding: 70px 0;
}

.wide-photo-copy p {
  color: rgba(255, 255, 255, .78);
}

.wide-photo-section > img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
}

.corporate-section {
  background:
    linear-gradient(180deg, rgba(232, 237, 241, .55), rgba(255, 253, 248, 1));
}

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

.corporate-copy {
  min-height: 520px;
  border-radius: var(--radius);
  padding: 40px;
  background: var(--white);
  border: 1px solid rgba(7, 25, 53, .1);
  box-shadow: 0 20px 50px rgba(5, 11, 21, .08);
}

.vision-metric {
  margin-top: 34px;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--wine), var(--ink));
  color: var(--white);
}

.vision-metric span,
.vision-metric small {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
}

.vision-metric strong {
  display: block;
  margin: 5px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.1;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  background: var(--night);
}

.reviews-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 21, .95), rgba(5, 11, 21, .64)),
    url("assets/images/reviews-bg.jpg") center / cover;
  transform: scale(1.04);
}

.reviews-content {
  position: relative;
  z-index: 1;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 242, 232, .94));
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

.reviews-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.stars {
  color: var(--gold-2);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.review-card p {
  margin: 0;
  color: #26384f;
  font-size: 1.02rem;
}

.review-card footer {
  margin-top: auto;
  color: #68717f;
  font-size: .92rem;
  font-weight: 800;
}

.review-card a {
  color: var(--gold-2);
  font-weight: 800;
}

.gallery-section {
  background:
    linear-gradient(180deg, var(--paper), rgba(232, 237, 241, .62));
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 270px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mist);
  box-shadow: 0 18px 48px rgba(5, 11, 21, .11);
}

.gallery-large {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .55s ease;
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 11, 21, .62), rgba(5, 11, 21, 0) 48%);
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-weight: 950;
  text-shadow: 0 10px 24px rgba(0, 0, 0, .34);
}

.faq-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(199, 155, 77, .14), transparent 28%),
    linear-gradient(135deg, #fbfaf6, #eef3f1);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.faq-intro {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 25, 53, .94), rgba(37, 94, 85, .92)),
    url("assets/images/welcome.jpg") center / cover;
  color: var(--white);
  padding: 44px;
  box-shadow: var(--shadow);
}

.faq-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1.04;
}

.faq-intro p {
  color: rgba(255, 255, 255, .78);
}

.faq-list {
  display: grid;
  gap: 12px;
  align-content: center;
}

.faq-list details {
  border: 1px solid rgba(7, 25, 53, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 16px 42px rgba(5, 11, 21, .07);
  overflow: hidden;
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(199, 155, 77, .18);
  color: var(--gold);
  flex: 0 0 auto;
}

.faq-list details[open] summary {
  background: linear-gradient(135deg, rgba(7, 25, 53, .96), rgba(37, 94, 85, .94));
  color: var(--white);
}

.faq-list details[open] summary::after {
  content: "–";
  background: rgba(255, 255, 255, .16);
  color: var(--gold-2);
}

.faq-list p {
  margin: 0;
  padding: 18px 22px 22px;
  color: #4d5867;
}

.reservation-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(5, 11, 21, .94), rgba(7, 25, 53, .82)),
    url("assets/images/find-us.jpg") right center / auto 100% no-repeat;
  color: var(--white);
  overflow: hidden;
}

.reservation-section::before {
  display: none;
}

.reservation-section .reservation-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .88fr);
  gap: 54px;
  align-items: center;
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 25, 43, .92), rgba(16, 34, 55, .72)),
    linear-gradient(90deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
  backdrop-filter: blur(18px);
}

.reservation-copy {
  max-width: 690px;
}

.reservation-copy .eyebrow {
  color: var(--gold-2);
}

.reservation-copy p {
  color: rgba(255, 255, 255, .9);
}

.reservation-copy h2 {
  max-width: 760px;
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-pills a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .96);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid rgba(229, 199, 131, .52);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
  font-weight: 950;
  overflow-wrap: anywhere;
}

.contact-pills a:hover,
.contact-pills a:focus-visible {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--night);
  outline: none;
}

.reservation-form {
  display: grid;
  gap: 14px;
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .96);
  border: 1px solid rgba(255, 255, 255, .24);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  width: min(100%, 640px);
  justify-self: end;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.reservation-form textarea {
  resize: vertical;
}

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

.contact-copy address {
  margin: 26px 0;
  color: #4d5867;
  font-style: normal;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  border-radius: var(--radius);
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid rgba(7, 25, 53, .1);
  color: var(--ink);
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(5, 11, 21, .06);
  overflow-wrap: anywhere;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links a,
.footer-social a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(5, 11, 21, .16);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.social-links a:hover,
.social-links a:focus-visible,
.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--night);
  outline: none;
}

.map-wrap {
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(7, 25, 53, .1);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.site-footer {
  background: var(--night);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .9fr;
  gap: 42px;
}

.footer-logo {
  width: 164px;
  height: auto;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  max-width: 620px;
  color: rgba(255, 255, 255, .72);
}

.site-footer h2 {
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, .76);
  margin: 8px 0;
}

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

.site-footer .footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 10px 0;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
  transition: color .2s ease, transform .2s ease;
}

.site-footer .footer-link:hover,
.site-footer .footer-link:focus-visible {
  color: var(--gold-2);
  transform: translateX(3px);
  outline: none;
}

.footer-link-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  padding: 6px;
  border: 1px solid rgba(232, 190, 108, .28);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, .24), rgba(199, 155, 77, .18) 44%, rgba(255, 255, 255, .05) 100%);
  color: var(--gold-2);
  fill: currentColor;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 8px 20px rgba(0, 0, 0, .16);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.site-footer .footer-social a {
  margin: 0;
  display: inline-flex;
  color: var(--white);
}

.footer-bottom {
  margin-top: 48px;
  padding: 18px max(18px, calc((100% - var(--container)) / 2));
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, .64);
  font-size: .92rem;
}

.design-credit {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  white-space: nowrap;
}

.credit-heart {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 226, 148, .72);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #fff5cf 0 12%, #e8be6c 32%, #c79b4d 58%, #761a2a 100%);
  color: #7b1425;
  font-size: .98rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .08), 0 0 22px rgba(232, 190, 108, .44), 0 14px 34px rgba(0, 0, 0, .22);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .28), 0 0 10px rgba(255, 255, 255, .42);
  animation: premiumHeartPulse 1.15s ease-in-out infinite;
}

.site-footer .design-credit a {
  display: inline-flex;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-weight: 800;
}

.site-footer .design-credit a:hover,
.site-footer .design-credit a:focus-visible {
  color: var(--gold-2);
  outline: none;
}

@keyframes premiumHeartPulse {
  0%,
  100% {
    opacity: .76;
    transform: scale(.96);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .08), 0 0 16px rgba(232, 190, 108, .28), 0 10px 26px rgba(0, 0, 0, .18);
  }

  45% {
    opacity: 1;
    transform: scale(1.14);
    box-shadow: 0 0 0 4px rgba(232, 190, 108, .15), 0 0 30px rgba(255, 226, 148, .66), 0 18px 38px rgba(120, 31, 46, .36);
  }
}

.side-reservation {
  position: fixed;
  left: 0;
  top: 50%;
  z-index: 690;
  min-height: 194px;
  width: 54px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-left: 0;
  border-radius: 0 16px 16px 0;
  background: linear-gradient(180deg, #f0cf7a, #c79229 52%, #8b5d13);
  color: var(--night);
  box-shadow: 0 18px 42px rgba(5, 11, 21, .26), inset 0 1px 0 rgba(255, 255, 255, .35);
  transform: translateY(-50%);
  overflow: hidden;
  animation: sideReservationPulse 2s ease-in-out infinite;
}

.side-reservation::before {
  content: "";
  position: absolute;
  inset: -40% -120%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .42) 46%, transparent 62%);
  transform: translateX(-45%);
  animation: sideReservationSheen 3.6s ease-in-out infinite;
}

.side-reservation svg {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.side-reservation span {
  position: relative;
  display: inline-block;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--night);
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.side-reservation:hover,
.side-reservation:focus-visible {
  color: var(--night);
  outline: none;
  filter: saturate(1.08) brightness(1.04);
}

@keyframes sideReservationPulse {
  0%,
  100% {
    box-shadow: 0 18px 42px rgba(5, 11, 21, .26), inset 0 1px 0 rgba(255, 255, 255, .35);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(232, 190, 108, .13), 0 22px 52px rgba(5, 11, 21, .32), 0 0 34px rgba(232, 190, 108, .34), inset 0 1px 0 rgba(255, 255, 255, .48);
  }
}

@keyframes sideReservationSheen {
  0%,
  42% {
    transform: translateX(-45%);
  }

  70%,
  100% {
    transform: translateX(52%);
  }
}

.carissa-chatbot {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 940;
  color: var(--ink);
}

.carissa-chatbot * {
  box-sizing: border-box;
}

.chatbot-launcher {
  position: relative;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 8px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(7, 25, 53, .98), rgba(16, 41, 76, .96) 55%, rgba(199, 155, 77, .98));
  color: var(--white);
  box-shadow: 0 20px 48px rgba(5, 11, 21, .26), 0 0 0 1px rgba(199, 155, 77, .16);
  overflow: hidden;
  isolation: isolate;
}

.chatbot-launcher::before {
  content: "";
  position: absolute;
  inset: -80% -40%;
  z-index: -1;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, .32) 48%, transparent 62%);
  transform: translateX(-70%);
  animation: chatbotSheen 3.8s ease-in-out infinite;
}

.chatbot-launcher:hover,
.chatbot-launcher:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(5, 11, 21, .32), 0 0 34px rgba(229, 199, 131, .28);
}

.chatbot-launcher-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: radial-gradient(circle at 30% 20%, #fff7d6 0 18%, #e5c783 42%, #c79b4d 100%);
  color: var(--night);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .62), 0 10px 22px rgba(0, 0, 0, .2);
}

.chatbot-launcher-icon svg,
.chatbot-head-icon svg,
.chatbot-close svg,
.chatbot-submit svg,
.chatbot-input button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.chatbot-launcher-text {
  position: relative;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.chatbot-panel {
  position: absolute;
  left: 0;
  bottom: 76px;
  width: min(410px, calc(100vw - 44px));
  max-height: min(690px, calc(100svh - 112px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(5, 11, 21, .34), 0 0 0 1px rgba(199, 155, 77, .1);
  overflow: hidden;
  transform-origin: left bottom;
  animation: chatbotPanelIn .22s ease both;
}

.chatbot-panel[hidden],
.chatbot-conversation[hidden],
.chatbot-lead-form[hidden] {
  display: none;
}

.chatbot-head {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 36%),
    linear-gradient(145deg, var(--night), var(--ink-2));
  color: var(--white);
}

.chatbot-head-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--night);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45), 0 14px 30px rgba(0, 0, 0, .22);
}

.chatbot-head strong,
.chatbot-head span {
  display: block;
}

.chatbot-head strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.1;
}

.chatbot-head div > span {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
  font-weight: 800;
}

.chatbot-head i {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #2ee59d;
  box-shadow: 0 0 0 5px rgba(46, 229, 157, .12), 0 0 14px rgba(46, 229, 157, .66);
}

.chatbot-close {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.chatbot-close:hover,
.chatbot-close:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, .16);
}

.chatbot-body {
  max-height: calc(min(690px, 100svh - 112px) - 77px);
  overflow: auto;
  padding: 16px;
  background:
    radial-gradient(circle at top left, rgba(229, 199, 131, .18), transparent 38%),
    linear-gradient(180deg, var(--paper), #f2ede4);
}

.chatbot-intro {
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid rgba(7, 25, 53, .09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 38px rgba(5, 11, 21, .06);
}

.chatbot-intro span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chatbot-intro p {
  margin: 0;
  color: var(--ink-2);
  font-size: .94rem;
}

.chatbot-lead-form,
.chatbot-conversation {
  display: grid;
  gap: 12px;
}

.chatbot-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.chatbot-field {
  display: grid;
  gap: 6px;
}

.chatbot-field span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
}

.chatbot-field input,
.chatbot-field select,
.chatbot-input input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(7, 25, 53, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  padding: 0 12px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.chatbot-field input:focus,
.chatbot-field select:focus,
.chatbot-input input:focus {
  border-color: rgba(199, 155, 77, .68);
  box-shadow: 0 0 0 4px rgba(199, 155, 77, .13);
}

.chatbot-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
}

.chatbot-consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  margin-top: 2px;
}

.chatbot-submit,
.chatbot-input button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--night);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(199, 155, 77, .24);
}

.chatbot-submit:hover,
.chatbot-submit:focus-visible,
.chatbot-input button:hover,
.chatbot-input button:focus-visible {
  outline: none;
  filter: brightness(1.03);
}

.chatbot-messages {
  max-height: 280px;
  display: grid;
  gap: 10px;
  overflow: auto;
  padding-right: 3px;
}

.chatbot-message {
  display: flex;
}

.chatbot-message.is-user {
  justify-content: flex-end;
}

.chatbot-bubble {
  max-width: 86%;
  padding: 11px 13px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  color: var(--ink-2);
  border: 1px solid rgba(7, 25, 53, .08);
  box-shadow: 0 12px 28px rgba(5, 11, 21, .06);
  font-size: .92rem;
  line-height: 1.55;
}

.chatbot-message.is-user .chatbot-bubble {
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  color: var(--white);
  border-color: rgba(255, 255, 255, .12);
}

.chatbot-typing .chatbot-bubble {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  min-width: 58px;
  min-height: 38px;
}

.chatbot-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: chatbotDot 1s ease-in-out infinite;
}

.chatbot-typing span:nth-child(2) {
  animation-delay: .14s;
}

.chatbot-typing span:nth-child(3) {
  animation-delay: .28s;
}

.chatbot-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.chatbot-chips button,
.chatbot-mini-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(199, 155, 77, .28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 900;
}

.chatbot-chips button:hover,
.chatbot-chips button:focus-visible,
.chatbot-mini-links a:hover,
.chatbot-mini-links a:focus-visible {
  outline: none;
  border-color: rgba(199, 155, 77, .58);
  background: rgba(229, 199, 131, .2);
}

.chatbot-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 8px;
}

.chatbot-input button {
  width: 48px;
  padding: 0;
}

.chatbot-mini-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

@keyframes chatbotSheen {
  0%,
  45% {
    transform: translateX(-70%);
  }

  75%,
  100% {
    transform: translateX(70%);
  }
}

@keyframes chatbotPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes chatbotDot {
  0%,
  100% {
    opacity: .34;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 700;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--night);
  box-shadow: 0 16px 42px rgba(5, 11, 21, .22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 78px;
  z-index: 700;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green), #2f7b70);
  color: var(--white);
  box-shadow: 0 16px 42px rgba(5, 11, 21, .22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.floating-call.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-bar {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 24px;
  z-index: 950;
  width: min(760px, calc(100% - 520px));
  min-width: min(420px, calc(100% - 40px));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(5, 11, 21, .94);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
  transform: translateX(-50%) translateY(10px);
}

.cookie-bar.is-visible {
  display: flex;
  transform: translateX(-50%) translateY(0);
}

.cookie-bar strong {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-2);
}

.cookie-bar p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.cookie-bar .btn {
  flex: 0 0 auto;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 700px) {
  .carissa-chatbot {
    left: 12px;
    bottom: 20px;
  }

  .chatbot-launcher {
    width: 54px;
    min-height: 54px;
    gap: 0;
    padding: 6px;
  }

  .chatbot-launcher-icon {
    width: 40px;
    height: 40px;
  }

  .chatbot-launcher-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .chatbot-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    top: var(--chatbot-panel-top, 112px);
    bottom: 84px;
    width: auto;
    max-height: none;
  }

  .chatbot-body {
    min-height: 0;
    max-height: none;
    padding: 14px;
  }

  .carissa-chatbot.is-keyboard .chatbot-launcher {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .carissa-chatbot.is-keyboard .chatbot-panel {
    bottom: calc(var(--chatbot-keyboard-offset, 0px) + 10px);
  }

  .chatbot-head {
    grid-template-columns: 42px minmax(0, 1fr) 36px;
    gap: 10px;
    padding: 12px;
  }

  .chatbot-head-icon {
    width: 42px;
    height: 42px;
  }

  .chatbot-head strong {
    font-size: 1.02rem;
  }

  .chatbot-field-grid,
  .chatbot-chips,
  .chatbot-mini-links {
    grid-template-columns: 1fr;
  }

  .chatbot-messages {
    max-height: clamp(126px, 30svh, 250px);
  }

  .carissa-chatbot.is-keyboard .chatbot-messages {
    max-height: clamp(88px, 20svh, 170px);
  }

  .carissa-chatbot.is-keyboard .chatbot-mini-links {
    display: none;
  }

  body.chatbot-open .side-reservation {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  body.chatbot-open .floating-call,
  body.chatbot-open .to-top {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 1320px) {
  .review-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .room-luxury-wrap {
    grid-template-columns: 320px minmax(0, 1fr);
  }

  .room-panel {
    grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 1120px) {
  .nav-shell {
    gap: 12px;
  }

  .nav-cta span {
    display: none;
  }

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

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

  .booking-form button {
    grid-column: span 3;
  }

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

@media (max-width: 920px) {
  .brand {
    order: 1;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
    margin-left: 0;
  }

  .nav-cta {
    display: none;
  }

  .language-switcher {
    order: 2;
    margin-left: auto;
  }

  .primary-menu {
    z-index: 920;
    position: fixed;
    inset: 98px 18px auto 18px;
    max-height: calc(100svh - 118px);
    overflow: auto;
    display: none;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(255, 253, 248, .98);
    box-shadow: var(--shadow);
    border: 1px solid rgba(7, 25, 53, .1);
  }

  .primary-menu.is-open {
    display: grid;
    gap: 4px;
  }

  .primary-menu > a,
  .menu-group > button {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .submenu {
    position: static;
    display: none;
    min-width: 0;
    margin: 2px 0 8px 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-color: rgba(7, 25, 53, .08);
    background: rgba(7, 25, 53, .04);
  }

  .menu-group.is-open .submenu {
    display: grid;
  }

  .hero {
    min-height: 86svh;
    padding-top: 126px;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .intro-grid,
  .reservation-grid,
  .contact-grid,
  .corporate-grid,
  .room-luxury-wrap,
  .room-panel,
  .faq-grid,
  .wide-photo-section {
    grid-template-columns: 1fr;
  }

  .intro-copy h2,
  .section-heading h2,
  .wide-photo-copy h2,
  .corporate-copy h2,
  .reservation-copy h2,
  .contact-copy h2 {
    font-size: 2.42rem;
  }

  .room-copy {
    padding: 0;
  }

  .reservation-section .reservation-grid {
    grid-template-columns: 1fr;
    padding: 38px;
  }

  .reservation-form {
    width: 100%;
    justify-self: stretch;
  }

  .room-selector {
    grid-template-columns: repeat(5, minmax(210px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .room-selector button {
    min-height: 96px;
  }

  .room-media {
    min-height: 420px;
  }

  .faq-intro {
    min-height: 360px;
  }

  .faq-intro h2 {
    font-size: 2.42rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 230px;
  }

  .gallery-large,
  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .wide-photo-copy {
    width: min(100% - 36px, 760px);
    justify-self: center;
    padding: 56px 0 34px;
  }

  .wide-photo-section > img {
    min-height: 380px;
  }
}

@media (max-width: 700px) {
  .section-pad {
    padding: 78px 0;
  }

  .nav-shell {
    width: min(100% - 24px, 1240px);
    min-height: 64px;
    gap: 8px;
    padding: 8px 10px 8px 14px;
  }

  .brand,
  .brand img {
    width: 118px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .language-current {
    min-width: 74px;
    min-height: 42px;
    padding: 0 12px;
  }

  .language-menu {
    right: -48px;
    top: calc(100% + 10px);
    width: 108px;
    padding: 10px;
  }

  .language-menu a {
    min-height: 42px;
    padding: 8px 10px;
  }

  .primary-menu {
    inset: 88px 12px auto 12px;
  }

  .hero {
    min-height: 84svh;
    padding: 116px 0 68px;
  }

  .hero h1 {
    font-size: 3rem;
  }

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

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .booking-strip {
    width: min(100% - 24px, var(--container));
    margin-top: -18px;
  }

  .booking-form,
  .service-grid,
  .review-track,
  .gallery-grid,
  .feature-list,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    gap: 8px;
    padding: 10px;
  }

  .booking-form label {
    gap: 4px;
  }

  .booking-form span {
    font-size: .72rem;
  }

  .booking-form input,
  .booking-form select {
    min-height: 42px;
    padding: 8px 10px;
    font-size: .9rem;
  }

  .booking-form button {
    grid-column: auto;
    min-height: 42px;
    align-self: end;
    padding: 9px 10px;
    font-size: .9rem;
  }

  .booking-form button svg {
    width: 17px;
    height: 17px;
  }

  .intro-copy h2,
  .section-heading h2,
  .wide-photo-copy h2,
  .corporate-copy h2,
  .reservation-copy h2,
  .contact-copy h2 {
    font-size: 2.05rem;
  }

  .corporate-copy {
    min-height: auto;
    padding: 28px;
  }

  .room-panel {
    padding: 12px;
  }

  .room-selector {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .room-media {
    min-height: 280px;
  }

  .room-copy h3 {
    font-size: 2rem;
  }

  .wide-photo-section {
    width: min(100% - 24px, 1560px);
    margin: 48px auto 72px;
  }

  .reservation-section .reservation-grid {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 28px;
  }

  .faq-intro {
    min-height: 330px;
    padding: 30px;
  }

  .cookie-bar {
    top: 50%;
    bottom: auto;
    width: min(100% - 34px, 360px);
    min-width: 0;
    max-width: 360px;
    max-height: calc(100svh - 48px);
    overflow: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    transform: translate(-50%, -50%);
  }

  .cookie-bar.is-visible {
    transform: translate(-50%, -50%);
  }

  .cookie-bar .btn {
    width: 100%;
  }

  .contact-pills a {
    width: 100%;
  }

  .side-reservation {
    left: 12px;
    top: auto;
    bottom: 86px;
    width: 52px;
    max-width: 52px;
    min-height: 48px;
    flex-direction: row;
    gap: 0;
    padding: 12px 14px;
    border-left: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius);
    transform: none;
    transition: max-width .34s cubic-bezier(.2, .8, .2, 1), width .34s cubic-bezier(.2, .8, .2, 1), gap .24s ease, padding .24s ease, filter .2s ease;
  }

  .side-reservation.is-open {
    width: auto;
    max-width: min(76vw, 230px);
    gap: 10px;
    padding-inline: 16px 18px;
  }

  .side-reservation span {
    writing-mode: horizontal-tb;
    transform: none;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: .82rem;
    letter-spacing: 0;
    transition: max-width .34s cubic-bezier(.2, .8, .2, 1), opacity .2s ease;
  }

  .side-reservation.is-open span {
    max-width: 170px;
    opacity: 1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .nav-shell {
    width: min(100% - 16px, 1240px);
    padding-inline: 10px;
  }

  .brand,
  .brand img {
    width: 108px;
  }

  .language-current {
    min-width: 66px;
    gap: 6px;
    padding-inline: 9px;
  }

  .language-current span:last-child {
    font-size: .86rem;
  }

  .flag {
    width: 18px;
    height: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
