@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/lora-400.ttf") format("truetype");
}

@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/lora-500.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/montserrat-400.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/montserrat-500.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/montserrat-600.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/montserrat-700.ttf") format("truetype");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/playfair-400.ttf") format("truetype");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/playfair-500.ttf") format("truetype");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/playfair-600.ttf") format("truetype");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/playfair-700.ttf") format("truetype");
}

:root {
  --gold: #b19f6a;
  --gold-light: #cda566;
  --charcoal: #282828;
  --charcoal-deep: #1f1f1f;
  --black-soft: #111111;
  --body: #666666;
  --heading: #333333;
  --shell: 1080px;
  --shell-wide: 1280px;
  --shadow: 6px 6px 18px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--body);
  background: #ffffff;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--heading);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.2;
}

p {
  margin-bottom: 1em;
}

.shell {
  width: 80%;
  max-width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: 80px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.topbar {
  min-height: 32px;
  color: #ffffff;
  background: var(--charcoal);
}

.topbar__inner {
  display: flex;
  min-height: 32px;
  align-items: center;
  gap: 14px;
}

.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
}

.topbar__icon {
  width: 12px;
  height: 14px;
  overflow: hidden;
  color: transparent;
}

.topbar__icon::before {
  display: block;
  color: #ffffff;
  content: "☎";
  font-size: 13px;
  line-height: 14px;
}

.topbar__mail {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 10px;
  border: 2px solid #ffffff;
}

.topbar__mail::after {
  position: absolute;
  inset: -2px 0 auto;
  width: 8px;
  height: 8px;
  margin: auto;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  content: "";
  transform: rotate(45deg) translate(-1px, -3px);
}

.site-header {
  position: relative;
  z-index: 20;
  height: 121px;
  border-bottom: 1px solid #eeeeee;
  background: #ffffff;
}

.site-header__inner {
  display: flex;
  height: 121px;
  align-items: center;
}

.site-logo {
  flex: 0 0 auto;
  width: 191px;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.main-nav {
  width: 740px;
  margin-left: auto;
  font-family: "Lora", Georgia, serif;
}

.main-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-nav__item {
  flex: 0 0 auto;
}

.main-nav__item > a {
  display: flex;
  min-height: 61px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 11px 18px;
  color: #000000;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.main-nav__item > a:hover,
.main-nav__item > a:focus-visible {
  background: #ffffff;
}

.main-nav__label {
  display: block;
  white-space: nowrap;
}

.main-nav__description {
  display: block;
  margin-top: 3px;
  color: #aaaaaa;
  font-size: 9px;
  text-transform: none;
}

.main-nav__item--booking {
  margin-left: 12px;
}

.main-nav__item--booking > a {
  min-height: 51px;
  padding-inline: 24px;
  color: #ffffff;
  background: var(--gold);
  white-space: nowrap;
}

.main-nav__item--booking > a:hover,
.main-nav__item--booking > a:focus-visible {
  background: #9f8e5d;
}

.menu-toggle {
  display: none;
}

.language-widget {
  position: fixed;
  z-index: 35;
  top: 52%;
  right: 18px;
  display: flex;
  width: 96px;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
}

.flag-fr {
  display: flex;
  width: 27px;
  height: 19px;
  overflow: hidden;
  border-radius: 1px;
}

.flag-fr i {
  flex: 1;
  background: #082f93;
}

.flag-fr i:nth-child(2) {
  background: #ffffff;
}

.flag-fr i:nth-child(3) {
  background: #f31f3d;
}

.language-widget strong {
  color: #333333;
  font-size: 18px;
}

.language-widget__chevron {
  width: 7px;
  height: 7px;
  border-top: 2px solid #777777;
  border-left: 2px solid #777777;
  transform: rotate(45deg) translateY(2px);
}

.button {
  position: relative;
  display: inline-block;
  padding: 7px 20px;
  border: 0;
  border-radius: 38px;
  color: #ffffff;
  background: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  transition: background-color 220ms ease, transform 220ms ease;
}

.button:hover,
.button:focus-visible {
  background: #9f8e5d;
}

.button:active {
  transform: translateY(1px);
}

.button--square {
  border-radius: 2px;
  font-family: "Lora", Georgia, serif;
  font-size: 18px;
}

.button--wide {
  border-radius: 0;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.button--green {
  border-radius: 0;
  background: #3aaa35;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
}

.button--green:hover,
.button--green:focus-visible {
  background: #318f2d;
}

.gold-divider {
  display: block;
  width: 60px;
  height: 3px;
  margin: 18px 0 25px;
  background: var(--gold);
}

.cover-section {
  position: relative;
  isolation: isolate;
  background-image: var(--cover-image);
  background-position: center;
  background-size: cover;
}

.cover-section::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  content: "";
}

.slider {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: var(--gold);
}

.slider__track,
.slider__slide {
  position: absolute;
  inset: 0;
}

.slider__slide {
  display: grid;
  visibility: hidden;
  align-items: center;
  background-color: var(--gold);
  background-image: var(--slide-image);
  background-position: var(--slide-position, center);
  background-size: cover;
  opacity: 0;
  transition: opacity 700ms ease;
}

.slider__slide::before {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.47);
  content: "";
}

.slider__slide.is-active {
  visibility: visible;
  opacity: 1;
}

.slider__content {
  position: relative;
  z-index: 2;
}

.slider__content h2 {
  padding-bottom: 10px;
  margin-bottom: 0;
  color: #ffffff;
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
}

.slider__content p {
  max-width: 780px;
  margin-bottom: 0;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 15px;
}

.slider__content .button {
  margin-top: 20px;
  padding: 6px 20px;
  font-size: 20px;
}

.slider__arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 45px;
  height: 70px;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: transparent;
  font-family: Georgia, serif;
  font-size: 62px;
  line-height: 1;
  opacity: 0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 180ms ease;
}

.slider:hover .slider__arrow,
.slider:focus-within .slider__arrow {
  opacity: 1;
}

.slider__arrow--previous {
  left: 22px;
}

.slider__arrow--next {
  right: 22px;
}

.slider__dots {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.slider__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.slider__dots button.is-active {
  background: #ffffff;
}

.slider__lightbox-trigger {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.home-hero {
  height: 664px;
}

.home-hero .slider__dots {
  display: none;
}

.home-intro {
  padding-block: 80px;
}

.home-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.home-intro__copy {
  color: #000000;
  text-align: justify;
}

.home-intro__copy > h2 {
  margin-bottom: 8px;
  font-size: 40px;
  text-align: center;
}

.home-intro__copy > .gold-divider {
  width: 15%;
  margin: 0 auto 20px;
}

.home-intro__copy > h3 {
  margin-bottom: 28px;
  font-size: 22px;
  text-align: center;
}

.home-intro__copy p {
  margin-bottom: 11px;
  font-size: 13px;
  line-height: 1.65;
}

.home-intro__copy .home-intro__lead {
  margin-top: 13px;
  font-weight: 700;
}

.home-intro__copy .home-intro__notice {
  margin-top: 28px;
  margin-bottom: 0;
  font-size: 20px;
}

.home-intro__images {
  display: grid;
  gap: 30px;
}

.image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.home-intro__images img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.home-hotel {
  min-height: 535px;
  padding-block: 80px;
  color: #ffffff;
}

.home-hotel::before {
  background: rgba(0, 15, 43, 0.55);
}

.home-hotel__copy {
  width: 48%;
  color: #ffffff;
}

.home-hotel h2 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 40px;
}

.home-hotel p {
  max-width: 500px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 13px;
}

.check-list {
  padding: 0;
  margin: 18px 0 22px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.65;
}

.check-list li::before {
  content: "✓";
  font-size: 18px;
}

.home-booking {
  padding-block: 75px;
}

.home-booking__inner {
  text-align: center;
}

.home-booking h2 {
  max-width: 725px;
  margin: 0 auto 28px;
  font-size: 40px;
  line-height: 1.2;
}

.home-restaurant {
  padding-block: 85px;
  color: #ffffff;
  background: #2b2b2b;
}

.home-restaurant__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.home-restaurant__image img {
  width: 100%;
  height: 610px;
  object-fit: cover;
}

.home-restaurant__copy {
  padding-inline: 0 30px;
}

.home-restaurant__copy h2 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 40px;
}

.home-restaurant__copy p {
  max-width: 500px;
  color: #ffffff;
  font-size: 13px;
}

.newsletter-band {
  padding-block: 100px;
}

.newsletter-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 280px;
  align-items: center;
  gap: 55px;
  padding: 60px 72px;
  color: rgba(255, 255, 255, 0.8);
  background: var(--charcoal-deep);
  box-shadow: var(--shadow);
}

.newsletter-card__copy {
  text-align: center;
}

.newsletter-card h2 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 30px;
}

.newsletter-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.newsletter-form {
  position: relative;
  display: grid;
  gap: 11px;
}

.newsletter-form input {
  width: 100%;
  height: 43px;
  padding: 10px 14px;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  outline: 1px solid transparent;
  background: var(--black-soft);
}

.newsletter-form input:focus {
  outline-color: var(--gold-light);
}

.newsletter-form input::placeholder {
  color: #ffffff;
  opacity: 0.85;
}

.newsletter-form button {
  min-height: 43px;
  border: 3px solid var(--gold-light);
  border-radius: 0;
  color: #ffffff;
  background: var(--gold-light);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer {
  color: #ffffff;
  background: #222222;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 270px 1fr 1fr;
  min-height: 305px;
  align-items: start;
  gap: 70px;
  padding-block: 82px 55px;
}

.footer-logo {
  width: 230px;
  margin-top: 4px;
}

.footer-column h2 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 17px;
}

.footer-column p,
.footer-column li {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.75;
}

.footer-column ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-column li {
  position: relative;
  padding-left: 15px;
}

.footer-column li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "•";
}

.footer-bottom {
  min-height: 54px;
  padding-block: 17px;
  color: #666666;
  background: #171717;
  font-size: 12px;
}

.footer-bottom a {
  font-weight: 700;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 210px;
  align-items: center;
  isolation: isolate;
  background-image: var(--cover-image);
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
  content: "";
}

.page-hero .shell {
  display: flex;
  justify-content: center;
}

.page-hero h1 {
  margin: 0;
  font-size: 40px;
}

.rooms-main {
  padding-block: 80px 72px;
}

.rooms-main__top,
.rooms-main__details {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.rooms-slider {
  height: 400px;
}

.rooms-slider .slider__slide::before {
  display: none;
}

.rooms-slider .slider__arrow {
  opacity: 0.85;
}

.rooms-slider .slider__dots {
  bottom: 30px;
  flex-wrap: wrap;
  gap: 7px;
  padding-inline: 28px;
}

.direct-booking {
  padding: 22px 22px 30px;
  color: #ffffff;
  background: #2d2d2d;
  text-align: center;
}

.direct-booking h2 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 25px;
}

.direct-booking > p {
  margin-bottom: 0;
  color: #ffffff;
}

.direct-booking > .gold-divider {
  width: 50px;
  margin: 28px auto 36px;
}

.direct-booking__contact {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.direct-booking__contact h3 {
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 16px;
}

.direct-booking__contact a {
  font-size: 12px;
}

.round-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--gold);
  font-size: 17px;
}

.round-icon--mail {
  position: relative;
}

.round-icon--mail::before {
  width: 15px;
  height: 11px;
  border: 1px solid #ffffff;
  content: "";
}

.round-icon--mail::after {
  position: absolute;
  top: 11px;
  width: 9px;
  height: 9px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  content: "";
  transform: rotate(45deg);
}

.direct-booking .button {
  margin-top: 10px;
}

.rooms-main__details {
  margin-top: 52px;
}

.details-copy h2,
.equipment > h2 {
  margin-bottom: 0;
  font-size: 22px;
}

.details-copy .gold-divider {
  width: 10%;
}

.equipment > .gold-divider {
  width: 18%;
}

.details-copy p {
  margin-bottom: 14px;
}

.equipment__list {
  display: grid;
  gap: 20px;
}

.equipment__list article {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
}

.equipment__list article > span {
  color: var(--gold);
  font-size: 18px;
}

.equipment__list h3 {
  margin-bottom: 2px;
  font-size: 16px;
}

.equipment__list p {
  margin-bottom: 0;
  color: #777777;
}

.newsletter-cover {
  padding-block: 120px 100px;
}

.newsletter-cover::before {
  background: rgba(0, 0, 0, 0.75);
}

.restaurant-hero {
  display: grid;
  min-height: 450px;
  place-items: center;
  color: #ffffff;
}

.restaurant-hero::before {
  background: rgba(31, 31, 31, 0.51);
}

.restaurant-hero__content {
  text-align: center;
}

.restaurant-hero h1 {
  margin-bottom: 36px;
  color: #ffffff;
  font-size: 72px;
  line-height: 1.3;
}

.scroll-cue {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 31px;
  line-height: 1;
}

.restaurant-story {
  padding-block: 120px;
}

.restaurant-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.restaurant-story__copy h2 {
  margin-bottom: 0;
  color: var(--charcoal-deep);
  font-size: 48px;
}

.restaurant-story__copy p {
  padding-bottom: 5px;
  color: #939393;
  line-height: 1.8;
}

.restaurant-story__image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.restaurant-mosaic {
  min-height: 600px;
  padding-inline: 0;
  background: var(--charcoal-deep);
}

.restaurant-mosaic__grid {
  display: grid;
  width: min(80%, var(--shell));
  margin-inline: auto;
  grid-template-columns: repeat(3, 1fr);
}

.restaurant-mosaic__grid > * {
  min-height: 300px;
}

.restaurant-mosaic__text {
  display: grid;
  place-items: center;
  background: #ffffff;
  text-align: center;
}

.restaurant-mosaic__text h2 {
  margin: 0;
  color: var(--charcoal-deep);
  font-size: 24px;
}

.restaurant-mosaic__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.restaurant-reservation {
  padding-block: 120px 100px;
}

.restaurant-reservation::before {
  background: rgba(0, 0, 0, 0.75);
}

.restaurant-reservation__grid {
  display: grid;
  max-width: var(--shell-wide);
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.reservation-card,
.restaurant-reservation .newsletter-card {
  min-height: 535px;
  padding: 100px 50px;
  color: #ffffff;
  background: var(--charcoal-deep);
  box-shadow: none;
}

.reservation-card {
  text-align: center;
}

.reservation-card h2 {
  margin-bottom: 48px;
  color: #ffffff;
  font-size: 30px;
}

.reservation-card__hours {
  display: grid;
  margin-bottom: 16px;
  gap: 4px;
  font-size: 15px;
  letter-spacing: 1px;
}

.reservation-card .gold-divider {
  width: 100%;
  height: 2px;
  margin: 10px auto 28px;
}

.restaurant-reservation .newsletter-card {
  display: block;
}

.restaurant-reservation .newsletter-card__copy {
  margin-bottom: 28px;
}

.contact-map {
  height: 480px;
  overflow: hidden;
  background: #d5eef0;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 55px;
  padding: 50px;
  margin-top: -200px;
  margin-bottom: 80px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-panel h1,
.contact-panel h2 {
  margin-bottom: 0;
  font-size: 26px;
}

.contact-panel__form form {
  margin-top: 26px;
}

.contact-panel fieldset {
  padding: 0;
  margin: 0 0 22px;
  border: 0;
}

.contact-panel legend,
.field > span {
  display: block;
  margin-bottom: 7px;
  color: #777777;
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field-pair label {
  display: grid;
}

.field-pair small {
  margin-top: 2px;
  color: #888888;
}

.contact-panel input,
.contact-panel textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #dedede;
  border-radius: 0;
  color: #333333;
  background: #ffffff;
  outline: 0;
}

.contact-panel input {
  height: 38px;
}

.contact-panel input:focus,
.contact-panel textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.field {
  display: block;
  margin-bottom: 22px;
}

.field b {
  color: #d92727;
}

.field-error {
  display: block;
  min-height: 0;
  margin-top: 4px;
  color: #b42318;
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: #b42318;
}

.contact-submit {
  min-width: 80px;
  padding: 8px 15px;
  border: 1px solid #777777;
  color: #333333;
  background: #efefef;
  cursor: pointer;
}

.contact-panel__coordinates p {
  margin-top: 26px;
  font-size: 15px;
}

.legal-page,
.legacy-content {
  display: grid;
  grid-template-columns: 4fr 1.35fr;
  min-height: 560px;
}

.legal-page__content,
.legacy-content > article {
  padding: 55px 36px 70px 0;
  border-right: 1px solid #dedede;
}

.legal-page h1 {
  margin-bottom: 22px;
  font-size: 30px;
}

.legal-page h2 {
  margin-bottom: 3px;
  font-size: 26px;
}

.legal-page h3 {
  margin-bottom: 3px;
  font-size: 22px;
}

.legal-page p {
  margin-bottom: 14px;
  line-height: 1.6;
}

.legacy-sidebar {
  min-height: 100%;
}

.rates-main {
  padding-block: 80px;
}

.rates-main__grid {
  display: grid;
  min-height: 630px;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 55px 60px;
}

.rates-main__table {
  padding-top: 12px;
}

.rates-main__notes {
  align-self: end;
  padding: 0;
  margin: 0;
  list-style: none;
}

.empty-page {
  min-height: 390px;
}

.legacy-listing {
  min-height: 525px;
  padding-top: 270px;
  background: #ffffff;
}

.legacy-listing__card {
  width: min(80%, var(--shell));
  padding: 55px 50px 34px;
  margin-inline: auto;
  background: #ffffff;
  box-shadow: var(--shadow);
  text-align: center;
}

.legacy-listing__card h1 {
  margin-bottom: 75px;
  font-size: 30px;
  text-transform: uppercase;
}

.villa-hero {
  display: grid;
  min-height: 550px;
  place-items: center;
  background: #ffffff;
}

.villa-hero h1 {
  max-width: 820px;
  color: #ffffff;
  font-size: 70px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}

.villa-intro {
  padding-block: 50px 55px;
}

.villa-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 55px;
}

.villa-intro p {
  text-align: justify;
}

.villa-features {
  display: grid;
  align-content: start;
  gap: 22px;
}

.villa-features article {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
}

.villa-features article > span {
  color: #cdb380;
  font-size: 26px;
}

.villa-features h2 {
  margin-bottom: 2px;
  font-size: 18px;
}

.villa-features p {
  margin-bottom: 0;
  text-align: left;
}

.villa-contact h2 {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.villa-contact > p {
  font-size: 18px;
  text-align: left;
}

.villa-contact__phone {
  position: relative;
  padding-left: 35px;
}

.villa-contact__phone::before {
  position: absolute;
  left: 0;
  color: #cdb380;
  content: "▣";
}

.villa-services {
  padding-block: 120px;
  color: #ffffff;
  background: #cdb380;
}

.villa-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}

.villa-services article {
  text-align: center;
}

.villa-services h2 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.villa-services p {
  color: #ffffff;
}

.villa-embed {
  text-align: center;
}

.villa-embed h2 {
  margin-bottom: 45px;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.villa-embed p {
  text-align: left;
}

.legacy-content {
  min-height: 492px;
}

.legacy-content > article {
  padding-top: 55px;
}

.legacy-content h1 {
  margin-bottom: 70px;
  font-size: 30px;
}

.legacy-content h1 small {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 15px;
}

.legacy-content hr {
  height: 1px;
  margin-block: 35px 20px;
  border: 0;
  background: #dedede;
}

.project-navigation {
  display: flex;
  justify-content: space-between;
  color: var(--gold);
}

.project-list section {
  margin-bottom: 70px;
}

.project-list h2 {
  margin-bottom: 4px;
  font-size: 30px;
}

.not-found-copy h1 {
  margin-bottom: 0;
}

.not-found-copy p {
  max-width: 760px;
}

.thank-you {
  min-height: 560px;
  padding-top: 120px;
}

.thank-you__card {
  max-width: 760px;
  padding: 70px;
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you h1 {
  margin-bottom: 0;
  font-size: 48px;
}

.thank-you .gold-divider {
  margin-inline: auto;
}

.lightbox {
  width: min(92vw, 1180px);
  height: min(90vh, 820px);
  padding: 20px;
  border: 0;
  color: #ffffff;
  background: rgba(17, 17, 17, 0.98);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.86);
}

.lightbox figure {
  display: grid;
  height: 100%;
  place-items: center;
  margin: 0;
}

.lightbox img {
  max-width: 100%;
  max-height: calc(100% - 45px);
  object-fit: contain;
}

.lightbox figcaption {
  min-height: 24px;
  padding-top: 8px;
  text-align: center;
}

.lightbox__close,
.lightbox__arrow {
  position: absolute;
  z-index: 2;
  border: 0;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
}

.lightbox__close {
  top: 8px;
  right: 14px;
  font-size: 42px;
}

.lightbox__arrow {
  top: 50%;
  font-size: 70px;
  transform: translateY(-50%);
}

.lightbox__arrow--previous {
  left: 10px;
}

.lightbox__arrow--next {
  right: 10px;
}

[data-reveal] {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="fade-up"] {
  transform: translate3d(0, 42px, 0);
}

[data-reveal="slide-left"] {
  transform: translate3d(70px, 0, 0);
}

[data-reveal="slide-right"] {
  transform: translate3d(-70px, 0, 0);
}

[data-reveal="slide-down"] {
  transform: translate3d(0, -35px, 0);
}

[data-reveal="zoom"] {
  transform: scale(0.96);
}

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

@media (max-width: 1180px) {
  .main-nav__item > a {
    padding-inline: 11px;
  }

  .main-nav__item--booking > a {
    padding-inline: 18px;
  }
}

@media (max-width: 980px) {
  .shell {
    width: 80%;
  }

  .topbar {
    min-height: 44px;
  }

  .topbar__inner {
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .topbar__link {
    justify-content: center;
    font-size: 11px;
    text-align: center;
  }

  .site-header {
    height: auto;
    min-height: 108px;
  }

  .site-header__inner {
    display: grid;
    height: auto;
    min-height: 108px;
    grid-template-columns: 1fr auto;
    grid-template-rows: 108px auto;
    align-items: start;
  }

  .site-logo {
    width: 47px;
    margin-top: 3px;
    margin-left: 4px;
  }

  .menu-toggle {
    display: flex;
    width: 104px;
    height: 60px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 2px solid #222222;
    color: #ffffff;
    background: #111111;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
  }

  .menu-toggle__bars {
    display: grid;
    width: 17px;
    gap: 3px;
  }

  .menu-toggle__bars i {
    display: block;
    height: 2px;
    background: #ffffff;
  }

  .main-nav {
    display: none;
    width: 100%;
    padding: 18px 0 22px;
    grid-column: 1 / -1;
    margin: 0;
    background: #ffffff;
  }

  .site-header.is-open .main-nav {
    display: block;
  }

  .main-nav__list {
    display: block;
  }

  .main-nav__item {
    margin: 0 0 8px;
  }

  .main-nav__item > a {
    min-height: 38px;
    align-items: flex-start;
    padding: 0 12%;
    font-size: 12px;
  }

  .main-nav__description {
    margin-top: 2px;
    font-size: 12px;
  }

  .main-nav__item--booking {
    margin: 8px 10% 0;
  }

  .main-nav__item--booking > a {
    min-height: 50px;
    justify-content: center;
    padding-inline: 7%;
    font-size: 12px;
  }

  .home-intro__grid,
  .home-restaurant__grid,
  .rooms-main__top,
  .rooms-main__details,
  .restaurant-story__grid,
  .restaurant-reservation__grid,
  .contact-panel,
  .villa-intro__grid {
    grid-template-columns: 1fr;
  }

  .home-hotel__copy {
    width: 70%;
  }

  .newsletter-card {
    padding-inline: 48px;
  }

  .site-footer__grid {
    gap: 35px;
    grid-template-columns: 230px 1fr 1fr;
  }

  .rooms-main__top,
  .rooms-main__details {
    gap: 40px;
  }

  .restaurant-story__grid {
    gap: 50px;
  }

  .contact-panel {
    gap: 45px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .section {
    padding-block: 60px;
  }

  .topbar__inner {
    width: 100%;
    padding-inline: 20px;
  }

  .topbar__link {
    max-width: 50%;
  }

  .topbar__link:nth-child(2) {
    overflow-wrap: anywhere;
  }

  .site-header__inner {
    width: 80%;
  }

  .language-widget {
    right: 19px;
    width: 108px;
    height: 48px;
  }

  .home-hero {
    height: 890px;
  }

  .slider__content {
    width: 74%;
  }

  .slider__content h2 {
    font-size: 60px;
  }

  .slider__content p {
    font-size: 14px;
  }

  .slider__arrow {
    top: auto;
    bottom: 18px;
    opacity: 1;
    transform: none;
  }

  .slider__arrow--previous {
    left: 15px;
  }

  .slider__arrow--next {
    right: 15px;
  }

  .home-intro {
    padding-block: 75px 60px;
  }

  .home-intro__grid {
    gap: 42px;
  }

  .home-intro__copy {
    text-align: left;
  }

  .home-intro__copy > h2 {
    max-width: 280px;
    margin-inline: auto;
    font-size: 40px;
  }

  .home-intro__copy > h3 {
    font-size: 22px;
  }

  .home-intro__copy p {
    font-size: 13px;
    text-align: justify;
  }

  .home-intro__copy .home-intro__notice {
    font-size: 19px;
  }

  .home-intro__images {
    gap: 24px;
  }

  .home-intro__images img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .home-hotel {
    min-height: 665px;
    padding-block: 90px;
  }

  .home-hotel__copy {
    width: 100%;
  }

  .home-hotel h2,
  .home-restaurant__copy h2 {
    font-size: 40px;
  }

  .home-booking {
    min-height: 620px;
    display: grid;
    align-items: center;
    padding-block: 90px;
  }

  .home-booking h2 {
    max-width: 270px;
    margin-bottom: 35px;
    font-size: 40px;
    line-height: 1.03;
  }

  .home-restaurant {
    padding-block: 90px 100px;
  }

  .home-restaurant__grid {
    gap: 48px;
  }

  .home-restaurant__image img {
    width: 82%;
    height: 570px;
    margin-inline: auto;
  }

  .home-restaurant__copy {
    padding: 0;
  }

  .home-restaurant__copy p {
    font-size: 13px;
  }

  .newsletter-band {
    padding-block: 100px;
  }

  .newsletter-card {
    display: block;
    min-height: 0;
    padding: 68px 25px;
  }

  .newsletter-card__copy {
    margin-bottom: 30px;
  }

  .newsletter-card h2 {
    font-size: 30px;
  }

  .site-footer__grid {
    display: block;
    min-height: 650px;
    padding: 75px 0 60px;
  }

  .footer-logo {
    width: 300px;
    max-width: 100%;
    margin: 0 0 58px;
  }

  .footer-column {
    margin-bottom: 35px;
  }

  .footer-column h2 {
    font-size: 18px;
  }

  .footer-column p,
  .footer-column li {
    font-size: 13px;
  }

  .footer-bottom {
    min-height: 75px;
    padding-block: 20px;
    text-align: center;
  }

  .page-hero {
    min-height: 210px;
  }

  .page-hero h1 {
    font-size: 40px;
    text-align: center;
  }

  .rooms-main {
    padding-block: 80px 70px;
  }

  .rooms-slider {
    height: 405px;
  }

  .rooms-slider .slider__dots {
    display: none;
  }

  .rooms-main__top {
    gap: 28px;
  }

  .direct-booking {
    padding: 30px 24px 34px;
  }

  .rooms-main__details {
    margin-top: 60px;
    gap: 40px;
  }

  .details-copy h2,
  .equipment > h2 {
    font-size: 22px;
  }

  .newsletter-cover {
    padding-block: 120px 100px;
  }

  .newsletter-cover .newsletter-card {
    padding-block: 80px;
  }

  .restaurant-hero {
    min-height: 350px;
  }

  .restaurant-hero h1 {
    max-width: 260px;
    margin-inline: auto;
    font-size: 64px;
    line-height: 0.92;
  }

  .scroll-cue {
    width: 34px;
    height: 34px;
    font-size: 27px;
  }

  .restaurant-story {
    padding-block: 80px;
  }

  .restaurant-story__grid {
    gap: 35px;
  }

  .restaurant-story__copy h2 {
    display: none;
  }

  .restaurant-story__copy p {
    font-size: 13px;
  }

  .restaurant-story__image img {
    height: auto;
  }

  .restaurant-mosaic {
    min-height: 1380px;
  }

  .restaurant-mosaic__grid {
    width: 66.67%;
    margin-left: 7.5%;
    margin-right: auto;
    grid-template-columns: 1fr;
  }

  .restaurant-mosaic__grid > * {
    min-height: 230px;
  }

  .restaurant-mosaic__image img {
    height: 230px;
  }

  .restaurant-mosaic__text h2 {
    padding-inline: 10px;
    font-size: 20px;
  }

  .restaurant-reservation {
    padding-block: 90px;
  }

  .restaurant-reservation__grid {
    width: 74%;
    gap: 35px;
  }

  .reservation-card,
  .restaurant-reservation .newsletter-card {
    min-height: 405px;
    padding: 72px 22px;
  }

  .reservation-card h2 {
    margin-bottom: 40px;
    font-size: 30px;
  }

  .reservation-card .button {
    font-size: 13px;
  }

  .contact-map {
    height: 420px;
  }

  .contact-panel {
    width: 80%;
    padding: 50px;
    margin-top: -285px;
    margin-bottom: 50px;
  }

  .contact-panel h1,
  .contact-panel h2 {
    font-size: 30px;
  }

  .field-pair {
    gap: 18px;
  }

  .contact-panel textarea {
    min-height: 180px;
  }

  .contact-panel__coordinates {
    padding-top: 15px;
  }

  .legal-page,
  .legacy-content {
    display: block;
  }

  .legal-page__content,
  .legacy-content > article {
    padding: 55px 0 65px;
    border-right: 0;
  }

  .legal-page h1 {
    font-size: 30px;
  }

  .legal-page h2 {
    font-size: 26px;
  }

  .legal-page h3 {
    font-size: 22px;
  }

  .rates-main {
    padding-block: 75px;
  }

  .rates-main__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 36px;
  }

  .rates-main__table {
    min-height: 80px;
  }

  .rates-main__notes {
    align-self: auto;
  }

  .empty-page {
    min-height: 395px;
  }

  .legacy-listing {
    min-height: 810px;
    padding-top: 300px;
  }

  .legacy-listing__card {
    padding: 55px 30px 40px;
  }

  .legacy-listing__card h1 {
    margin-bottom: 55px;
  }

  .villa-hero {
    min-height: 600px;
  }

  .villa-hero h1 {
    font-size: 62px;
  }

  .villa-intro__grid {
    gap: 45px;
  }

  .villa-services {
    padding-block: 100px;
  }

  .villa-services__grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .legacy-content {
    min-height: 665px;
  }

  .legacy-content h1 {
    font-size: 30px;
  }

  .project-list section {
    margin-bottom: 65px;
  }

  .thank-you {
    min-height: 620px;
  }

  .thank-you__card {
    padding: 60px 28px;
  }

  .lightbox {
    width: 96vw;
    height: 84vh;
    padding: 12px;
  }

  .lightbox__arrow {
    font-size: 52px;
  }

  [data-reveal="slide-left"],
  [data-reveal="slide-right"] {
    transform: translate3d(0, 42px, 0);
  }
}

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

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

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