/* services.css */

.restaurant-page {
  background: var(--service-page-bg);
  color: #131212;
}

.restaurant-shell {
  margin: 0 auto;
}

.restaurant-title,
.restaurant-section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
}

.restaurant-title {
  font-size: clamp(3.4rem, 6vw, 6rem);
  line-height: 0.92;
}

.restaurant-section-title {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.96;
}

.restaurant-lead {
  font-size: 1rem;
  line-height: 1.7;
}

.restaurant-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #f7f1e7;
  padding: calc(var(--header-height) + 74px) 0 72px;
  background: #171513;
}

.restaurant-hero__media,
.restaurant-hero__overlay {
  position: absolute;
  inset: 0;
}

.restaurant-hero__media {
  background:
    radial-gradient(circle at 24% 42%, rgba(255, 238, 214, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #4d453c 0%, #c6b8a4 32%, #8e6e53 58%, #2b231e 100%);
}

.restaurant-hero__overlay {
  background:
    linear-gradient(180deg, rgba(14, 13, 12, 0.2), rgba(14, 13, 12, 0.76)),
    linear-gradient(90deg, rgba(14, 13, 12, 0.68) 0%, rgba(14, 13, 12, 0.26) 42%, rgba(14, 13, 12, 0.2) 100%);
}

.restaurant-hero__content {
  position: relative;
  z-index: 2;
}

.restaurant-hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}

.restaurant-hero--dining {
  padding: calc(var(--header-height) + 86px) 0 84px;
}

.restaurant-hero__media--dining {
  background:
    radial-gradient(circle at 73% 20%, rgba(255, 255, 255, 0.14), transparent 18%),
    radial-gradient(circle at 62% 24%, rgba(255, 233, 179, 0.12), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(120deg, #33302f 0%, #8d7b67 34%, #d9d5d2 61%, #c8c4c0 82%, #e7e8ea 100%);
}

.restaurant-hero__overlay--dining {
  background:
    linear-gradient(90deg, rgba(14, 13, 12, 0.78) 0%, rgba(14, 13, 12, 0.52) 28%, rgba(14, 13, 12, 0.18) 58%, rgba(14, 13, 12, 0.08) 100%),
    linear-gradient(180deg, rgba(14, 13, 12, 0.08), rgba(14, 13, 12, 0.42));
}

.restaurant-hero__content--dining {
  max-width: 560px;
  padding-left: 96px;
}

.restaurant-hero__crest {
  width: 260px;
  margin-bottom: 20px;
}

.restaurant-hero__crest img {
  display: block;
  width: 100%;
  height: auto;
}

.restaurant-hero__actions--dining {
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.restaurant-button--tab {
  min-height: var(--button-height);
  padding: 0 var(--button-padding-x);
  gap: 10px;
  font-size: var(--button-font-size);
  letter-spacing: var(--button-letter-spacing-compact);
}

.restaurant-button--tab::after {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 5px;
  background: currentColor;
  -webkit-mask: url("../images/figma/mobile-arrow-down-figma.svg") center / contain no-repeat;
  mask: url("../images/figma/mobile-arrow-down-figma.svg") center / contain no-repeat;
}

.dining-section {
  background: var(--service-page-bg);
  color: #141312;
  padding: 118px 0 34px;
}

.dining-section__intro {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(240px, 1fr) minmax(240px, 1fr) auto;
  gap: 42px;
  align-items: start;
  margin-bottom: 48px;
}

.dining-section__heading .restaurant-section-title {
  font-size: clamp(3.2rem, 4.8vw, 5rem);
  line-height: 0.94;
}

.dining-section__copy p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #2c2824;
}

.dining-section__controls {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
}

.dining-section__menu-button {
  min-height: var(--button-height);
  padding: 0 var(--button-padding-x);
  font-size: var(--button-font-size);
  letter-spacing: var(--button-letter-spacing);
}

.dining-section__nav {
  display: flex;
  gap: 12px;
}

.dining-gallery {
  display: grid;
  gap: 18px;
}

.dining-gallery--restaurant {
  grid-template-columns: minmax(0, 2.1fr) minmax(280px, 1fr);
}

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

.dining-gallery--spa {
  grid-template-columns: minmax(0, 1.4fr) minmax(340px, 1fr);
}

.dining-photo {
  min-height: 420px;
  background-position: center;
  background-size: cover;
}

.dining-gallery[data-gallery-carousel],
.dessange-gallery[data-gallery-carousel],
.conference-detail__gallery[data-gallery-carousel] {
  --gallery-shift: 0;
}

.dining-gallery[data-gallery-carousel] > *,
.dessange-gallery[data-gallery-carousel] > *,
.conference-detail__gallery[data-gallery-carousel] > * {
  cursor: zoom-in;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.dining-gallery[data-gallery-carousel].is-gallery-changing > *,
.dessange-gallery[data-gallery-carousel].is-gallery-changing > *,
.conference-detail__gallery[data-gallery-carousel].is-gallery-changing > * {
  opacity: 0.36;
  transform: translateX(var(--gallery-shift, 0));
}

.dining-photo--restaurant-main {
  background:
    radial-gradient(circle at 70% 26%, rgba(255, 255, 255, 0.2), transparent 16%),
    linear-gradient(120deg, #d6dbe7 0%, #f5f7fa 44%, #b8a896 72%, #7e6754 100%);
}

.dining-photo--restaurant-side {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 211, 111, 0.28), transparent 16%),
    linear-gradient(135deg, #f5e1ad 0%, #f7f6f0 38%, #d3d8e0 64%, #7a7169 100%);
}

.dining-photo--terrace-left {
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(135deg, #d6e1ee 0%, #fbf0d1 34%, #8ba6bf 62%, #5f4434 100%);
}

.dining-photo--terrace-right {
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 245, 193, 0.26), transparent 20%),
    linear-gradient(135deg, #e8ddcd 0%, #faf5ec 36%, #c5b8aa 62%, #92745b 100%);
}

.restaurant-page--restaurant {
  background: var(--service-page-bg);
  color: #000;
}

.restaurant-page--restaurant .restaurant-shell {
  width: min(calc(100vw - 80px), 1840px);
}

.restaurant-page--restaurant .restaurant-hero {
  min-height: 100svh;
  align-items: flex-start;
  padding: clamp(320px, 42.87vh, 463px) 0 80px;
  background: #141414;
  overflow: hidden;
}

.restaurant-page--restaurant .restaurant-hero__media--dining {
  background: url("../images/figma/restaurant-hero-figma.webp") center / cover no-repeat;
}

.restaurant-page--restaurant .restaurant-hero__overlay--dining {
  background:
    linear-gradient(35deg, rgba(0, 0, 0, 0.92) 3%, rgba(0, 0, 0, 0) 89%),
    rgba(0, 0, 0, 0.04);
}

.restaurant-page--restaurant .restaurant-hero__content--dining {
  max-width: 720px;
  padding-left: clamp(0px, 6.25vw, 120px);
}

.restaurant-page--restaurant .restaurant-hero__crest {
  width: 250px;
  height: 152px;
  margin-bottom: 30px;
}

.restaurant-page--restaurant .restaurant-hero__crest img {
  width: 100%;
  height: 100%;
}

.restaurant-page--restaurant .restaurant-title,
.restaurant-page--restaurant .restaurant-section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
}

.restaurant-page--restaurant .restaurant-title {
  font-size: 65px;
  line-height: 1;
}

.restaurant-page--restaurant .restaurant-lead {
  margin: 20px 0 0;
  max-width: 620px;
  font-size: 20px;
  line-height: 1.28;
  color: #fff;
}

.restaurant-page--restaurant .restaurant-hero__actions--dining {
  gap: 25px;
  margin-top: 48px;
}

.restaurant-page--restaurant .restaurant-hero__actions .button-circle,
.restaurant-page--restaurant .dining-section__nav .button-circle {
  width: var(--button-circle-size);
  height: var(--button-circle-size);
  min-width: var(--button-circle-size);
  min-height: var(--button-circle-size);
}

.restaurant-page--restaurant .restaurant-button--tab {
  width: 165px;
  min-height: var(--button-height);
  padding: 0 28px;
  font-size: var(--button-font-size);
  letter-spacing: var(--button-letter-spacing-compact);
}

.restaurant-page--restaurant .dining-section {
  min-height: 1244px;
  padding: 271px 0 54px;
  background: var(--service-page-bg);
  color: #000;
}

.restaurant-page--restaurant .dining-section__intro {
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 600px) minmax(320px, 1fr);
  grid-template-areas:
    "heading heading ."
    "copy-left copy-right controls";
  column-gap: 20px;
  row-gap: 20px;
  align-items: start;
  margin-bottom: 49px;
}

.restaurant-page--restaurant .dining-section__heading {
  grid-area: heading;
  width: min(1220px, 100%);
}

.restaurant-page--restaurant .dining-section__heading .restaurant-section-title {
  font-size: 65px;
  line-height: 75px;
}

.restaurant-page--restaurant .dining-section__copy--left {
  grid-area: copy-left;
}

.restaurant-page--restaurant .dining-section__copy--right {
  grid-area: copy-right;
}

.restaurant-page--restaurant .dining-section__copy p {
  max-width: 600px;
  font-size: 22px;
  line-height: 26px;
  color: #222121;
}

.restaurant-page--restaurant .dining-section__controls {
  grid-area: controls;
  justify-self: end;
  align-self: end;
  gap: 24px;
  margin-top: 0;
}

.restaurant-page--restaurant .dining-section__menu-button {
  min-height: var(--button-height);
  padding: 0 var(--button-padding-x);
  border-color: #c6c1a1;
  font-size: var(--button-font-size);
  letter-spacing: var(--button-letter-spacing);
}

.restaurant-page--restaurant .dining-section__nav {
  gap: 20px;
}

.restaurant-page--restaurant .dining-gallery {
  gap: 20px;
}

.restaurant-page--restaurant .dining-gallery--restaurant {
  grid-template-columns: minmax(0, 1218fr) minmax(0, 600fr);
  column-gap: 22px;
}

.restaurant-page--restaurant .dining-gallery--terrace {
  grid-template-columns: minmax(0, 910fr) minmax(0, 912fr);
}

.restaurant-page--restaurant .dining-photo {
  height: 630px;
  min-height: 630px;
  background-repeat: no-repeat;
}

.restaurant-page--restaurant .dining-photo--restaurant-main {
  background-image: url("../images/figma/restaurant-main-figma.webp");
  background-position: center bottom;
  background-size: 100% auto;
}

.restaurant-page--restaurant .dining-photo--restaurant-side {
  background-image: url("../images/figma/restaurant-side-figma.webp");
  background-position: center;
  background-size: cover;
}

.restaurant-page--restaurant .dining-photo--terrace-left {
  background-image: url("../images/figma/restaurant-terrace-left-figma.webp");
  background-position: center;
  background-size: cover;
}

.restaurant-page--restaurant .dining-photo--terrace-right {
  background-image: url("../images/figma/restaurant-terrace-right-figma.webp");
  background-position: center;
  background-size: cover;
}

.dining-photo--spa-left {
  background-image: url("../images/figma/spa-gallery-left-figma.webp");
}

.dining-photo--spa-right {
  background-image: url("../images/figma/spa-gallery-right-figma.webp");
}

.restaurant-button--light {
  min-height: var(--button-height);
  padding: 0 var(--button-padding-x);
}

@media (max-width: 1180px) {
  .dining-section__intro,
  .dining-gallery--restaurant,
  .dining-gallery--terrace,
  .dining-gallery--spa,
  .dessange-gallery {
    grid-template-columns: 1fr;
  }

  .dining-section__controls {
    justify-self: start;
  }
}

@media (max-width: 920px) {
  .restaurant-shell {
    width: min(100vw - 28px, 1480px);
  }

  .restaurant-hero {
    min-height: 82svh;
    padding-bottom: 48px;
  }

  .restaurant-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .restaurant-hero__content--dining {
    padding-left: 0;
  }

  .spa-hero__content--nobil {
    padding-left: 0;
  }

  .dessange-hero__content--nobil {
    padding-left: 0;
  }

  .restaurant-hero__actions--dining,
  .dining-section__controls {
    flex-wrap: wrap;
  }

  .dining-photo {
    min-height: 320px;
  }

  .dessange-gallery__photo {
    min-height: 320px;
  }
}

@media (max-width: 1180px) {
  .restaurant-page--restaurant .restaurant-shell {
    width: min(100vw - 28px, 1840px);
  }

  .restaurant-page--restaurant .restaurant-hero {
    min-height: 82svh;
    padding: calc(var(--header-height) + 180px) 0 48px;
  }

  .restaurant-page--restaurant .restaurant-hero__content--dining {
    padding-left: 0;
  }

  .restaurant-page--restaurant .restaurant-hero__actions--dining {
    flex-wrap: wrap;
    gap: 14px;
  }

  .restaurant-page--restaurant .restaurant-title {
    font-size: clamp(52px, 11vw, 65px);
  }

  .restaurant-page--restaurant .restaurant-lead {
    font-size: clamp(18px, 3.6vw, 24px);
  }

  .restaurant-page--restaurant .dining-section {
    min-height: auto;
    padding: 170px 0 34px;
  }

  .restaurant-page--restaurant .dining-section__intro {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "copy-left"
      "copy-right"
      "controls";
    row-gap: 18px;
    margin-bottom: 34px;
  }

  .restaurant-page--restaurant .dining-section__heading .restaurant-section-title {
    font-size: clamp(48px, 10vw, 65px);
    line-height: 1.08;
  }

  .restaurant-page--restaurant .dining-section__copy p {
    max-width: none;
    font-size: clamp(18px, 3.2vw, 22px);
    line-height: 1.3;
  }

  .restaurant-page--restaurant .dining-section__controls {
    justify-self: start;
    flex-wrap: wrap;
    margin-top: 8px;
  }

  .restaurant-page--restaurant .dining-gallery--restaurant,
  .restaurant-page--restaurant .dining-gallery--terrace {
    grid-template-columns: 1fr;
  }

  .restaurant-page--restaurant .dining-photo {
    height: auto;
    min-height: 320px;
    background-size: cover;
  }
}

@media (max-width: 640px) {
  .restaurant-page--restaurant .restaurant-hero {
    padding-top: calc(var(--header-height) + 120px);
  }

  .restaurant-page--restaurant .restaurant-hero__crest {
    width: 190px;
  }

  .restaurant-page--restaurant .restaurant-button--tab,
  .restaurant-page--restaurant .dining-section__menu-button {
    width: auto;
    max-width: 100%;
  }
}

.spa-page {
  background: var(--service-page-bg);
}

.spa-page .restaurant-shell {
  width: min(100vw - 80px, 1840px);
}

.spa-page .restaurant-hero {
  align-items: flex-start;
  overflow: hidden;
  background: #141414;
  padding: clamp(calc(var(--header-height) + 72px), 33svh, calc(var(--header-height) + 237px)) 0 80px;
}

.spa-page .restaurant-hero__media {
  background: url("../images/figma/spa-hero-figma.webp") center bottom / cover no-repeat;
}

.spa-page .restaurant-hero__overlay {
  background:
    linear-gradient(55deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.58) 31%, rgba(0, 0, 0, 0.16) 65%, rgba(0, 0, 0, 0) 90%),
    rgba(255, 255, 255, 0.1);
}

.spa-page .restaurant-hero__content {
  max-width: 600px;
  margin-left: clamp(0px, 8.1vw, 155px);
}

.spa-page .restaurant-hero__crest {
  width: 222px;
  margin-bottom: 20px;
}

.spa-page .restaurant-hero__crest img {
  width: 100%;
  height: auto;
}

.spa-page .restaurant-title,
.spa-page .restaurant-section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
}

.spa-page .restaurant-title {
  max-width: 600px;
  font-size: 65px;
  line-height: 65px;
}

.spa-page .restaurant-lead {
  max-width: 560px;
  margin: 20px 0 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.24;
}

.spa-page .button-circle {
  width: var(--button-circle-size);
  height: var(--button-circle-size);
  min-width: var(--button-circle-size);
  min-height: var(--button-circle-size);
}

.spa-page .button-circle--arrow-left::before,
.spa-page .button-circle--arrow-right::before {
  width: 18px;
  height: 18px;
}

.spa-page .restaurant-hero__actions--dining {
  gap: 25px;
  margin-top: 48px;
}

.spa-page .restaurant-button--tab {
  width: auto;
  min-height: var(--button-height);
  padding: 0 var(--button-padding-x);
  font-size: var(--button-font-size);
  letter-spacing: var(--button-letter-spacing-compact);
}

.spa-section {
  background: var(--service-page-bg);
  padding: 151px 0 80px;
}

.spa-section .dining-section__intro {
  grid-template-columns: minmax(0, 600px) minmax(0, 600px) minmax(304px, 1fr);
  grid-template-areas:
    "heading heading ."
    "copy-one copy-two controls";
  column-gap: 20px;
  row-gap: 20px;
  align-items: start;
  margin-bottom: 49px;
}

.spa-section .dining-section__heading {
  grid-area: heading;
}

.spa-section .dining-section__copy:nth-child(2) {
  grid-area: copy-one;
}

.spa-section .dining-section__copy:nth-child(3) {
  grid-area: copy-two;
}

.spa-section .dining-section__heading .restaurant-section-title {
  font-size: 65px;
  line-height: 75px;
}

.spa-section .dining-section__copy p {
  max-width: 600px;
  color: #222121;
  font-size: 22px;
  line-height: 26px;
}

.spa-section .dining-section__controls {
  grid-area: controls;
  gap: 24px;
  justify-self: end;
  align-self: end;
  padding-top: 0;
}

.spa-section .dining-section__menu-button {
  width: auto;
  min-height: var(--button-height);
  padding: 0 var(--button-padding-x);
  border-color: #c6c1a1;
  font-size: var(--button-font-size);
  letter-spacing: var(--button-letter-spacing);
}

.spa-section .dining-section__nav {
  gap: 20px;
}

.spa-section .dining-gallery--spa {
  grid-template-columns: minmax(0, 1061fr) minmax(0, 753fr);
  gap: 25px;
}

.spa-section .dining-gallery--spa .dining-photo {
  min-height: 645px;
  background-position: center;
  background-size: cover;
}

@media (max-width: 1180px) {
  .spa-page .restaurant-shell {
    width: min(100vw - 48px, 1840px);
  }

  .spa-section .dining-section__intro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "heading heading"
      "copy-one copy-two"
      "controls controls";
  }

  .spa-section .dining-section__controls {
    justify-self: start;
    padding-top: 0;
  }

  .spa-section .dining-gallery--spa {
    grid-template-columns: 1fr;
  }

  .spa-section .dining-gallery--spa .dining-photo {
    min-height: 420px;
  }
}

@media (max-width: 920px) {
  .spa-page .restaurant-shell {
    width: min(100vw - 28px, 1840px);
  }

  .spa-page .restaurant-hero {
    min-height: 720px;
    padding: calc(var(--header-height) + 96px) 0 64px;
  }

  .spa-page .restaurant-hero__content {
    margin-left: 0;
  }

  .spa-page .restaurant-hero__crest {
    width: 180px;
  }

  .spa-page .restaurant-title {
    font-size: 52px;
    line-height: 54px;
  }

  .spa-page .restaurant-lead {
    font-size: 20px;
  }

  .spa-section {
    padding: 90px 0 54px;
  }

  .spa-section .dining-section__intro {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "copy-one"
      "copy-two"
      "controls";
    row-gap: 22px;
    margin-bottom: 34px;
  }

  .spa-section .dining-section__heading .restaurant-section-title {
    font-size: 48px;
    line-height: 54px;
  }

  .spa-section .dining-section__copy p {
    font-size: 18px;
    line-height: 24px;
  }

  .spa-section .dining-gallery--spa .dining-photo {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .spa-page .restaurant-hero {
    min-height: 680px;
    padding-top: calc(var(--header-height) + 64px);
  }

  .spa-page .restaurant-hero__crest {
    width: 150px;
  }

  .spa-page .restaurant-title {
    font-size: 42px;
    line-height: 46px;
  }

  .spa-page .restaurant-lead {
    font-size: 17px;
    line-height: 1.35;
  }

  .spa-page .restaurant-hero__actions--dining,
  .spa-section .dining-section__controls {
    flex-direction: row;
  }

  .spa-section {
    padding-top: 68px;
  }

  .spa-section .dining-section__heading .restaurant-section-title {
    font-size: 40px;
    line-height: 46px;
  }
}

.conference-page--figma {
  background: var(--service-page-bg);
}

.conference-detail {
  min-height: auto;
  padding: 211px 0 80px;
  background: var(--service-page-bg);
  color: #000;
}

.conference-detail__shell {
  width: min(1840px, calc(100vw - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 600px) minmax(304px, 1fr);
  grid-template-areas:
    "back back back"
    "intro intro actions"
    "gallery gallery gallery";
  column-gap: 20px;
  row-gap: 20px;
  align-items: start;
}

.conference-detail__back {
  grid-area: back;
  width: 48.995px;
  height: 48.995px;
  display: block;
  margin-bottom: 11px;
}

.conference-detail__back img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.conference-detail__intro {
  grid-area: intro;
  width: 100%;
}

.conference-detail__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 4.0625rem;
  font-weight: 400;
  line-height: 75px;
  letter-spacing: 0;
}

.conference-detail__copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 600px));
  gap: 20px;
  margin-top: 20px;
  font-size: 1.375rem;
  line-height: 26px;
  color: #222121;
}

.conference-detail__copy p {
  margin: 0;
}

.conference-detail__actions {
  grid-area: actions;
  width: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-self: end;
  align-self: end;
  margin-bottom: 4px;
}

.conference-detail__price {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.conference-detail__arrows {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.conference-detail__arrow {
  flex: 0 0 var(--button-circle-size);
}

.conference-detail__gallery {
  grid-area: gallery;
  display: grid;
  grid-template-columns: minmax(420px, 755px) minmax(640px, 1063px);
  justify-content: space-between;
  gap: 22px;
  margin-top: 69px;
}

.conference-detail__photo {
  position: relative;
  height: 640px;
  margin: 0;
  overflow: hidden;
  background: #ddd;
}

.conference-detail__photo img {
  position: absolute;
  top: 0;
  display: block;
  height: 100%;
  max-width: none;
  object-fit: fill;
}

.conference-detail__photo--left img {
  left: -10.13%;
  width: 203.44%;
}

.conference-detail__photo--right img {
  left: -0.03%;
  width: 144.5%;
}

@media (max-width: 1180px) {
  .conference-detail {
    min-height: auto;
    padding: calc(var(--header-height) + 72px) 0 64px;
  }

  .conference-detail__shell {
    width: min(100vw - 40px, 860px);
    min-height: auto;
    display: block;
  }

  .conference-detail__back,
  .conference-detail__intro,
  .conference-detail__actions,
  .conference-detail__gallery {
    position: static;
  }

  .conference-detail__back {
    margin-bottom: 28px;
  }

  .conference-detail__title {
    font-size: clamp(3rem, 8vw, 4.0625rem);
    line-height: 1.08;
  }

  .conference-detail__copy {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 24px;
    font-size: 1.15rem;
    line-height: 1.45;
  }

  .conference-detail__actions {
    width: auto;
    margin: 36px 0 48px;
    justify-content: flex-start;
  }

  .conference-detail__gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .conference-detail__photo {
    height: min(62vw, 520px);
  }
}

@media (max-width: 640px) {
  .conference-detail {
    padding-top: calc(var(--header-height) + 48px);
  }

  .conference-detail__shell {
    width: min(100vw - 28px, 860px);
  }

  .conference-detail__actions {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .conference-detail__photo {
    height: 280px;
  }
}

.dessange-hero--nobil {
  min-height: 100svh;
  padding: calc(var(--header-height) + 88px) 0 120px;
}

.dessange-hero__media--nobil {
  background-image: url("../images/figma/dessange-hero-figma.webp");
  background-position: center;
  background-size: cover;
}

.dessange-hero__overlay--nobil {
  background:
    linear-gradient(40deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.66) 28%, rgba(0, 0, 0, 0.2) 68%, rgba(0, 0, 0, 0.05) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.44));
}

.dessange-hero__content--nobil {
  padding-left: clamp(0px, 6.25vw, 120px);
}

.dessange-hero__content--nobil .restaurant-hero__crest {
  width: 250px;
  margin-bottom: 26px;
}

.dessange-hero__content--nobil .restaurant-hero__crest img {
  filter: brightness(0) invert(1);
}

.dessange-hero__content--nobil .restaurant-title {
  max-width: 560px;
}

.dessange-hero__title {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  font-family: var(--font-body);
  font-size: clamp(3rem, 3.4vw, 4.1rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dessange-hero__title span {
  padding-bottom: 0.52em;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  text-transform: lowercase;
}

.dessange-hero__content--nobil .restaurant-lead {
  max-width: 600px;
  margin: 20px 0 0;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.42;
}

.dessange-page .restaurant-hero__actions--dining {
  gap: 25px;
  margin-top: 48px;
}

.dessange-page .restaurant-hero__actions--dining .button-circle,
.dessange-page .dining-section__nav .button-circle {
  width: var(--button-circle-size);
  height: var(--button-circle-size);
  min-width: var(--button-circle-size);
  min-height: var(--button-circle-size);
}

.dessange-page .restaurant-button--tab,
.dessange-page .dining-section__menu-button {
  width: auto;
  max-width: 100%;
  min-height: var(--button-height);
  border-color: #c6c1a1;
  padding: 0 var(--button-padding-x);
  font-size: var(--button-font-size);
  letter-spacing: var(--button-letter-spacing);
}

.dessange-page .restaurant-button--light {
  border-color: #fff;
}

.dessange-page .restaurant-shell {
  width: min(100vw - 80px, 1840px);
}

.dessange-section {
  background: var(--service-page-bg);
  padding: 146px 0 40px;
}

.dessange-section .restaurant-shell {
  width: min(100vw - 80px, 1840px);
}

.dessange-section__intro {
  grid-template-columns: minmax(0, 600px) minmax(0, 600px) minmax(260px, 1fr);
  grid-template-areas:
    "heading heading ."
    "copy-left copy-right controls";
  gap: 20px;
  align-items: start;
  margin-bottom: 48px;
}

.dessange-section__intro .dining-section__heading {
  grid-area: heading;
  min-width: 0;
}

.dessange-section__intro .dining-section__copy:nth-child(2) {
  grid-area: copy-left;
  min-width: 0;
}

.dessange-section__intro .dining-section__copy:nth-child(3) {
  grid-area: copy-right;
  min-width: 0;
}

.dessange-section__intro .restaurant-section-title {
  width: auto;
  max-width: 1220px;
  font-size: clamp(3.4rem, 3.4vw, 4.1rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.dessange-section__intro .dining-section__copy {
  padding-top: 0;
}

.dessange-section__intro .dining-section__copy p {
  font-size: 1.375rem;
  line-height: 1.18;
  color: #222121;
}

.dessange-section__intro .dining-section__controls {
  grid-area: controls;
  justify-self: end;
  align-self: end;
  padding-top: 0;
  gap: 24px;
}

.dessange-page .dining-section__nav {
  gap: 20px;
}

.dessange-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.dessange-gallery__photo {
  min-height: 640px;
  background-position: center;
  background-size: cover;
}

.dessange-gallery__photo--wash {
  background-image: url("../images/figma/dessange-gallery-wash-figma.webp");
}

.dessange-gallery__photo--salon {
  background-image: url("../images/figma/dessange-gallery-salon-figma.webp");
}

.dessange-gallery__photo--bed {
  background-image: url("../images/figma/dessange-gallery-bed-figma.webp");
}

@media (max-width: 1280px) {
  .dessange-hero__content--nobil {
    padding-left: 48px;
  }

  .dessange-section__intro {
    grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(260px, 0.7fr);
    grid-template-areas:
      "heading heading ."
      "copy-left copy-right controls";
  }

  .dessange-section__intro .dining-section__heading {
    grid-area: heading;
  }

  .dessange-section__intro .dining-section__copy:nth-child(2) {
    grid-area: copy-left;
  }

  .dessange-section__intro .dining-section__copy:nth-child(3) {
    grid-area: copy-right;
  }

  .dessange-section__intro .dining-section__controls {
    grid-area: controls;
  }
}

@media (max-width: 980px) {
  .dessange-hero--nobil {
    min-height: 760px;
  }

  .dessange-hero__content--nobil {
    padding-left: 0;
  }

  .dessange-hero__content--nobil .restaurant-hero__crest {
    width: 190px;
  }

  .dessange-hero__content--nobil .restaurant-lead {
    font-size: 1.125rem;
  }

  .dessange-section {
    padding-top: 82px;
  }

  .dessange-section__intro {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "copy-left"
      "copy-right"
      "controls";
    margin-bottom: 34px;
  }

  .dessange-section__intro .dining-section__copy,
  .dessange-section__intro .dining-section__controls {
    padding-top: 0;
  }

  .dessange-section__intro .dining-section__copy p {
    font-size: 1.125rem;
    line-height: 1.35;
  }

  .dessange-gallery {
    grid-template-columns: 1fr;
  }

  .dessange-gallery__photo {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .dessange-hero--nobil {
    min-height: 700px;
    padding-top: calc(var(--header-height) + 64px);
  }

  .dessange-hero__title {
    font-size: 2.55rem;
  }

  .dessange-hero__title span {
    font-size: 1rem;
  }

  .dessange-page .restaurant-hero__actions--dining {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .dessange-section__intro .dining-section__controls {
    flex-direction: row;
  }

  .dessange-section .restaurant-shell {
    width: min(100vw - 28px, 1840px);
  }

  .dessange-section__intro .restaurant-section-title {
    max-width: none;
    font-size: 2.5rem;
    line-height: 1.12;
  }

  .dessange-gallery__photo {
    min-height: 330px;
  }
}

.dessange-page .restaurant-hero {
  background: #121212;
  overflow-x: hidden;
}

.dessange-page {
  overflow-x: hidden;
}

.dessange-page .restaurant-hero__media {
  background-image: url("../images/figma/dessange-hero-figma.webp");
  background-position: center;
  background-size: cover;
}

.dessange-page .restaurant-hero__overlay {
  background:
    linear-gradient(40deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.66) 28%, rgba(0, 0, 0, 0.2) 68%, rgba(0, 0, 0, 0.05) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.44));
}
