@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Work+Sans:wght@300;400;500;600&display=swap');
:root {
  --ink: #17282A;
  --ink-soft: #33474A;
  --sand: #F4EEE3;
  --cream: #FBF9F4;
  --gold: #C59D4D;
  --gold-dark: #A8813A;
  --line: #DED4C0;
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Work Sans', sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: var(--body);
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}
h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  margin: 0;
  font-weight: 600;
}
p {
  max-width: 64ch;
  color: var(--ink-soft);
}
.hero-title {
  font-family: var(--display);
  font-size: 5rem;
  line-height: 1.05;
  font-weight: 500;
}
img,
picture,
video {
  max-width: 100%;
}
a {
  color: inherit;
}
@media (max-width: 992px) {
  .hero-title {
    font-size: 4rem;
  }
  h1 {
    font-size: 3rem;
  }
}
@media (max-width: 576px) {
  .hero-title {
    font-size: 3rem;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
:root {
  --animation-duration: 700ms;
  --animation-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ANIMATIONS */
.fade-in,
.fade-up,
.fade-down,
.fade-left,
.fade-right,
.zoom-in {
  animation-duration: var(--animation-duration);
  animation-timing-function: var(--animation-ease);
  animation-fill-mode: both;
  opacity: 0;
}
.fade-in {
  animation-name: fade-in;
}
.fade-up {
  animation-name: fade-up;
}
.fade-down {
  animation-name: fade-down;
}
.fade-left {
  animation-name: fade-left;
}
.fade-right {
  animation-name: fade-right;
}
.zoom-in {
  animation-name: zoom-in;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-left {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-right {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoom-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.delay-100 {
  animation-delay: 100ms;
}
.delay-200 {
  animation-delay: 200ms;
}
.delay-300 {
  animation-delay: 300ms;
}
.delay-400 {
  animation-delay: 400ms;
}
.delay-500 {
  animation-delay: 500ms;
}
.delay-600 {
  animation-delay: 600ms;
}
.delay-700 {
  animation-delay: 700ms;
}
.delay-800 {
  animation-delay: 800ms;
}
@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-up,
  .fade-down,
  .fade-left,
  .fade-right,
  .zoom-in {
    animation: none;
    opacity: 1;
    transform: none;
  }
}



/* TOP BAR */
.top-bar {
  padding: 0.6rem 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-size: 0.8rem;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar__location,
.top-bar__contact {
  display: flex;
  align-items: center;
}
.top-bar__contact {
  gap: 1rem;
}
.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream);
  text-decoration: none;
  white-space: nowrap;
}
.top-bar__item i {
  color: var(--gold);
}
.top-bar__item:hover {
  color: var(--gold);
}
.top-bar__divider {
  width: 1px;
  height: 1rem;
  background: rgba(251, 249, 244, 0.2);
}
@media (max-width: 767.98px) {
  .top-bar__inner {
    justify-content: center;
  }
  .top-bar__location {
    display: none;
  }
}



/* GLOBAL BOOK NOW BUTTON */
.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 50px;
  padding: 0.55rem 1.25rem;
  background-color: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-family: var(--body);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 250ms var(--animation-ease),
    border-color 250ms var(--animation-ease),
    color 250ms var(--animation-ease),
    transform 250ms var(--animation-ease),
    box-shadow 250ms var(--animation-ease);
}
.btn-book__main {
  display: inline-block;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 250ms var(--animation-ease);
}
.btn-book__offer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 36px;
  padding-left: 0.85rem;
  border-left: 1px solid rgba(23, 40, 42, 0.28);
  line-height: 1;
}
.btn-book__offer strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: color 250ms var(--animation-ease);
}
.btn-book__offer small {
  display: block;
  margin-top: 0.45rem;
  color: rgba(23, 40, 42, 0.72);
  font-family: var(--body);
  font-size: 0.55rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 250ms var(--animation-ease);
}
.btn-book:hover,
.btn-book:focus {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(23, 40, 42, 0.14);
}
.btn-book:hover .btn-book__main,
.btn-book:focus .btn-book__main {
  color: var(--cream);
}
.btn-book:hover .btn-book__offer strong,
.btn-book:focus .btn-book__offer strong {
  color: var(--cream);
}
.btn-book:hover .btn-book__offer small,
.btn-book:focus .btn-book__offer small {
  color: rgba(251, 249, 244, 0.78);
}
.btn-book:hover .btn-book__offer,
.btn-book:focus .btn-book__offer {
  border-left-color: rgba(251, 249, 244, 0.35);
}
.btn-book:active {
  transform: translateY(0);
  box-shadow: none;
}
.btn-book:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(197, 157, 77, 0.3),
    0 6px 18px rgba(23, 40, 42, 0.12);
}
@media (max-width: 991.98px) {
  .btn-book {
    min-height: 48px;
    padding: 0.5rem 1.2rem;
    gap: 0.8rem;
  }
  .btn-book__main {
    font-size: 0.75rem;
  }
  .btn-book__offer {
    min-height: 35px;
    padding-left: 0.75rem;
  }
  .btn-book__offer strong {
    font-size: 1rem;
  }
  .btn-book__offer small {
    margin-top: 0.4rem;
    font-size: 0.43rem;
  }
}
@media (max-width: 767.98px) {
  .btn-book {
    min-height: 46px;
    padding: 0.5rem 1.1rem;
    gap: 0.75rem;
  }
  .btn-book__main {
    font-size: 0.72rem;
  }
  .btn-book__offer {
    min-height: 34px;
    padding-left: 0.7rem;
  }
  .btn-book__offer strong {
    font-size: 0.95rem;
  }
  .btn-book__offer small {
    margin-top: 0.4rem;
    font-size: 0.42rem;
    letter-spacing: 0.07em;
  }
}
@media (max-width: 575.98px) {
  .btn-book {
    min-height: 44px;
    padding: 0.45rem 0.9rem;
    gap: 0.65rem;
  }
  .btn-book__main {
    font-size: 0.68rem;
  }
  .btn-book__offer {
    min-height: 32px;
    padding-left: 0.6rem;
  }
  .btn-book__offer strong {
    font-size: 0.88rem;
  }
  .btn-book__offer small {
    margin-top: 0.35rem;
    font-size: 0.39rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn-book,
  .btn-book *,
  .btn-book__offer {
    transition: none !important;
  }
}




/* NAVBAR*/
.navbar-luxury {
  position: sticky;
  top: 0;
  z-index: 1030;
  width: 100%;
  padding-block: 0.9rem;
  background-color: rgba(251, 249, 244, 0.98);
  border-bottom: 1px solid var(--line);
  transition:
    padding 300ms var(--animation-ease),
    background-color 300ms var(--animation-ease),
    box-shadow 300ms var(--animation-ease),
    border-color 300ms var(--animation-ease);
}
.navbar-luxury.navbar-scrolled {
  padding-block: 0.65rem;
  background-color: rgba(251, 249, 244, 0.97);
  border-bottom-color: rgba(222, 212, 192, 0.85);
  box-shadow:
    0 5px 24px rgba(23, 40, 42, 0.08);
}
.navbar-luxury > .container {
  display: flex;
  align-items: center;
}
.navbar-luxury .navbar-brand {
  display: inline-flex;
  align-items: center;
  margin-right: 2rem;
  padding: 0;
  line-height: 1;
}
.navbar-luxury .navbar-brand img {
  display: block;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}
.navbar-luxury .navbar-nav {
  display: flex;
  align-items: center;
}
.navbar-luxury .nav-item {
  display: flex;
  align-items: center;
}
.navbar-luxury .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.045em;
  text-decoration: none;
  transition:
    color 250ms var(--animation-ease);
}
.navbar-luxury .nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.15rem;
  height: 1px;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform 350ms var(--animation-ease);
}
.navbar-luxury .nav-link:hover,
.navbar-luxury .nav-link:focus,
.navbar-luxury .nav-link.active {
  color: var(--ink);
}
.navbar-luxury .nav-link:hover::after,
.navbar-luxury .nav-link:focus::after,
.navbar-luxury .nav-link.active::after {
  transform: scaleX(1);
}
.navbar-luxury .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.navbar-luxury .dropdown-toggle::after {
  margin-left: 0.35rem;
  vertical-align: 0.1em;
  border-top-color: var(--gold-dark);
  transition:
    transform 250ms var(--animation-ease);
}
.navbar-luxury .lang-flag {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 0.15rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.navbar-luxury .dropdown-menu {
  min-width: 11rem;
  margin-top: 0.75rem;
  padding: 0.4rem;
  background-color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow:
    0 12px 30px rgba(23, 40, 42, 0.10);
  animation:
    navbar-dropdown-in 180ms var(--animation-ease) both;
}
@keyframes navbar-dropdown-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.navbar-luxury .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.65rem;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 400;
  border-radius: 4px;
  transition:
    color 200ms var(--animation-ease),
    background-color 200ms var(--animation-ease);
}
.navbar-luxury .dropdown-item:hover,
.navbar-luxury .dropdown-item:focus {
  color: var(--ink);
  background-color: rgba(197, 157, 77, 0.12);
}
.navbar-luxury .dropdown-item.active {
  color: var(--ink);
  background-color: transparent;
  font-weight: 600;
}
.navbar-luxury .navbar-toggler {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.6rem;
  background-color: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition:
    border-color 200ms var(--animation-ease),
    background-color 200ms var(--animation-ease);
}
.navbar-luxury .navbar-toggler:hover {
  background-color: rgba(197, 157, 77, 0.08);
  border-color: var(--gold);
}
.navbar-luxury .navbar-toggler:focus {
  box-shadow:
    0 0 0 3px rgba(197, 157, 77, 0.15);
}
.navbar-luxury .navbar-toggler-icon {
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2317282A' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-luxury .navbar-brand {
    margin-right: 1rem;
  }
  .navbar-luxury .navbar-brand img {
    max-width: 100px;
  }
  .navbar-luxury .nav-link {
    padding-inline: 0.55rem;
    font-size: 0.75rem;
  }
  .navbar-luxury .nav-link::after {
    left: 0.55rem;
    right: 0.55rem;
  }
  .navbar-luxury .navbar-toggler {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  .navbar-luxury {
    padding-block: 0.75rem;
  }
  .navbar-luxury.navbar-scrolled {
    padding-block: 0.65rem;
  }
  .navbar-luxury .navbar-brand {
    margin-right: 0;
  }
  .navbar-luxury .navbar-brand img {
    max-width: 90px;
  }
  .navbar-luxury .navbar-toggler {
    display: inline-flex;
  }
  .navbar-luxury .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
  }
  .navbar-luxury .navbar-nav {
    width: 100%;
    align-items: stretch;
  }
  .navbar-luxury .nav-item {
    display: block;
    width: 100%;
  }
  .navbar-luxury .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.7rem 0.2rem;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--line);
  }
  .navbar-luxury .nav-link::after {
    display: none;
  }
  .navbar-luxury .dropdown-toggle {
    justify-content: flex-start;
  }
  .navbar-luxury .dropdown-menu {
    position: static !important;
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.25rem 0 0.25rem 0.75rem;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    animation: none;
  }
  .navbar-luxury .dropdown-item {
    padding: 0.6rem 0.5rem;
  }
  .navbar-luxury .btn-book {
    display: flex;
    width: 100%;
    margin-top: 1rem;
  }
}
@media (max-width: 767.98px) {
  .navbar-luxury .navbar-brand img {
    max-width: 100px;
  }
}
@media (max-width: 575.98px) {
  .navbar-luxury {
    padding-block: 0.7rem;
  }
  .navbar-luxury.navbar-scrolled {
    padding-block: 0.6rem;
  }
  .navbar-luxury .navbar-brand img {
    max-width: 90px;
  }
  .navbar-luxury .navbar-toggler {
    padding: 0.35rem 0.5rem;
  }
  .navbar-luxury .navbar-toggler-icon {
    width: 1.15rem;
    height: 1.15rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .navbar-luxury,
  .navbar-luxury *,
  .navbar-luxury .nav-link::after {
    transition: none !important;
    animation: none !important;
  }
}

/* HERO */
.hero-video {
  position: relative;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--ink);
}
.hero-video__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}
.hero-video__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-video__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(23, 40, 42, 0.78) 0%,
      rgba(23, 40, 42, 0.58) 38%,
      rgba(23, 40, 42, 0.25) 70%,
      rgba(23, 40, 42, 0.18) 100%
    );
}
.hero-video__gradient {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      to top,
      rgba(23, 40, 42, 0.72) 0%,
      rgba(23, 40, 42, 0.32) 45%,
      transparent 100%
    );
}
.hero-video__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 7rem;
}
.hero-video__content {
  max-width: 720px;
  color: var(--cream);
}
.hero-video__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-video__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background-color: var(--gold);
}
.hero-video__title {
  max-width: 760px;
  margin: 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.hero-video__title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.hero-video__text {
  max-width: 580px;
  margin: 1.75rem 0 0;
  color: rgba(251, 249, 244, 0.86);
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.015em;
}
.hero-video__actions {
  display: flex;
  align-items: center;
  margin-top: 2.25rem;
}
.hero-video__actions .btn-book {
  flex-shrink: 0;
}
.hero-video__location {
  position: absolute;
  left: max(1.5rem, calc((100% - 1320px) / 2));
  bottom: 2rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(251, 249, 244, 0.82);
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-video__location i {
  color: var(--gold);
  font-size: 0.75rem;
}
.hero-video__scroll {
  position: absolute;
  right: max(1.5rem, calc((100% - 1320px) / 2));
  bottom: 1.75rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  color: var(--cream);
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 250ms var(--animation-ease),
    transform 250ms var(--animation-ease);
}
.hero-video__scroll:hover {
  color: var(--gold);
  transform: translateY(-3px);
}
.hero-video__scroll-line {
  position: relative;
  display: block;
  width: 1px;
  height: 54px;
  overflow: hidden;
  background-color: rgba(251, 249, 244, 0.35);
}
.hero-video__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 50%;
  background-color: var(--gold);
  animation: hero-scroll-line 2s
    cubic-bezier(0.65, 0, 0.35, 1)
    infinite;
}
@keyframes hero-scroll-line {
  0% {
    top: -50%;
  }
  50% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}
.hero-video__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 70% 45%,
      rgba(197, 157, 77, 0.08),
      transparent 35%
    );
}
@media (min-width: 1400px) {
  .hero-video {
    min-height: calc(100vh - 105px);
  }
  .hero-video__container {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
  .hero-video__content {
    max-width: 780px;
  }
  .hero-video__text {
    font-size: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-video {
    min-height: calc(100vh - 95px);
  }
  .hero-video__container {
    padding-top: 4.5rem;
    padding-bottom: 7rem;
  }
  .hero-video__title {
    font-size: clamp(3.5rem, 6vw, 5rem);
  }
  .hero-video__text {
    max-width: 520px;
  }
  .hero-video__location {
    left: 2rem;
  }
  .hero-video__scroll {
    right: 2rem;
  }
}
@media (max-width: 991.98px) {
  .hero-video {
    min-height: 760px;
  }
  .hero-video__container {
    padding-top: 5rem;
    padding-bottom: 8rem;
  }
  .hero-video__content {
    max-width: 650px;
  }
  .hero-video__title {
    font-size: clamp(3.2rem, 8vw, 5rem);
  }
  .hero-video__text {
    max-width: 560px;
    font-size: 0.9rem;
  }
  .hero-video__location {
    left: 1.5rem;
    bottom: 1.5rem;
  }
  .hero-video__scroll {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .hero-video {
    min-height: 700px;
    align-items: center;
  }
  .hero-video__background {
    object-position: 58% center;
  }
  .hero-video__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(23, 40, 42, 0.48) 0%,
        rgba(23, 40, 42, 0.58) 40%,
        rgba(23, 40, 42, 0.72) 100%
      );
  }
  .hero-video__container {
    padding-top: 4rem;
    padding-bottom: 8rem;
  }
  .hero-video__content {
    max-width: 100%;
  }
  .hero-video__eyebrow {
    margin-bottom: 1rem;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }
  .hero-video__eyebrow::before {
    width: 24px;
  }
  .hero-video__title {
    font-size: clamp(2.8rem, 13vw, 4rem);
    line-height: 1;
  }
  .hero-video__text {
    max-width: 100%;
    margin-top: 1.35rem;
    font-size: 0.85rem;
    line-height: 1.7;
  }
  .hero-video__actions {
    margin-top: 1.75rem;
  }
  .hero-video__location {
    left: 1.25rem;
    bottom: 1.25rem;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }
  .hero-video__scroll {
    right: 1.25rem;
    bottom: 1.15rem;
    font-size: 0.55rem;
  }
  .hero-video__scroll-line {
    height: 40px;
  }
}
@media (max-width: 575.98px) {
  .hero-video {
    min-height: 650px;
  }
  .hero-video__container {
    padding-top: 3.5rem;
    padding-bottom: 7rem;
  }
  .hero-video__eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
  }
  .hero-video__title {
    font-size: clamp(2.5rem, 13vw, 3.3rem);
    line-height: 1.02;
  }
  .hero-video__text {
    margin-top: 1.15rem;
    font-size: 0.78rem;
    line-height: 1.65;
  }
  .hero-video__actions {
    margin-top: 1.5rem;
  }
  .hero-video__location {
    left: 1rem;
    bottom: 1rem;
    font-size: 0.52rem;
  }
  .hero-video__scroll {
    right: 1rem;
    bottom: 0.9rem;
  }
}
@media (max-width: 400px) {
  .hero-video {
    min-height: 620px;
  }
  .hero-video__container {
    padding-top: 3rem;
    padding-bottom: 6.5rem;
  }
  .hero-video__title {
    font-size: 2.45rem;
  }
  .hero-video__text {
    font-size: 0.75rem;
  }
  .hero-video__location span {
    display: none;
  }
  .hero-video__location i {
    font-size: 0.8rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video__scroll-line::after {
    animation: none;
  }
  .hero-video__scroll,
  .hero-video__background {
    transition: none;
  }
}

/* ABOUT */
.about-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background-color: var(--cream);
}
.about-section__visual {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
}
.about-section__image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--sand);
  aspect-ratio: 4 / 5;
}
.about-section__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 800ms var(--animation-ease);
}
.about-section__visual:hover .about-section__image {
  transform: scale(1.035);
}
.about-section__frame {
  position: absolute;
  top: 1.5rem;
  right: 0;
  width: 100%;
  height: calc(100% - 1.5rem);
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: -1;
}
.about-section__badge {
  position: absolute;
  left: -1.25rem;
  bottom: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  min-width: 175px;
  padding: 1rem 1.25rem;
  background-color: var(--ink);
  color: var(--cream);
  box-shadow:
    0 12px 30px rgba(23, 40, 42, 0.16);
}
.about-section__badge-number {
  color: var(--gold);
  font-family: var(--display);
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.85;
}
.about-section__content {
  max-width: 600px;
  padding-left: 2rem;
}
.about-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
  color: var(--gold-dark);
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.about-section__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background-color: var(--gold);
}
.about-section__title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(3rem, 4.5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.about-section__title em {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 400;
}
.about-section__line {
  width: 55px;
  height: 1px;
  margin: 1.5rem 0 1.5rem;
  background-color: var(--gold);
}
.about-section__lead {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}
.about-section__text {
  max-width: 560px;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
}
.about-section__highlights {
  display: grid;
  grid-template-columns:
    repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.about-section__highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.about-section__highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--gold-dark);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.7rem;
}
.about-section__highlight strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.67rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.about-section__highlight div > span {
  display: block;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 300;
  line-height: 1.4;
}
.about-section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 250ms var(--animation-ease),
    gap 250ms var(--animation-ease);
}
.about-section__link i {
  color: var(--gold);
  font-size: 0.7rem;
  transition:
    transform 250ms var(--animation-ease);
}
.about-section__link:hover {
  color: var(--gold-dark);
  gap: 1rem;
}
.about-section__link:hover i {
  transform: translateX(3px);
}
@media (min-width: 1400px) {
  .about-section {
    padding: 8rem 0;
  }
  .about-section__content {
    padding-left: 3rem;
  }
  .about-section__title {
    font-size: 4.5rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .about-section {
    padding: 6rem 0;
  }
  .about-section__visual {
    padding-right: 1rem;
    padding-bottom: 1rem;
  }
  .about-section__content {
    padding-left: 1rem;
  }
  .about-section__title {
    font-size: 3.5rem;
  }
  .about-section__highlights {
    gap: 0.75rem;
  }
  .about-section__highlight {
    gap: 0.45rem;
  }
}
@media (max-width: 991.98px) {
  .about-section {
    padding: 5.5rem 0;
  }
  .about-section__visual {
    max-width: 650px;
    margin: 0 auto 1rem;
  }
  .about-section__content {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 0;
  }
  .about-section__title {
    font-size: clamp(3rem, 7vw, 4rem);
  }
  .about-section__text,
  .about-section__lead {
    max-width: 650px;
  }
  .about-section__highlights {
    max-width: 650px;
  }
}
@media (max-width: 767.98px) {
  .about-section {
    padding: 4.5rem 0;
  }
  .about-section__visual {
    padding-right: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .about-section__image-wrapper {
    aspect-ratio: 4 / 5;
  }
  .about-section__frame {
    top: 0.75rem;
  }
  .about-section__badge {
    left: -0.25rem;
    bottom: 1.5rem;
    min-width: 155px;
    padding: 0.85rem 1rem;
  }
  .about-section__badge-number {
    font-size: 2.3rem;
  }
  .about-section__content {
    padding: 0;
  }
  .about-section__eyebrow {
    margin-bottom: 1rem;
    font-size: 0.6rem;
  }
  .about-section__title {
    font-size: clamp(2.7rem, 12vw, 3.5rem);
  }
  .about-section__line {
    margin: 1.25rem 0;
  }
  .about-section__lead {
    font-size: 0.9rem;
    line-height: 1.75;
  }
  .about-section__text {
    font-size: 0.8rem;
    line-height: 1.8;
  }
  .about-section__highlights {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 1.75rem;
  }
  .about-section__highlight {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }
  .about-section__highlight:first-child {
    padding-top: 0;
  }
  .about-section__link {
    margin-top: 1.75rem;
  }
}
@media (max-width: 575.98px) {
  .about-section {
    padding: 4rem 0;
  }
  .about-section__visual {
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .about-section__frame {
    top: 0.5rem;
  }
  .about-section__badge {
    left: -0.15rem;
    bottom: 1.25rem;
    min-width: 145px;
    padding: 0.75rem 0.9rem;
  }
  .about-section__badge-number {
    font-size: 2rem;
  }
  .about-section__title {
    font-size: 2.65rem;
  }
  .about-section__text {
    font-size: 0.77rem;
  }
  .about-section__highlight-icon {
    width: 30px;
    height: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-section__image,
  .about-section__link,
  .about-section__link i {
    transition: none !important;
  }
  .about-section__visual:hover .about-section__image {
    transform: none;
  }
}


/* ACCOMMODATION SECTION */
.accommodation-section {
  position: relative;
  padding: 6rem 0;
  background-color: var(--sand);
  color: var(--ink);
  overflow: hidden;
}
.accommodation-section .section-eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.accommodation-section .section-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.05;
}
.accommodation-section .section-title em {
  color: var(--gold-dark);
  font-style: italic;
}
.accommodation-section .section-intro {
  max-width: 48ch;
  margin: 0 0 0 auto;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
}
.accommodation-carousel {
  width: 100%;
  max-width: 100%;
}
.accommodation-carousel .owl-stage-outer {
  width: 100%;
  overflow: hidden;
}
.accommodation-carousel .owl-stage {
  display: flex;
}
.accommodation-carousel .owl-item {
  display: flex;
  height: auto;
}
.accommodation-carousel .item {
  width: 100%;
  height: 100%;
  padding: 0 0.6rem;
}
.accommodation-carousel .owl-item:first-child .item {
  padding-left: 0;
}
.accommodation-carousel .owl-item:last-child .item {
  padding-right: 0;
}
.accommodation-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: var(--cream);
  border: 1px solid var(--line);
  box-shadow:
    0 8px 30px rgba(23, 40, 42, 0.06);
  transition:
    transform 350ms var(--animation-ease),
    box-shadow 350ms var(--animation-ease),
    border-color 350ms var(--animation-ease);
}
.accommodation-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 157, 77, 0.5);
  box-shadow:
    0 18px 40px rgba(23, 40, 42, 0.11);
}
.accommodation-card__image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: var(--line);
}
.accommodation-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 700ms var(--animation-ease);
}
.accommodation-card:hover .accommodation-card__image img {
  transform: scale(1.04);
}
.accommodation-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.6rem 1.5rem 1.5rem;
}
.accommodation-card__category {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold-dark);
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.accommodation-card__title {
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.15;
}
.accommodation-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.accommodation-card__amenities span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.4;
}
.accommodation-card__amenities i {
  color: var(--gold);
  font-size: 0.75rem;
}
.accommodation-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
}
.accommodation-card__details {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 0.25rem;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 250ms var(--animation-ease);
}
.accommodation-card__details::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition:
    transform 300ms var(--animation-ease);
}
.accommodation-card__details:hover {
  color: var(--gold-dark);
}
.accommodation-card__details:hover::after {
  transform: scaleX(1);
}
.accommodation-card__actions .btn-book {
  flex-shrink: 0;
}
.accommodation-carousel__navigation {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 300px;
  margin: 2.5rem auto 0;
}
.accommodation-carousel__prev,
.accommodation-carousel__next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background-color: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition:
    color 250ms var(--animation-ease),
    background-color 250ms var(--animation-ease),
    border-color 250ms var(--animation-ease),
    transform 250ms var(--animation-ease);
}
.accommodation-carousel__prev:hover,
.accommodation-carousel__next:hover {
  color: var(--cream);
  background-color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.accommodation-carousel__prev:focus,
.accommodation-carousel__next:focus {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(197, 157, 77, 0.18);
}
.accommodation-carousel__line {
  flex: 1;
  height: 1px;
  margin: 0 1rem;
  background-color: var(--line);
}
.accommodation-carousel__prev.disabled,
.accommodation-carousel__next.disabled {
  opacity: 0.4;
  pointer-events: none;
}
.accommodation-carousel .owl-dots {
  display: none;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .accommodation-section {
    padding: 5rem 0;
  }
  .accommodation-section .section-title {
    font-size: 2.8rem;
  }
  .accommodation-card__image {
    height: 250px;
  }
  .accommodation-card__body {
    padding: 1.4rem;
  }
  .accommodation-card__title {
    font-size: 1.5rem;
  }
  .accommodation-card__amenities {
    gap: 0.55rem 0.75rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .accommodation-section {
    padding: 5rem 0;
  }
  .accommodation-section .section-title {
    font-size: 2.7rem;
  }
  .accommodation-section .section-intro {
    margin-top: 1rem;
    margin-left: 0;
  }
  .accommodation-card__image {
    height: 300px;
  }
}
@media (max-width: 767.98px) {
  .accommodation-section {
    padding: 4rem 0;
  }
  .accommodation-section .section-title {
    font-size: 2.4rem;
  }
  .accommodation-section .section-intro {
    margin-top: 1.25rem;
    margin-left: 0;
    font-size: 0.88rem;
    line-height: 1.7;
  }
  .accommodation-section .row.mb-5 {
    margin-bottom: 2.5rem !important;
  }
  .accommodation-carousel .item {
    padding: 0;
  }
  .accommodation-carousel .owl-item {
    padding: 0 0.25rem;
  }
  .accommodation-card__image {
    height: 260px;
  }
  .accommodation-card__body {
    padding: 1.35rem;
  }
  .accommodation-card__title {
    font-size: 1.5rem;
  }
  .accommodation-card__amenities {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .accommodation-card__actions {
    align-items: center;
  }
  .accommodation-carousel__navigation {
    margin-top: 2rem;
  }
}
@media (max-width: 575.98px) {
  .accommodation-section {
    padding: 3.5rem 0;
  }
  .accommodation-section .section-eyebrow {
    font-size: 0.65rem;
  }
  .accommodation-section .section-title {
    font-size: 2.15rem;
  }
  .accommodation-card__image {
    height: 230px;
  }
  .accommodation-card__body {
    padding: 1.2rem;
  }
  .accommodation-card__title {
    font-size: 1.4rem;
  }
  .accommodation-card__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .accommodation-card__details {
    align-self: flex-start;
  }
  .accommodation-card__actions .btn-book {
    width: 100%;
  }
  .accommodation-carousel__navigation {
    max-width: 260px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .accommodation-section *,
  .accommodation-section *::before,
  .accommodation-section *::after {
    transition: none !important;
    animation: none !important;
  }
}


/* FACILITIES SECTION */
.facilities-section {
  position: relative;
  padding: 6rem 0;
  background-color: var(--cream);
  overflow: hidden;
}
.facilities-section .section-eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--gold-dark);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.facilities-section .section-title {
  margin-bottom: 1.25rem;
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
}
.facilities-section .section-title em {
  color: var(--gold-dark);
  font-style: italic;
}
.facilities-section .section-intro {
  margin-bottom: 0;
  max-width: 62ch;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 0.9rem;
  line-height: 1.8;
}
.facility-card {
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  background-color: var(--sand);
  border: 1px solid var(--line);
  transition:
    transform 300ms var(--animation-ease),
    border-color 300ms var(--animation-ease),
    box-shadow 300ms var(--animation-ease),
    background-color 300ms var(--animation-ease);
}
.facility-card:hover {
  transform: translateY(-5px);
  background-color: var(--cream);
  border-color: var(--gold);
  box-shadow:
    0 14px 35px rgba(23, 40, 42, 0.08);
}
.facility-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  color: var(--gold-dark);
  background-color: rgba(197, 157, 77, 0.10);
  border: 1px solid rgba(197, 157, 77, 0.25);
  border-radius: 50%;
  font-size: 1rem;
  transition:
    color 250ms var(--animation-ease),
    background-color 250ms var(--animation-ease),
    transform 250ms var(--animation-ease);
}
.facility-card:hover .facility-card__icon {
  color: var(--cream);
  background-color: var(--gold-dark);
  transform: rotate(-5deg);
}
.facility-card__content {
  min-width: 0;
}
.facility-card__title {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.2;
}
.facility-card__content p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 0.8rem;
  line-height: 1.7;
}
.facilities-section__cta {
  margin-top: 3.5rem;
}
@media (max-width: 991.98px) {
  .facilities-section {
    padding: 5rem 0;
  }
  .facilities-section .section-title {
    font-size: 2.6rem;
  }
  .facility-card {
    padding: 1.75rem;
  }
}
@media (max-width: 767.98px) {
  .facilities-section {
    padding: 4.5rem 0;
  }
  .facilities-section .section-title {
    font-size: 2.3rem;
  }
  .facility-card {
    padding: 1.5rem;
  }
  .facility-card__icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
}
@media (max-width: 575.98px) {
  .facilities-section {
    padding: 4rem 0;
  }
  .facilities-section .section-title {
    font-size: 2rem;
  }
  .facility-card {
    gap: 1rem;
    padding: 1.35rem;
  }
  .facility-card__title {
    font-size: 1.3rem;
  }
  .facility-card__content p {
    font-size: 0.76rem;
  }
}

/* RESTAURANT SECTION */
.restaurant-section {
  position: relative;
  padding: 7rem 0;
  background-color: var(--sand);
  overflow: hidden;
}
.restaurant-section__image {
  position: relative;
  width: 100%;
  min-height: 560px;
  overflow: hidden;
}
.restaurant-section__image img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition:
    transform 800ms var(--animation-ease);
}
.restaurant-section__image:hover img {
  transform: scale(1.035);
}
.restaurant-section__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(23, 40, 42, 0.55),
      rgba(23, 40, 42, 0.02) 55%
    );
  pointer-events: none;
}
.restaurant-section__image-caption {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  color: var(--cream);
}
.restaurant-section__image-caption span {
  margin-bottom: 0.35rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.restaurant-section__image-caption strong {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.15;
}
.restaurant-section__content {
  max-width: 540px;
  padding-left: 1.5rem;
}
.restaurant-section .section-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold-dark);
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.restaurant-section .section-title {
  margin-bottom: 1.5rem;
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.08;
  color: var(--ink);
}
.restaurant-section .section-title em {
  display: block;
  font-weight: 400;
  font-style: italic;
}
.restaurant-section__text {
  margin-bottom: 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.8;
}
.restaurant-section__highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.restaurant-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.restaurant-highlight:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.restaurant-highlight > i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  color: var(--gold-dark);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.9rem;
}
.restaurant-highlight div {
  display: flex;
  flex-direction: column;
}
.restaurant-highlight strong {
  margin-bottom: 0.2rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
}
.restaurant-highlight span {
  color: var(--ink-soft);
  font-size: 0.76rem;
}
.restaurant-section__actions {
  margin-top: 2rem;
}
@media (max-width: 991.98px) {
  .restaurant-section {
    padding: 5.5rem 0;
  }
  .restaurant-section__image {
    min-height: 480px;
  }
  .restaurant-section__image img {
    height: 480px;
  }
  .restaurant-section__content {
    max-width: 100%;
    padding-left: 0;
  }
  .restaurant-section .section-title {
    font-size: 2.7rem;
  }
}
@media (max-width: 767.98px) {
  .restaurant-section {
    padding: 4.5rem 0;
  }
  .restaurant-section__image {
    min-height: 380px;
  }
  .restaurant-section__image img {
    height: 380px;
  }
  .restaurant-section__image-caption {
    left: 1.25rem;
    bottom: 1.25rem;
  }
  .restaurant-section__image-caption strong {
    font-size: 1.5rem;
  }
  .restaurant-section .section-title {
    font-size: 2.3rem;
  }
  .restaurant-section__text {
    font-size: 0.86rem;
    line-height: 1.75;
  }
}
@media (max-width: 575.98px) {
  .restaurant-section {
    padding: 4rem 0;
  }
  .restaurant-section__image {
    min-height: 320px;
  }
  .restaurant-section__image img {
    height: 320px;
  }
  .restaurant-section .section-title {
    font-size: 2.1rem;
  }
  .restaurant-highlight {
    gap: 0.75rem;
  }
  .restaurant-highlight > i {
    width: 38px;
    height: 38px;
  }
}

/* GALLERY SECTION */
.gallery-section {
  position: relative;
  padding: 7rem 0;
  background-color: var(--cream);
  overflow: hidden;
}
.gallery-section .section-eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--gold);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.gallery-section .section-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.08;
}
.gallery-section .section-title em {
  color: var(--gold-dark);
  font-style: italic;
}
.gallery-section .section-intro {
  margin: 0 0 0 auto;
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.8;
}
.gallery-carousel {
  position: relative;
  width: 100%;
  margin-top: 3rem;
}
.gallery-carousel .owl-stage {
  display: flex;
}
.gallery-carousel .owl-item {
  display: flex;
}
.gallery-carousel .item {
  width: 100%;
  padding: 0 0.5rem;
}
.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  height: 430px;
  overflow: hidden;
  background-color: var(--sand);
  text-decoration: none;
}
.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition:
    transform 700ms var(--animation-ease);
}
.gallery-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      to top,
      rgba(23, 40, 42, 0.45),
      rgba(23, 40, 42, 0.05) 55%,
      rgba(23, 40, 42, 0.15)
    );
  opacity: 0;
  transition:
    opacity 350ms var(--animation-ease);
}
.gallery-card:hover img {
  transform: scale(1.06);
}
.gallery-card:hover .gallery-card__overlay,
.gallery-card:focus .gallery-card__overlay {
  opacity: 1;
}
.gallery-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--cream);
  background-color: rgba(197, 157, 77, 0.95);
  border: 1px solid rgba(251, 249, 244, 0.7);
  border-radius: 50%;
  transform: translateY(10px);
  transition:
    transform 350ms var(--animation-ease),
    background-color 250ms var(--animation-ease);
}
.gallery-card:hover .gallery-card__icon,
.gallery-card:focus .gallery-card__icon {
  transform: translateY(0);
}
.gallery-card__icon i {
  font-size: 0.9rem;
}
.gallery-carousel .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 2rem;
}
.gallery-carousel .owl-dot {
  width: 7px;
  height: 7px;
  padding: 0 !important;
  background-color: var(--line) !important;
  border: 0;
  border-radius: 50%;
  transition:
    width 300ms var(--animation-ease),
    background-color 300ms var(--animation-ease);
}
.gallery-carousel .owl-dot.active {
  width: 24px;
  background-color: var(--gold) !important;
  border-radius: 10px;
}
.gallery-carousel__navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-carousel__navigation button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background-color: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    color 250ms var(--animation-ease),
    background-color 250ms var(--animation-ease),
    border-color 250ms var(--animation-ease),
    transform 250ms var(--animation-ease);
}
.gallery-carousel__navigation button:hover {
  color: var(--cream);
  background-color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.gallery-carousel__navigation button i {
  font-size: 0.75rem;
}
.gallery-carousel__line {
  width: 70px;
  height: 1px;
  background-color: var(--line);
}
@media (max-width: 991.98px) {
  .gallery-section {
    padding: 5.5rem 0;
  }
  .gallery-section .section-title {
    font-size: 2.8rem;
  }
  .gallery-section .section-intro {
    margin-top: 1.5rem;
    margin-left: 0;
  }
  .gallery-card {
    height: 380px;
  }
}
@media (max-width: 767.98px) {
  .gallery-section {
    padding: 4.5rem 0;
  }
  .gallery-section .section-title {
    font-size: 2.4rem;
  }
  .gallery-section .section-intro {
    font-size: 0.84rem;
    line-height: 1.7;
  }
  .gallery-carousel {
    margin-top: 2rem;
  }
  .gallery-carousel .item {
    padding: 0;
  }
  .gallery-card {
    height: 360px;
  }
  .gallery-carousel__navigation {
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .gallery-section {
    padding: 4rem 0;
  }
  .gallery-section .section-title {
    font-size: 2.15rem;
  }
  .gallery-card {
    height: 330px;
  }
  .gallery-card__icon {
    width: 48px;
    height: 48px;
  }
  .gallery-carousel__navigation button {
    width: 40px;
    height: 40px;
  }
  .gallery-carousel__line {
    width: 45px;
  }
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  position: relative;
  padding: 7rem 0;
  background-color: var(--sand);
  overflow: hidden;
}
.testimonials-section__header {
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.testimonials-section .section-eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--gold);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.testimonials-section .section-title {
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.08;
}
.testimonials-section .section-title em {
  color: var(--gold-dark);
  font-style: italic;
}
.testimonials-section .section-intro {
  max-width: 580px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.8;
}
.testimonials-carousel {
  width: 100%;
}
.testimonials-carousel .owl-stage {
  display: flex;
}
.testimonials-carousel .owl-item {
  display: flex;
}
.testimonials-carousel .item {
  display: flex;
  width: 100%;
  padding: 0 0.6rem;
}
.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 390px;
  padding: 2.5rem 2.25rem;
  background-color: var(--sand);
  border: 1px solid var(--line);
  transition:
    transform 350ms var(--animation-ease),
    box-shadow 350ms var(--animation-ease),
    border-color 350ms var(--animation-ease);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 157, 77, 0.5);
  box-shadow:
    0 18px 40px rgba(23, 40, 42, 0.08);
}
.testimonial-card__quote {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--cream);
  background-color: var(--gold);
  border-radius: 50%;
}
.testimonial-card__quote i {
  font-size: 1rem;
}
.testimonial-card__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.testimonial-card__stars i {
  font-size: 0.7rem;
}
.testimonial-card__text {
  max-width: none;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.55;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 2rem;
}
.testimonial-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  color: var(--gold-dark);
  background-color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.1rem;
}
.testimonial-card__author h3 {
  margin: 0 0 0.15rem;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
}
.testimonial-card__author span {
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 0.7rem;
}
.testimonials-carousel__navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.testimonials-carousel__navigation button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background-color: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    color 250ms var(--animation-ease),
    background-color 250ms var(--animation-ease),
    border-color 250ms var(--animation-ease),
    transform 250ms var(--animation-ease);
}
.testimonials-carousel__navigation button:hover {
  color: var(--cream);
  background-color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.testimonials-carousel__navigation button i {
  font-size: 0.75rem;
}
.testimonials-carousel__line {
  width: 70px;
  height: 1px;
  background-color: var(--line);
}
.testimonials-carousel .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 2rem;
}
.testimonials-carousel .owl-dot {
  width: 7px;
  height: 7px;
  padding: 0 !important;
  background-color: var(--line) !important;
  border: 0;
  border-radius: 50%;
}
.testimonials-carousel .owl-dot.active {
  width: 24px;
  background-color: var(--gold) !important;
  border-radius: 10px;
}
@media (max-width: 991.98px) {
  .testimonials-section {
    padding: 5.5rem 0;
  }
  .testimonials-section__header {
    margin-bottom: 3rem;
  }
  .testimonials-section .section-title {
    font-size: 2.8rem;
  }
  .testimonial-card {
    min-height: 360px;
    padding: 2rem;
  }
}
@media (max-width: 767.98px) {
  .testimonials-section {
    padding: 4.5rem 0;
  }
  .testimonials-section__header {
    margin-bottom: 2.5rem;
  }
  .testimonials-section .section-title {
    font-size: 2.4rem;
  }
  .testimonials-section .section-intro {
    font-size: 0.84rem;
  }
  .testimonials-carousel .item {
    padding: 0;
  }
  .testimonial-card {
    min-height: 350px;
    padding: 2rem 1.5rem;
  }
  .testimonial-card__text {
    font-size: 1.2rem;
  }
}
@media (max-width: 575.98px) {
  .testimonials-section {
    padding: 4rem 0;
  }
  .testimonials-section .section-title {
    font-size: 2.2rem;
  }
  .testimonial-card {
    min-height: 330px;
  }
  .testimonials-carousel__navigation button {
    width: 40px;
    height: 40px;
  }
  .testimonials-carousel__line {
    width: 45px;
  }
}

/* DISCOVER BORSH */
.discover-section {
  position: relative;
  padding: 7rem 0;
  background-color: var(--cream);
  overflow: hidden;
}
.discover-section__image-wrap {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.discover-section__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--animation-ease);
}
.discover-section__image-wrap:hover .discover-section__image {
  transform: scale(1.03);
}
.discover-section__image-caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  background-color: rgba(23, 40, 42, 0.85);
  color: var(--cream);
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.discover-section__image-caption i {
  color: var(--gold);
}
.discover-section__content {
  max-width: 540px;
  padding-left: 2rem;
}
.discover-section .section-eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--gold-dark);
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.discover-section .section-title {
  margin: 0 0 1.5rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 3.3rem;
  font-weight: 500;
  line-height: 1.05;
}
.discover-section .section-title em {
  color: var(--gold-dark);
  font-style: italic;
}
.discover-section__lead {
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
.discover-section__text {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
}
.discover-section__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.discover-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.discover-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--gold-dark);
  border: 1px solid var(--line);
  border-radius: 50%;
}
.discover-feature__icon i {
  font-size: 0.85rem;
}
.discover-feature h3 {
  margin: 0 0 0.25rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
}
.discover-feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.6;
}
.discover-section__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.2rem;
  padding-bottom: 0.35rem;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
.discover-section__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--animation-ease);
}
.discover-section__link:hover {
  color: var(--gold-dark);
}
.discover-section__link:hover::after {
  transform: scaleX(1);
}
.discover-section__link i {
  color: var(--gold);
  transition: transform 300ms var(--animation-ease);
}
.discover-section__link:hover i {
  transform: translateX(4px);
}
@media (max-width: 991.98px) {
  .discover-section {
    padding: 5rem 0;
  }
  .discover-section__content {
    max-width: none;
    padding-left: 0;
  }
  .discover-section__image-wrap {
    height: 480px;
  }
  .discover-section .section-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 767.98px) {
  .discover-section {
    padding: 4rem 0;
  }
  .discover-section__image-wrap {
    height: 380px;
  }
  .discover-section .section-title {
    font-size: 2.4rem;
  }
  .discover-section__features {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .discover-section__image-caption {
    left: 1rem;
    bottom: 1rem;
  }
}
@media (max-width: 575.98px) {
  .discover-section {
    padding: 3.5rem 0;
  }
  .discover-section__image-wrap {
    height: 320px;
  }
  .discover-section .section-title {
    font-size: 2.15rem;
  }
  .discover-section__lead {
    font-size: 0.9rem;
  }
  .discover-section__text {
    font-size: 0.82rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .discover-section *,
  .discover-section *::before,
  .discover-section *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* BOOKING CTA */
.booking-cta {
  position: relative;
  padding: 7rem 0;
  background-color: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.booking-cta__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(197, 157, 77, 0.13),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 50%,
      rgba(197, 157, 77, 0.09),
      transparent 30%
    );
}
.booking-cta::before,
.booking-cta::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(197, 157, 77, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.booking-cta::before {
  top: -110px;
  left: -110px;
}
.booking-cta::after {
  right: -110px;
  bottom: -110px;
}
.booking-cta__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.booking-cta__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.booking-cta__title {
  margin: 0 0 1.25rem;
  color: var(--cream);
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.05;
}
.booking-cta__title em {
  display: block;
  color: var(--gold);
  font-style: italic;
}
.booking-cta__text {
  max-width: 58ch;
  margin: 0 auto;
  color: rgba(251, 249, 244, 0.72);
  font-family: var(--body);
  font-size: 0.88rem;
  line-height: 1.8;
}
.booking-cta__offer {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.25rem;
  padding: 1rem 1.4rem;
  background-color: rgba(197, 157, 77, 0.08);
  border: 1px solid rgba(197, 157, 77, 0.35);
  text-align: left;
}
.booking-cta__offer-number {
  color: var(--gold);
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
}
.booking-cta__offer-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.booking-cta__offer-content strong {
  color: var(--cream);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.booking-cta__offer-content span {
  color: rgba(251, 249, 244, 0.6);
  font-family: var(--body);
  font-size: 0.7rem;
}
.booking-cta__action {
  margin-top: 2rem;
}
.booking-cta .btn-book {
  min-width: 170px;
}
.booking-cta__note {
  display: block;
  margin-top: 1rem;
  color: rgba(251, 249, 244, 0.45);
  font-family: var(--body);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}
@media (max-width: 991.98px) {
  .booking-cta {
    padding: 6rem 0;
  }
  .booking-cta__title {
    font-size: 3.4rem;
  }
}
@media (max-width: 767.98px) {
  .booking-cta {
    padding: 5rem 0;
  }
  .booking-cta__title {
    font-size: 2.8rem;
  }
  .booking-cta__text {
    font-size: 0.82rem;
  }
  .booking-cta__offer {
    margin-top: 2rem;
  }
}
@media (max-width: 575.98px) {
  .booking-cta {
    padding: 4.5rem 0;
  }
  .booking-cta__title {
    font-size: 2.35rem;
  }
  .booking-cta__offer {
    gap: 0.8rem;
    padding: 0.85rem 1rem;
  }
  .booking-cta__offer-number {
    font-size: 2.4rem;
  }
  .booking-cta__offer-content strong {
    font-size: 0.65rem;
  }
  .booking-cta__offer-content span {
    font-size: 0.62rem;
  }
  .booking-cta__note {
    font-size: 0.62rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .booking-cta *,
  .booking-cta::before,
  .booking-cta::after {
    animation: none !important;
    transition: none !important;
  }
}

/* FOOTER */
.footer {
  position: relative;
  padding: 5rem 0 0;
  background-color: var(--ink);
  color: var(--cream);
  border-top: 1px solid rgba(197, 157, 77, 0.25);
}
.footer-brand {
  max-width: 360px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
  text-decoration: none;
}
.footer-logo img {
  display: block;
  width: auto;
  height: 55px;
  max-width: 180px;
  object-fit: contain;
}
.footer-description {
  max-width: 38ch;
  margin: 0 0 1.75rem;
  color: rgba(251, 249, 244, 0.72);
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
}
.footer-title {
  margin: 0 0 1.5rem;
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.2;
}
.footer-title::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin-top: 0.7rem;
  background-color: var(--gold);
}
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  position: relative;
  display: inline-block;
  color: rgba(251, 249, 244, 0.68);
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 400;
  text-decoration: none;
  transition:
    color 250ms var(--animation-ease),
    transform 250ms var(--animation-ease);
}
.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer-contact i {
  width: 18px;
  margin-top: 0.2rem;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.footer-contact a {
  color: rgba(251, 249, 244, 0.72);
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.7;
  text-decoration: none;
  transition: color 250ms var(--animation-ease);
}
.footer-contact a:hover {
  color: var(--gold);
}
.footer-map {
  position: relative;
  width: 100%;
  height: 175px;
  overflow: hidden;
  border: 1px solid rgba(222, 212, 192, 0.18);
  border-radius: 4px;
  background-color: var(--ink-soft);
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) sepia(8%);
  opacity: 0.9;
}
.footer-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  color: var(--gold);
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    color 250ms var(--animation-ease),
    gap 250ms var(--animation-ease);
}
.footer-directions i {
  font-size: 0.7rem;
  transition: transform 250ms var(--animation-ease);
}
.footer-directions:hover {
  color: var(--cream);
  gap: 0.7rem;
}
.footer-directions:hover i {
  transform: translateX(3px);
}
.footer .btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(222, 212, 192, 0.15);
}
.footer-copyright {
  color: rgba(251, 249, 244, 0.45);
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 300;
}
.footer-designer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(251, 249, 244, 0.45);
  font-family: var(--body);
  font-size: 0.7rem;
}
.footer-designer a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.designer-logo {
  display: block;
  width: auto;
  height: 25px;
  max-width: 100px;
  object-fit: contain;
  opacity: 0.65;
  transition: opacity 250ms var(--animation-ease);
}
.footer-designer a:hover .designer-logo {
  opacity: 1;
}
@media (max-width: 991.98px) {
  .footer {
    padding-top: 4rem;
  }
  .footer-brand {
    max-width: 420px;
  }
  .footer-map {
    height: 200px;
  }
  .footer-bottom {
    margin-top: 3rem;
  }
}
@media (max-width: 767.98px) {
  .footer {
    padding-top: 3.5rem;
  }
  .footer-brand {
    max-width: none;
  }
  .footer-logo {
    margin-bottom: 1.25rem;
  }
  .footer-logo img {
    height: 48px;
    max-width: 160px;
  }
  .footer-description {
    max-width: 45ch;
    font-size: 0.8rem;
    line-height: 1.75;
  }
  .footer-title {
    margin-bottom: 1.25rem;
    font-size: 1.35rem;
  }
  .footer-map {
    height: 220px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .footer {
    padding-top: 3rem;
  }
  .footer-logo img {
    height: 44px;
    max-width: 145px;
  }
  .footer-description {
    font-size: 0.75rem;
  }
  .footer-contact {
    gap: 0.85rem;
  }
  .footer-contact a {
    font-size: 0.75rem;
  }
  .footer-map {
    height: 200px;
  }
  .footer-bottom {
    padding: 1.25rem 0;
  }
  .footer-copyright,
  .footer-designer {
    font-size: 0.65rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer *,
  .footer a {
    transition: none !important;
  }
}

/* PAGE HERO */
.page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
}
.page-hero__background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: url("image/about-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(16, 29, 28, 0.78) 0%,
            rgba(16, 29, 28, 0.55) 45%,
            rgba(16, 29, 28, 0.25) 100%
        );
}
.page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    z-index: -1;
    background: linear-gradient(
        to top,
        rgba(10, 22, 21, 0.65),
        transparent
    );
    pointer-events: none;
}
.page-hero__content {
    position: relative;
    max-width: 760px;
    padding: 80px 0;
}
.page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    color: #d5b978;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.page-hero__eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background: #d5b978;
}
.page-hero__title {
    margin: 0;
    font-family: inherit;
    color: (var(--cream));
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1.5px;
}
.page-hero__title em {
    color: #d5b978;
    font-weight: 400;
}
.page-hero__text {
    max-width: 600px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.8;
}
.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.65);
}
.page-hero__breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.page-hero__breadcrumb a:hover {
    color: #d5b978;
}
.page-hero__breadcrumb span:nth-child(2) {
    color: #d5b978;
}
.page-hero__scroll {
    position: absolute;
    right: 40px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: rotate(90deg);
    transform-origin: right center;
}
.page-hero__scroll-line {
    display: block;
    width: 55px;
    height: 1px;
    background: #d5b978;
}
.page-hero--about .page-hero__background {
    background-image: url("image/about-bg.jpg");
}
.page-hero--rooms .page-hero__background {
    background-image: url("image/rooms-bg.jpg");
}
.page-hero--gallery .page-hero__background {
    background-image: url("image/gallery-bg.jpg");
}
.page-hero--restaurant .page-hero__background {
    background-image: url("image/restaurant-bg.jpg");
}
.page-hero--contact .page-hero__background {
    background-image: url("image/contact-bg.png");
}
@media (max-width: 991px) {
    .page-hero {
        min-height: 470px;
    }
    .page-hero__content {
        padding: 70px 0;
    }
    .page-hero__scroll {
        display: none;
    }
}
@media (max-width: 767px) {
    .page-hero {
        min-height: 430px;
    }
    .page-hero__background {
        background-position: center;
    }
    .page-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(16, 29, 28, 0.78),
                rgba(16, 29, 28, 0.48)
            );
    }
    .page-hero__content {
        padding: 60px 20px;
    }
    .page-hero__eyebrow {
        margin-bottom: 18px;
        font-size: 10px;
        letter-spacing: 2.5px;
    }
    .page-hero__title {
        font-size: clamp(42px, 12vw, 58px);
        letter-spacing: -1px;
    }
    .page-hero__text {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.7;
    }
    .page-hero__breadcrumb {
        margin-top: 24px;
        font-size: 12px;
    }
}

/* GALLERY */
.gallery-section {
    background: #f8f6f1;
}
.gallery-section .section-eyebrow {
    display: block;
    margin-bottom: 12px;
}
.gallery-section .section-title {
    margin-bottom: 18px;
}
.gallery-section .section-intro {
    max-width: 650px;
}
.gallery-card {
    position: relative;
    overflow: hidden;
    background: #ddd;
    aspect-ratio: 4 / 3;
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.gallery-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 30, 28, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}
.gallery-card__icon {
    width: 55px;
    height: 55px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: scale(0.7);
    transition: all 0.4s ease;
}
.gallery-card:hover img {
    transform: scale(1.08);
}
.gallery-card:hover .gallery-card__overlay {
    opacity: 1;
}
.gallery-card:hover .gallery-card__icon {
    transform: scale(1);
}
@media (max-width: 991.98px) {
    .gallery-card {
        aspect-ratio: 4 / 3;
    }
}
@media (max-width: 575.98px) {
    .gallery-section .row {
        --bs-gutter-y: 1rem;
    }
    .gallery-card {
        aspect-ratio: 4 / 3;
    }
}

/* ROOMS PAGE */
.rooms-section {
    position: relative;
    padding: 130px 0 100px;
    background: var(--color-light, #f7f5f0);
    overflow: hidden;
}
.rooms-section::before {
    content: "ROOMS";
    position: absolute;
    top: 120px;
    right: -55px;
    color: rgba(30, 31, 27, .025);
    font-family: var(--font-heading, "Cormorant Garamond", serif);
    font-size: 180px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.05em;
    pointer-events: none;
}
.rooms-section__header {
    max-width: 760px;
    margin: 0 auto 100px;
    text-align: center;
}
.rooms-section__header .section-eyebrow {
    display: inline-block;
}
.rooms-section__header .section-intro {
    max-width: 620px;
    margin: 24px auto 0;
}
.room-row {
    position: relative;
    margin-bottom: 150px;
    align-items: center;
}
.room-row:last-child {
    margin-bottom: 0;
}
.room-row > [class*="col-"] {
    position: relative;
}
.room-row--reverse {
    flex-direction: row-reverse;
}
.room-gallery {
    position: relative;
    padding-right: 42px;
}
.room-row--reverse .room-gallery {
    padding-right: 0;
    padding-left: 42px;
}
.room-gallery::before {
    content: "";
    position: absolute;
    top: 32px;
    right: 0;
    bottom: -32px;
    left: 32px;
    border: 1px solid rgba(183, 155, 103, .38);
    z-index: 0;
    pointer-events: none;
}
.room-row--reverse .room-gallery::before {
    right: 32px;
    left: 0;
}
.room-carousel {
    position: relative;
    z-index: 2;
}
.room-gallery__item {
    position: relative;
    height: 590px;
    overflow: hidden;
    background: #dedbd3;
}
.room-gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(15, 17, 14, .20),
            transparent 35%
        );
    pointer-events: none;
}
.room-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 1.2s cubic-bezier(.2, .65, .3, 1);
}
.room-carousel .owl-item.active .room-gallery__item img {
    transform: scale(1);
}
.room-carousel .owl-item.active:hover .room-gallery__item img {
    transform: scale(1.035);
}
.room-gallery__counter {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 11px;
    letter-spacing: .16em;
}
.room-gallery__counter-line {
    width: 45px;
    height: 1px;
    background: rgba(255, 255, 255, .65);
}
.room-gallery__navigation {
    position: absolute;
    right: 65px;
    bottom: 25px;
    z-index: 5;
    display: flex;
    gap: 8px;
}
.room-row--reverse .room-gallery__navigation {
    right: 23px;
}
.room-gallery__navigation button {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(20, 22, 19, .45);
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}
.room-gallery__navigation button:hover {
    background: var(--color-accent, #b79b67);
    border-color: var(--color-accent, #b79b67);
    color: #fff;
    transform: translateY(-2px);
}
.room-gallery__navigation button i {
    font-size: 12px;
}
.room-carousel .owl-dots {
    display: none;
}
.room-carousel .owl-nav {
    display: none;
}
.room-info {
    position: relative;
    padding: 20px 25px 20px 60px;
}
.room-row--reverse .room-info {
    padding-left: 25px;
    padding-right: 60px;
}
.room-info__number {
    display: block;
    margin-bottom: 9px;
    color: var(--color-accent, #b79b67);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
}
.room-info__category {
    display: block;
    margin-bottom: 18px;
    color: #99958c;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.room-info__title {
    max-width: 500px;
    margin: 0;
    color: var(--color-dark, #20211d);
    font-family: var(--font-heading, "Cormorant Garamond", serif);
    font-size: clamp(40px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -.025em;
}
.room-info__title em {
    display: block;
    color: var(--color-accent, #b79b67);
    font-weight: 400;
}
.room-info__line {
    width: 58px;
    height: 1px;
    margin: 27px 0;
    background: var(--color-accent, #b79b67);
}
.room-info__description {
    max-width: 490px;
    margin: 0 0 32px;
    color: #68675f;
    font-size: 15px;
    line-height: 1.9;
}
.room-info__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 25px;
    margin-bottom: 28px;
}
.room-detail {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}
.room-detail > i {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(183, 155, 103, .32);
    color: var(--color-accent, #b79b67);
    font-size: 12px;
}
.room-detail span {
    display: flex;
    flex-direction: column;
    color: #77756d;
    font-size: 11px;
    line-height: 1.5;
}
.room-detail strong {
    margin-bottom: 2px;
    color: var(--color-dark, #20211d);
    font-size: 11px;
    font-weight: 600;
}
.room-info__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 23px;
    margin-bottom: 32px;
    border-top: 1px solid rgba(32, 33, 29, .10);
}
.room-info__amenities span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    color: #77756d;
    font-size: 10px;
    letter-spacing: .04em;
}
.room-info__amenities i {
    color: var(--color-accent, #b79b67);
}
.room-info__actions {
    display: flex;
    align-items: center;
}
.room-info__actions .btn-book {
    min-width: 190px;
}
/* ROOMS CTA */
.rooms-cta {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-dark, #191a16);
    color: #fff;
}
.rooms-cta__background {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(20, 22, 18, .72),
            rgba(20, 22, 18, .82)
        ),
        url("../image/rooms-cta.jpg") center / cover no-repeat;
    transform: scale(1.02);
}
.rooms-cta__content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: auto;
    padding: 90px 0;
}
.rooms-cta .section-eyebrow {
    color: rgba(255, 255, 255, .65);
}
.rooms-cta .section-title {
    color: #fff;
    margin-top: 15px;
}
.rooms-cta .section-title em {
    color: var(--color-accent, #b79b67);
}
.rooms-cta__text {
    max-width: 560px;
    margin: 25px auto 35px;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.9;
}
@media (max-width: 1199.98px) {
    .room-gallery__item {
        height: 520px;
    }
    .room-info {
        padding-left: 35px;
    }
    .room-row--reverse .room-info {
        padding-right: 35px;
    }
    .room-info__title {
        font-size: 48px;
    }
    .room-row {
        margin-bottom: 120px;
    }
}
@media (max-width: 991.98px) {
    .rooms-section {
        padding: 100px 0 70px;
    }
    .rooms-section__header {
        margin-bottom: 70px;
    }
    .room-row,
    .room-row--reverse {
        display: flex;
        flex-direction: column;
        margin-bottom: 100px;
    }
    .room-row > .col-lg-7,
    .room-row > .col-lg-5 {
        width: 100%;
    }
    .room-gallery,
    .room-row--reverse .room-gallery {
        width: 100%;
        padding: 0;
        margin-bottom: 55px;
    }
    .room-gallery::before,
    .room-row--reverse .room-gallery::before {
        top: 25px;
        right: 0;
        bottom: -25px;
        left: 25px;
    }
    .room-row--reverse .room-gallery::before {
        right: 25px;
        left: 0;
    }
    .room-gallery__item {
        height: min(65vw, 560px);
    }
    .room-gallery__navigation,
    .room-row--reverse .room-gallery__navigation {
        right: 25px;
    }
    .room-info,
    .room-row--reverse .room-info {
        padding: 0;
    }
    .room-info__title {
        max-width: 700px;
        font-size: clamp(42px, 7vw, 58px);
    }
    .room-info__description {
        max-width: 700px;
    }
    .room-info__details {
        max-width: 650px;
    }
    .rooms-section::before {
        font-size: 130px;
    }
}
@media (max-width: 767.98px) {
    .rooms-section {
        padding: 80px 0 50px;
    }
    .rooms-section__header {
        margin-bottom: 60px;
    }
    .room-row {
        margin-bottom: 85px;
    }
    .room-gallery {
        margin-bottom: 45px;
    }
    .room-gallery__item {
        height: 105vw;
        min-height: 380px;
        max-height: 500px;
    }
    .room-gallery::before,
    .room-row--reverse .room-gallery::before {
        top: 18px;
        bottom: -18px;
        left: 18px;
        right: 0;
    }
    .room-row--reverse .room-gallery::before {
        right: 18px;
        left: 0;
    }
    .room-gallery__counter {
        left: 18px;
        bottom: 18px;
    }
    .room-gallery__navigation,
    .room-row--reverse .room-gallery__navigation {
        right: 18px;
        bottom: 15px;
    }
    .room-gallery__navigation button {
        width: 42px;
        height: 42px;
    }
    .room-info__title {
        font-size: 43px;
    }
    .room-info__description {
        font-size: 14px;
    }
    .room-info__details {
        gap: 18px 15px;
    }
    .room-info__amenities {
        gap: 4px;
    }
    .room-info__amenities span {
        padding: 6px 7px;
        font-size: 9px;
    }
    .rooms-cta {
        min-height: 430px;
    }
    .rooms-cta__content {
        padding: 70px 0;
    }
    .rooms-section::before {
        display: none;
    }
}
@media (max-width: 575.98px) {
    .rooms-section {
        padding: 70px 0 35px;
    }
    .rooms-section__header {
        margin-bottom: 50px;
    }
    .room-row {
        margin-bottom: 75px;
    }
    .room-gallery__item {
        min-height: 350px;
    }
    .room-info__number {
        font-size: 9px;
    }
    .room-info__category {
        font-size: 9px;
    }
    .room-info__title {
        font-size: 39px;
    }
    .room-info__line {
        margin: 22px 0;
    }
    .room-info__details {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .room-info__amenities {
        margin-bottom: 25px;
    }
    .room-info__actions .btn-book {
        width: 100%;
    }
    .rooms-cta__text {
        font-size: 14px;
    }
}
.room-gallery__navigation button:focus-visible{
    outline: 2px solid var(--color-accent, #b79b67);
    outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
    .room-gallery__item img,
    .room-gallery__navigation button {
        transition: none;
        transform: none;
    }
}

/* RESTAURANT INTRODUCTION */
.restaurant-intro-section {
    --restaurant-dark: #1d2926;
    --restaurant-text: #59615d;
    --restaurant-muted: #8a918d;
    --restaurant-gold: #b18a55;
    --restaurant-gold-light: #d2b27d;
    --restaurant-bg: #f8f6f1;
    --restaurant-border: rgba(29, 41, 38, 0.12);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: var(--restaurant-bg);
}
.restaurant-intro__visual {
    position: relative;
    padding-right: 25px;
    padding-bottom: 25px;
}
.restaurant-intro__image-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #e8e3da;
}
.restaurant-intro__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.restaurant-intro__visual:hover .restaurant-intro__image {
    transform: scale(1.035);
}
.restaurant-intro__frame {
    position: absolute;
    z-index: 1;
    top: 25px;
    right: 0;
    width: calc(100% - 25px);
    height: calc(100% - 25px);
    border: 1px solid rgba(177, 138, 85, 0.5);
    pointer-events: none;
}
.restaurant-intro__badge {
    position: absolute;
    z-index: 4;
    left: -20px;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 205px;
    padding: 18px 22px;
    color: #fff;
    background: var(--restaurant-dark);
    box-shadow: 0 15px 35px rgba(29, 41, 38, 0.16);
}
.restaurant-intro__badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(210, 178, 125, 0.5);
    color: var(--restaurant-gold-light);
    font-size: 15px;
}
.restaurant-intro__badge strong {
    display: block;
    margin-bottom: 3px;
    color: #fff;
    font-family: var(--font-heading, "Cormorant Garamond", Georgia, serif);
    font-size: 20px;
    font-weight: 500;
}
.restaurant-intro__badge small {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.restaurant-intro__content {
    padding-left: 30px;
}
.restaurant-intro__content .section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--restaurant-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}
.restaurant-intro__content .section-title {
    margin: 0;
    color: var(--restaurant-dark);
    font-family: var(--font-heading, "Cormorant Garamond", Georgia, serif);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.025em;
}
.restaurant-intro__content .section-title em {
    display: block;
    color: var(--restaurant-gold);
    font-weight: 400;
}
.restaurant-intro__line {
    position: relative;
    width: 70px;
    height: 1px;
    margin: 28px 0 25px;
    background: var(--restaurant-gold);
}
.restaurant-intro__line::after {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--restaurant-gold);
}
.restaurant-intro__lead {
    max-width: 580px;
    margin: 0 0 17px;
    color: var(--restaurant-dark);
    font-family: var(--font-heading, "Cormorant Garamond", Georgia, serif);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.45;
}
.restaurant-intro__text {
    max-width: 590px;
    margin: 0 0 15px;
    color: var(--restaurant-text);
    font-size: 14px;
    line-height: 1.9;
}
.restaurant-intro__highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 32px;
    border-top: 1px solid var(--restaurant-border);
    border-bottom: 1px solid var(--restaurant-border);
}
.restaurant-intro__highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 90px;
    padding: 15px 12px 15px 0;
}
.restaurant-intro__highlight + .restaurant-intro__highlight {
    padding-left: 15px;
    border-left: 1px solid var(--restaurant-border);
}
.restaurant-intro__highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    color: var(--restaurant-gold);
    font-size: 13px;
}
.restaurant-intro__highlight strong {
    display: block;
    margin-bottom: 4px;
    color: var(--restaurant-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.restaurant-intro__highlight span {
    display: block;
    color: var(--restaurant-muted);
    font-size: 10px;
    line-height: 1.5;
}
@media (max-width: 991.98px) {
    .restaurant-intro-section {
        padding: 90px 0;
    }
    .restaurant-intro__visual {
        padding-right: 20px;
        padding-bottom: 20px;
    }
    .restaurant-intro__image-wrapper {
        height: 520px;
    }
    .restaurant-intro__frame {
        top: 20px;
        width: calc(100% - 20px);
        height: calc(100% - 20px);
    }
    .restaurant-intro__content {
        padding-left: 0;
    }
    .restaurant-intro__highlights {
        margin-top: 28px;
    }
}
@media (max-width: 767.98px) {
    .restaurant-intro-section {
        padding: 70px 0;
    }
    .restaurant-intro__visual {
        padding-right: 0;
        padding-bottom: 0;
    }
    .restaurant-intro__image-wrapper {
        height: 420px;
    }
    .restaurant-intro__frame {
        display: none;
    }
    .restaurant-intro__badge {
        left: 15px;
        bottom: 15px;
    }
    .restaurant-intro__content {
        padding-top: 15px;
    }
    .restaurant-intro__content .section-title {
        font-size: 43px;
    }
    .restaurant-intro__lead {
        font-size: 20px;
    }
    .restaurant-intro__text {
        font-size: 13px;
        line-height: 1.8;
    }
    .restaurant-intro__highlights {
        grid-template-columns: 1fr;
    }
    .restaurant-intro__highlight {
        min-height: 65px;
        padding: 12px 0;
    }
    .restaurant-intro__highlight + .restaurant-intro__highlight {
        padding-left: 0;
        border-top: 1px solid var(--restaurant-border);
        border-left: 0;
    }
}
@media (max-width: 575.98px) {
    .restaurant-intro__image-wrapper {
        height: 350px;
    }
    .restaurant-intro__badge {
        min-width: auto;
        padding: 14px 17px;
    }
    .restaurant-intro__badge-icon {
        width: 36px;
        height: 36px;
    }
    .restaurant-intro__badge strong {
        font-size: 17px;
    }
    .restaurant-intro__content .section-title {
        font-size: 38px;
    }
}

/* CUISINE SECTION */
.cuisine-section {
    position: relative;
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}
.cuisine-section .section-intro {
    max-width: 650px;
}
.cuisine-card {
    height: 100%;
    background: #fff;
    transition: transform .5s ease;
}
.cuisine-card:hover {
    transform: translateY(-8px);
}
.cuisine-card__image {
    position: relative;
    height: 390px;
    overflow: hidden;
    background: #eee;
}
.cuisine-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform 1s cubic-bezier(.2, .7, .2, 1),
        filter .5s ease;
}
.cuisine-card:hover .cuisine-card__image img {
    transform: scale(1.06);
}
.cuisine-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 18px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 55%,
        rgba(0, 0, 0, .45) 100%
    );
    pointer-events: none;
}
.cuisine-card__number {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .7);
    color: #fff;
    font-family: var(--font-serif, Georgia, serif);
    font-size: 13px;
}
.cuisine-card__content {
    padding: 28px 10px 5px;
}
.cuisine-card__category {
    display: block;
    margin-bottom: 9px;
    color: var(--color-gold, #b69b62);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
}
.cuisine-card__content h3 {
    margin: 0 0 12px;
    color: var(--color-dark, #1d2925);
    font-family: var(--font-serif, Georgia, serif);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.25;
}
.cuisine-card__content p {
    margin: 0;
    color: var(--color-text-muted, #777);
    font-size: 13px;
    line-height: 1.8;
}
.cuisine-section__bottom {
    margin-top: 65px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}
.cuisine-section__bottom p {
    margin: 0;
    color: var(--color-text-muted, #777);
    font-family: var(--font-serif, Georgia, serif);
    font-size: 17px;
    font-style: italic;
}
@media (max-width: 991.98px) {
    .cuisine-section {
        padding: 90px 0;
    }
    .cuisine-card__image {
        height: 360px;
    }
}
@media (max-width: 575.98px) {
    .cuisine-section {
        padding: 70px 0;
    }
    .cuisine-card__image {
        height: 400px;
    }
    .cuisine-card__content {
        padding: 22px 5px 5px;
    }
    .cuisine-card__content h3 {
        font-size: 23px;
    }
    .cuisine-section__bottom {
        margin-top: 45px;
    }
}

/* MENU SECTION */
.menu-section {
  position: relative;
  padding: 7rem 0;
  background-color: var(--cream);
  overflow: hidden;
}
.menu-section .section-eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--gold-dark);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.menu-section .section-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.08;
}
.menu-section .section-title em {
  color: var(--gold-dark);
  font-style: italic;
}
.menu-section .section-intro {
  max-width: 44ch;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 0.9rem;
  line-height: 1.8;
}
.menu-tabs {
  border-bottom: 1px solid var(--line);
  gap: 1.5rem;
  padding-bottom: 0.5rem;
}
.menu-tabs .nav-link {
  padding: 0.5rem 0.25rem;
  color: var(--ink-soft);
  background: transparent !important;
  border: none;
  border-radius: 0;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 250ms var(--animation-ease);
  position: relative;
}
.menu-tabs .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
  transform: scaleX(0);
  transition: transform 300ms var(--animation-ease);
}
.menu-tabs .nav-link:hover,
.menu-tabs .nav-link.active {
  color: var(--ink);
}
.menu-tabs .nav-link.active::after,
.menu-tabs .nav-link:hover::after {
  transform: scaleX(1);
}
.menu-item {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
}
.menu-item__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}
.menu-item__title {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
  white-space: nowrap;
}
.menu-item__title .badge-tag {
  font-family: var(--body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  color: var(--gold-dark);
  background-color: rgba(197, 157, 77, 0.12);
  border: 1px solid rgba(197, 157, 77, 0.3);
  border-radius: 3px;
}
.menu-item__dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  margin-bottom: 0.35rem;
  min-width: 20px;
}
.menu-item__price {
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
}
.menu-item__desc {
  margin: 0;
  max-width: 90%;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
}
@media (max-width: 991.98px) {
  .menu-section {
    padding: 5.5rem 0;
  }
  .menu-section .section-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 767.98px) {
  .menu-section {
    padding: 4.5rem 0;
  }
  .menu-section .section-title {
    font-size: 2.4rem;
  }
  .menu-tabs {
    gap: 1rem;
    justify-content: flex-start !important;
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
  .menu-item__title {
    font-size: 1.3rem;
    white-space: normal;
  }
}
@media (max-width: 575.98px) {
  .menu-section {
    padding: 4rem 0;
  }
  .menu-section .section-title {
    font-size: 2.15rem;
  }
  .menu-item__desc {
    max-width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .menu-tabs .nav-link::after,
  .menu-tabs .nav-link {
    transition: none !important;
  }
}

/* RESTAURANT HIGHLIGHTS */
.restaurant-highlights-section {
    position: relative;
    padding: 110px 0;
    background: var(--color-light, #f7f5f0);
    overflow: hidden;
}
.restaurant-highlights-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: rgba(165, 126, 70, 0.06);
    pointer-events: none;
}
.restaurant-highlights-section .container {
    position: relative;
    z-index: 2;
}
.restaurant-highlights-section .section-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
}
.restaurant-highlights-section .section-title {
    margin-bottom: 20px;
}
.restaurant-highlights-section .section-intro {
    max-width: 680px;
    margin-bottom: 0;
}
.restaurant-highlight-card {
    position: relative;
    height: 100%;
    min-height: 330px;
    padding: 42px 36px 38px;
    background: #ffffff;
    border: 1px solid rgba(33, 33, 33, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}
.restaurant-highlight-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-gold, #b08a57);
    transition: width 0.45s ease;
}
.restaurant-highlight-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(176, 138, 87, 0.10);
    border-radius: 50%;
    transition:
        transform 0.5s ease,
        border-color 0.5s ease;
}
.restaurant-highlight-card:hover {
    transform: translateY(-8px);
    border-color: rgba(176, 138, 87, 0.25);
    box-shadow:
        0 22px 50px rgba(30, 30, 30, 0.09);
}
.restaurant-highlight-card:hover::before {
    width: 100%;
}
.restaurant-highlight-card:hover::after {
    transform: scale(1.25);
    border-color: rgba(176, 138, 87, 0.18);
}
.restaurant-highlight-card__number {
    position: absolute;
    top: 25px;
    right: 28px;
    font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
    font-size: 42px;
    line-height: 1;
    font-weight: 400;
    color: rgba(176, 138, 87, 0.14);
    transition:
        color 0.4s ease,
        transform 0.4s ease;
}
.restaurant-highlight-card:hover .restaurant-highlight-card__number {
    color: rgba(176, 138, 87, 0.25);
    transform: translateY(-3px);
}
.restaurant-highlight-card__icon {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--color-gold, #b08a57);
    background: rgba(176, 138, 87, 0.08);
    border: 1px solid rgba(176, 138, 87, 0.18);
    font-size: 20px;
    transition:
        color 0.4s ease,
        background 0.4s ease,
        transform 0.4s ease;
}
.restaurant-highlight-card:hover .restaurant-highlight-card__icon {
    color: #ffffff;
    background: var(--color-gold, #b08a57);
    transform: translateY(-4px);
}
.restaurant-highlight-card__title {
    position: relative;
    z-index: 2;
    margin: 0 0 15px;
    font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--color-dark, #252525);
    transition: color 0.3s ease;
}
.restaurant-highlight-card:hover .restaurant-highlight-card__title {
    color: var(--color-gold, #b08a57);
}
.restaurant-highlight-card__text {
    position: relative;
    z-index: 2;
    max-width: 320px;
    margin: 0;
    font-family: var(--font-sans, "Montserrat", sans-serif);
    font-size: 14px;
    line-height: 1.9;
    font-weight: 400;
    color: var(--color-text-muted, #777);
}
@media (max-width: 991.98px) {
    .restaurant-highlights-section {
        padding: 90px 0;
    }
    .restaurant-highlight-card {
        min-height: 300px;
        padding: 38px 30px;
    }
    .restaurant-highlight-card__title {
        font-size: 26px;
    }
}
@media (max-width: 767.98px) {
    .restaurant-highlights-section {
        padding: 75px 0;
    }
    .restaurant-highlights-section::before {
        display: none;
    }
    .restaurant-highlight-card {
        min-height: auto;
        padding: 35px 28px;
    }
    .restaurant-highlight-card__number {
        top: 22px;
        right: 22px;
        font-size: 36px;
    }
    .restaurant-highlight-card__icon {
        width: 56px;
        height: 56px;
        margin-bottom: 25px;
    }
    .restaurant-highlight-card__title {
        font-size: 25px;
    }
    .restaurant-highlight-card__text {
        font-size: 13px;
        line-height: 1.8;
    }
}
@media (max-width: 575.98px) {
    .restaurant-highlights-section {
        padding: 65px 0;
    }
    .restaurant-highlight-card {
        padding: 32px 24px;
    }
    .restaurant-highlight-card__number {
        font-size: 32px;
    }
}

/* RESTAURANT CTA */
.restaurant-cta {
    position: relative;
    min-height: 540px;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
}
.restaurant-cta__background {
    position: absolute;
    inset: 0;
    background-image: url("image/restaurant-cta.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
}
.restaurant-cta__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(18, 18, 16, 0.82) 0%,
            rgba(18, 18, 16, 0.62) 50%,
            rgba(18, 18, 16, 0.78) 100%
        );
}
.restaurant-cta::before {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    pointer-events: none;
    z-index: 2;
}
.restaurant-cta .container {
    position: relative;
    z-index: 3;
}
.restaurant-cta__content {
    max-width: 780px;
    margin: 0 auto;
}
.restaurant-cta__eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-family: var(
        --font-sans,
        "Montserrat",
        sans-serif
    );
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(
        --color-gold,
        #b08a57
    );
}
.restaurant-cta__title {
    margin: 0 auto 24px;
    max-width: 760px;
    font-family: var(
        --font-serif,
        "Cormorant Garamond",
        Georgia,
        serif
    );
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 400;
    color: #ffffff;
}
.restaurant-cta__title em {
    display: block;
    color: var(
        --color-gold,
        #c09a68
    );
    font-style: italic;
    font-weight: 400;
}
.restaurant-cta__text {
    max-width: 620px;
    margin: 0 auto 38px;
    font-family: var(
        --font-sans,
        "Montserrat",
        sans-serif
    );
    font-size: 14px;
    line-height: 1.9;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
}
.restaurant-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.restaurant-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    min-height: 54px;
    padding: 0 25px 0 28px;
    background: var(
        --color-gold,
        #b08a57
    );
    border: 1px solid var(
        --color-gold,
        #b08a57
    );
    color: #ffffff;
    font-family: var(
        --font-sans,
        "Montserrat",
        sans-serif
    );
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.restaurant-cta__button i {
    font-size: 12px;
    transition:
        transform 0.35s ease;
}
.restaurant-cta__button:hover {
    background: #ffffff;
    color: #252525;
    transform: translateY(-3px);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);
}
.restaurant-cta__button:hover i {
    transform: translateX(5px);
}
.restaurant-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(
        --font-sans,
        "Montserrat",
        sans-serif
    );
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition:
        color 0.3s ease;
}
.restaurant-cta__phone i {
    color: var(
        --color-gold,
        #b08a57
    );
    font-size: 13px;
}
.restaurant-cta__phone:hover {
    color: var(
        --color-gold,
        #b08a57
    );
}
@media (max-width: 991.98px) {
    .restaurant-cta {
        min-height: 500px;
        padding: 100px 0;
    }
    .restaurant-cta::before {
        inset: 20px;
    }
}
@media (max-width: 767.98px) {
    .restaurant-cta {
        min-height: 480px;
        padding: 85px 0;
    }
    .restaurant-cta::before {
        inset: 15px;
    }
    .restaurant-cta__title {
        font-size: 44px;
    }
    .restaurant-cta__text {
        font-size: 13px;
        line-height: 1.8;
        padding: 0 15px;
    }
    .restaurant-cta__actions {
        gap: 20px;
        flex-direction: column;
    }
}
@media (max-width: 575.98px) {
    .restaurant-cta {
        padding: 75px 0;
    }
    .restaurant-cta__title {
        font-size: 38px;
    }
    .restaurant-cta__title em {
        margin-top: 5px;
    }
    .restaurant-cta__button {
        width: auto;
    }
}

/* LUXURY CONTACT */
.contact-section {
    position: relative;
    overflow: hidden;
    padding: 140px 0;
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(188, 153, 91, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(188, 153, 91, 0.06),
            transparent 32%
        ),
        #f4efe4;
    color: #29251f;
}
.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.025;
    background-image:
        linear-gradient(
            45deg,
            #7d6848 1px,
            transparent 1px
        );
    background-size: 8px 8px;
}
.contact-section .container {
    position: relative;
    z-index: 2;
}
.contact-header {
    max-width: 760px;
    margin: 0 auto 80px;
}
.contact-header .section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #a6854d;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}
.contact-header .section-title {
    margin: 0 0 22px;
    color: #29251f;
}
.contact-header .section-title em {
    color: #a6854d;
    font-weight: 400;
}
.contact-header .section-intro {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(41, 37, 31, 0.62);
    line-height: 1.9;
}
.contact-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);
    gap: 70px;
    align-items: stretch;
}
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 20px 20px 0;
}
.contact-label {
    display: inline-block;
    margin-bottom: 20px;
    color: #a6854d;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}
.contact-heading {
    max-width: 500px;
    margin: 0 0 22px;
    color: #29251f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.025em;
}
.contact-heading em {
    color: #a6854d;
    font-weight: 400;
}
.contact-description {
    max-width: 520px;
    margin: 0 0 42px;
    color: rgba(41, 37, 31, 0.62);
    font-size: 15px;
    line-height: 1.9;
}
.contact-details {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(166, 133, 77, 0.28);
}
.contact-detail {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 92px;
    padding: 18px 8px;
    border-bottom: 1px solid rgba(166, 133, 77, 0.28);
    text-decoration: none;
    transition:
        background-color 0.4s ease,
        padding-left 0.4s ease,
        border-color 0.4s ease;
}
.contact-detail:hover {
    padding-left: 18px;
    background: rgba(166, 133, 77, 0.07);
    border-color: rgba(166, 133, 77, 0.5);
}
.contact-icon {
    display: flex;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(166, 133, 77, 0.5);
    border-radius: 50%;
    color: #a6854d;
    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}
.contact-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.contact-detail:hover .contact-icon {
    background: #a6854d;
    color: #fffaf0;
    transform: scale(1.06);
}
.contact-detail-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contact-detail-label {
    color: rgba(41, 37, 31, 0.42);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
}
.contact-detail-value {
    color: #29251f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.5;
    transition: color 0.3s ease;
}
.contact-link:hover .contact-detail-value {
    color: #a6854d;
}
.contact-actions {
    margin-top: 38px;
}
.luxury-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-height: 54px;
    padding: 0 27px;
    overflow: hidden;
    border: 1px solid #a6854d;
    color: #29251f;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition:
        color 0.4s ease,
        border-color 0.4s ease;
}
.luxury-button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #a6854d;
    transform: translateX(-101%);
    transition:
        transform 0.45s cubic-bezier(
            0.77,
            0,
            0.175,
            1
        );
}
.luxury-button span,
.luxury-button svg {
    position: relative;
    z-index: 1;
}
.luxury-button:hover {
    color: #fffaf0;
}
.luxury-button:hover::before {
    transform: translateX(0);
}
.luxury-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.35s ease;
}
.luxury-button:hover svg {
    transform: translateX(4px);
}
.contact-map {
    min-height: 600px;
}
.map-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    background: #e9e1d1;
    border: 1px solid rgba(166, 133, 77, 0.38);
    box-shadow:
        0 25px 70px rgba(76, 62, 39, 0.12),
        0 0 0 8px rgba(166, 133, 77, 0.035);
}
.map-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 600px;
    border: 0;
    transition:
        filter 0.8s ease,
        transform 0.8s ease;
}
.map-frame:hover iframe {
    transform: scale(1.015);
}
.map-overlay {
    position: absolute;
    z-index: 5;
    left: 28px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    background: rgba(250, 246, 237, 0.94);
    border: 1px solid rgba(166, 133, 77, 0.35);
    box-shadow:
        0 10px 35px rgba(45, 35, 20, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.map-location-pin {
    position: relative;
    display: flex;
    width: 12px;
    height: 12px;
    align-items: center;
    justify-content: center;
}
.map-location-pin::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid #a6854d;
    border-radius: 50%;
    animation: mapPulse 2s ease-out infinite;
}
.map-location-pin span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #a6854d;
}
.map-location-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.map-location-text strong {
    color: #29251f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
}
.map-location-text span {
    color: rgba(41, 37, 31, 0.5);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
@keyframes mapPulse {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    70% {
        opacity: 0;
        transform: scale(2.5);
    }
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}
.contact-footer {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 75px;
}
.contact-footer-line {
    flex: 1;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(166, 133, 77, 0.35)
        );
}
.contact-footer-line:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(166, 133, 77, 0.35),
            transparent
        );
}
.contact-footer p {
    flex: 0 0 auto;
    margin: 0;
    color: rgba(41, 37, 31, 0.42);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}
@media (max-width: 1000px) {
    .contact-section {
        padding: 110px 0;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }
    .contact-info {
        padding-right: 0;
    }
    .contact-heading,
    .contact-description {
        max-width: 700px;
    }
    .contact-map {
        min-height: 500px;
    }
    .map-frame,
    .map-frame iframe {
        min-height: 500px;
    }
}
@media (max-width: 600px) {
    .contact-section {
        padding: 85px 0;
    }
    .contact-header {
        margin-bottom: 55px;
    }
    .contact-header .section-eyebrow {
        font-size: 9px;
        letter-spacing: 0.22em;
    }
    .contact-header .section-intro {
        font-size: 14px;
        line-height: 1.8;
    }
    .contact-grid {
        gap: 45px;
    }
    .contact-info {
        padding: 0;
    }
    .contact-heading {
        font-size: 38px;
    }
    .contact-description {
        margin-bottom: 30px;
        font-size: 14px;
    }
    .contact-detail {
        min-height: 82px;
        gap: 15px;
        padding: 15px 4px;
    }
    .contact-detail:hover {
        padding-left: 8px;
    }
    .contact-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }
    .contact-detail-value {
        font-size: 14px;
    }
    .contact-detail-label {
        font-size: 8px;
    }
    .contact-actions {
        margin-top: 30px;
    }
    .luxury-button {
        width: 100%;
        justify-content: center;
    }
    .contact-map {
        min-height: 420px;
    }
    .map-frame,
    .map-frame iframe {
        min-height: 420px;
    }
    .map-overlay {
        left: 15px;
        bottom: 15px;
        padding: 11px 14px;
    }
    .contact-footer {
        gap: 12px;
        margin-top: 50px;
    }
    .contact-footer p {
        font-size: 7px;
        letter-spacing: 0.15em;
        text-align: center;
    }
}
.contact-link:focus-visible,
.luxury-button:focus-visible {
    outline: 2px solid #a6854d;
    outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
    .contact-detail,
    .contact-icon,
    .luxury-button,
    .luxury-button::before,
    .luxury-button svg,
    .map-frame iframe {
        transition: none;
    }
    .map-location-pin::before {
        animation: none;
    }
}