@font-face {
  font-family: "Instrument Serif";
  src: url("/assets/fonts/Instrument_Serif/InstrumentSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("/assets/fonts/Instrument_Serif/InstrumentSerif-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/*======================================
=            COLORS
======================================*/
/*======================================
=            TYPOGRAPHY
======================================*/
/*======================================
=            FONT SIZES
======================================*/
/*======================================
=            LETTER SPACING
======================================*/
/*======================================
=            LINE HEIGHT
======================================*/
/*======================================
=            LAYOUT
======================================*/
/*======================================
=            SPACING
======================================*/
/*======================================
=            BORDER RADIUS
======================================*/
/*======================================
=            BORDERS
======================================*/
/*======================================
=            SHADOWS
======================================*/
/*======================================
=            TRANSITIONS
======================================*/
/*======================================
=            Z-INDEX
======================================*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  font-size: var(--p-size);
  color: var(--text-dim);
}

html {
  scrollbar-width: thin;
  scrollbar-color: #1B211D #E8E2D7;
}
html::-webkit-scrollbar {
  width: 8px;
}
html::-webkit-scrollbar-track {
  background: #E8E2D7;
}
html::-webkit-scrollbar-thumb {
  background-color: #1B211D;
  border-radius: 999px;
  border: 2px solid #E8E2D7;
}
html::-webkit-scrollbar-thumb:hover {
  background-color: black;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1B211D;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader .preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  transition: transform 0.5s ease;
}
.preloader .preloader-logo {
  font-family: "Instrument Serif", serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #E8E2D7;
  opacity: 0;
  transform: translateY(20px);
  animation: preloader-logo-reveal 1s ease forwards;
}
.preloader .preloader-line {
  position: relative;
  width: clamp(7.5rem, 15vw, 11rem);
  height: 1px;
  overflow: hidden;
  background: rgba(232, 226, 215, 0.25);
}
.preloader .preloader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: #E8E2D7;
  transform: translateX(-100%);
  animation: preloader-line-loading 1.4s ease infinite;
}
.preloader .preloader-text {
  font-family: "Manrope", sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 226, 215, 0.65);
  opacity: 0;
  animation: preloader-text-reveal 1s ease 0.3s forwards;
}

body.loaded .preloader {
  opacity: 0;
  visibility: hidden;
}
body.loaded .preloader .preloader-content {
  transform: translateY(-20px);
}

@keyframes preloader-logo-reveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes preloader-text-reveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes preloader-line-loading {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(300%);
  }
}
@media (max-width: 768px) {
  .preloader .preloader-content {
    gap: 1.5rem;
  }
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 3rem;
  padding-inline: clamp(30px, 4vw, 48px);
  z-index: 300;
  transition: 0.3s ease;
}
.navbar .container {
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-inline: auto;
}
.navbar .container .logo {
  font-size: 28px;
  font-family: "Instrument Serif", serif;
  letter-spacing: 2px;
  text-decoration: none;
  color: #1B211D;
}
.navbar .container .logo:hover {
  color: #7A7F78;
}
.navbar .container .nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar .container .link a {
  text-decoration: none;
  color: #1B211D;
  font-family: "Manrope", sans-serif;
  letter-spacing: 1.5px;
  font-size: 12px;
}
.navbar .container .link a:hover {
  color: #7A7F78;
}
.navbar .container .nav-cta {
  background: #E8E2D7;
  color: #1B211D;
  text-decoration: none;
  letter-spacing: 1.5px;
  font-size: 0.6875rem;
  font-family: "Manrope", sans-serif;
  padding: 14px 24px;
  border-radius: 2px;
}
.navbar .container .nav-cta:hover {
  background: #6B716B;
}
@media (max-width: 768px) {
  .navbar .container .nav-links {
    display: none;
  }
}

.navbar.scrolled {
  padding-block: 1rem;
  background: #E8E2D7;
  border-bottom: 1px solid #ccc;
}
.navbar.scrolled .nav-cta {
  background: #1B211D;
  color: #E8E2D7;
}

.site-footer {
  height: 450px;
  background: #E8E2D7;
  padding-inline: clamp(30px, 4vw, 48px);
}
.site-footer .container {
  position: relative;
  max-width: 1440px;
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.site-footer .top {
  display: flex;
  justify-content: space-between;
  width: 1120px;
  margin-bottom: 100px;
}
.site-footer .top .logo {
  font-size: 48px;
  font-family: "Instrument Serif", serif;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #1B211D;
  margin-bottom: 24px;
}
.site-footer .top .logo:hover {
  color: #7A7F78;
}
.site-footer .top .tagline {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #1B211D;
}
.site-footer .top h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 1.8px;
  color: #6B716B;
  margin-bottom: 20px;
}
.site-footer .top ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer .top ul a {
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2px;
  line-height: 1.8;
  color: #1B211D;
}
.site-footer .top ul a:hover {
  color: #7A7F78;
}
.site-footer .demo-notice {
  width: 1120px;
  margin-bottom: 32px;
}
.site-footer .demo-notice p {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1vw, 13px);
  letter-spacing: 0.3px;
  line-height: 1.7;
  color: #7A7F78;
}
.site-footer .bottom {
  width: 1120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-footer .bottom .copyright,
.site-footer .bottom .credit,
.site-footer .bottom nav a {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 1px;
  line-height: 1.4;
  color: #7A7F78;
}
.site-footer .bottom .copyright a,
.site-footer .bottom .credit a,
.site-footer .bottom nav a a {
  color: #1B211D;
}
.site-footer .bottom .copyright a:hover,
.site-footer .bottom .credit a:hover,
.site-footer .bottom nav a a:hover {
  color: #7A7F78;
}
.site-footer .bottom nav a {
  color: #1B211D;
}
.site-footer .bottom nav a:hover {
  color: #7A7F78;
}
@media (max-width: 1280px) {
  .site-footer {
    height: max-content;
  }
  .site-footer .container {
    padding-block: 50px;
  }
  .site-footer .top {
    width: 100%;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 50px;
  }
  .site-footer .demo-notice {
    width: 100%;
    margin-bottom: 32px;
  }
  .site-footer .bottom {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .site-footer .demo-notice {
    margin-bottom: 24px;
  }
  .site-footer .demo-notice p {
    text-align: center;
  }
  .site-footer .bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* Base: 0px+ (Mobile) */
.hero {
  height: 900px;
  background: url("/assets/img/home-hero.png") center/cover no-repeat;
  padding-inline: clamp(30px, 4vw, 48px);
}
.hero .container {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
}
.hero .hero-content {
  position: absolute;
  left: 160px;
  top: 311px;
}
.hero .hero-content .eyebrow {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.8px;
  color: #1B211D;
  display: inline-block;
  margin-bottom: 20px;
}
.hero .hero-content .heading {
  font-size: clamp(60px, 2.5vw + 60px, 96px);
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 0.8;
  color: #1B211D;
  margin-bottom: 24px;
}
.hero .hero-content .description {
  max-width: 420px;
  line-height: 1.6;
  color: #1B211D;
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0;
  opacity: 0.8;
  margin-bottom: 32px;
}
.hero .hero-content .cta.cta--primary {
  color: #E8E2D7;
  padding: 16px 28px;
  background: #1B211D;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.6875rem;
  border-radius: 2px;
}
.hero .hero-content .cta.cta--primary:hover {
  background: #7A7F78;
}
.hero .location {
  position: absolute;
  left: 0;
  top: 837px;
  color: #E8E2D7;
  letter-spacing: 1.5px;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  opacity: 0.7;
}
.hero .scroll-cue {
  position: absolute;
  left: 50%;
  top: 785px;
  transform: translateX(-50%);
  color: #E8E2D7;
  letter-spacing: 1.5px;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero .scroll-cue .line {
  display: block;
  margin-top: 10px;
  width: 1px;
  height: 40px;
  background: #E8E2D7;
  margin-inline: auto;
  opacity: 0.5;
}
@media (max-width: 1024px) {
  .hero .hero-content {
    left: 0;
  }
}
@media (max-width: 768px) {
  .hero .container {
    padding-block: 200px 0;
    height: 100%;
  }
  .hero .hero-content {
    top: 30%;
  }
  .hero .location {
    top: unset;
    bottom: 3rem;
  }
  .hero .scroll-cue {
    top: unset;
    bottom: 3rem;
  }
}

.introduction-section {
  height: 720px;
  background: #E8E2D7;
  scroll-margin-top: 76px;
  padding-inline: clamp(30px, 4vw, 48px);
}
.introduction-section .container {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
}
.introduction-section .section-content {
  position: absolute;
  top: 160px;
  left: 160px;
}
.introduction-section .section-content .eyebrow {
  opacity: 0.65;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 1.8px;
  color: #1B211D;
  display: block;
  margin-bottom: 24px;
}
.introduction-section .section-content .heading {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(50px, 3.9vw + 8px, 64px);
  letter-spacing: -1px;
  line-height: 0.98;
  color: #1B211D;
  margin-bottom: 32px;
}
.introduction-section .section-content .description {
  max-width: 420px;
  opacity: 0.75;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #1B211D;
}
.introduction-section .image-wrapper {
  position: absolute;
  top: 100px;
  left: 830px;
  width: 450px;
  height: 550px;
}
.introduction-section .image-wrapper .introduction-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  margin-bottom: 16px;
}
.introduction-section .image-wrapper .image-caption {
  opacity: 0.6;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #1B211D;
}
@media (max-width: 1440px) {
  .introduction-section .section-content {
    left: 100px;
  }
  .introduction-section .image-wrapper {
    left: unset;
    right: 100px;
  }
}
@media (max-width: 1280px) {
  .introduction-section .section-content {
    left: 50px;
  }
  .introduction-section .image-wrapper {
    right: 50px;
  }
}
@media (max-width: 1100px) {
  .introduction-section .section-content {
    left: 0;
  }
  .introduction-section .image-wrapper {
    right: 0;
  }
}
@media (max-width: 1024px) {
  .introduction-section {
    height: max-content;
  }
  .introduction-section .container {
    padding-block: 100px;
  }
  .introduction-section .section-content {
    position: static;
    margin-bottom: 32px;
  }
  .introduction-section .image-wrapper {
    position: static;
    width: 100%;
  }
}

.philosophy-section {
  height: 900px;
  background: #1B211D;
  padding-inline: clamp(30px, 4vw, 48px);
}
.philosophy-section .container {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
}
.philosophy-section .philosophy-left {
  position: absolute;
  left: 160px;
  top: 120px;
}
.philosophy-section .philosophy-left .eyebrow {
  opacity: 0.65;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 1.8px;
  color: #E8E2D7;
  display: block;
  margin-bottom: 24px;
}
.philosophy-section .philosophy-left .heading {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(50px, 3.9vw + 16px, 72px);
  letter-spacing: -1.5px;
  line-height: 0.95;
  color: #E8E2D7;
  margin-bottom: 35px;
}
.philosophy-section .philosophy-left .philosophy-image {
  width: 720px;
  height: 480px;
  object-fit: cover;
}
.philosophy-section .philosophy-content {
  position: absolute;
  top: 420px;
  left: 960px;
}
.philosophy-section .philosophy-content .label {
  opacity: 0.6;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 1.8px;
  color: #E8E2D7;
  display: block;
  margin-bottom: 32px;
}
.philosophy-section .philosophy-content .paragraph {
  max-width: 300px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: #E8E2D7;
  margin-bottom: 40px;
}
.philosophy-section .philosophy-content .cta {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 1.5px;
  color: #E8E2D7;
  text-decoration: none;
}
.philosophy-section .philosophy-content .cta:hover {
  color: #6B716B;
}
@media (max-width: 1440px) {
  .philosophy-section .container {
    padding-block: 100px;
  }
  .philosophy-section .philosophy-left {
    left: 100px;
  }
  .philosophy-section .philosophy-image {
    left: 100px;
  }
  .philosophy-section .philosophy-content {
    left: unset;
    right: 100px;
  }
}
@media (max-width: 1350px) {
  .philosophy-section .philosophy-image {
    width: 650px !important;
  }
}
@media (max-width: 1280px) {
  .philosophy-section {
    height: max-content;
  }
  .philosophy-section .philosophy-left {
    position: static;
    margin-bottom: 32px;
    text-align: center;
    padding-inline: 50px;
  }
  .philosophy-section .philosophy-image {
    width: 100% !important;
  }
  .philosophy-section .philosophy-content {
    position: static;
    text-align: center;
  }
  .philosophy-section .philosophy-content .paragraph {
    max-width: 500px;
    margin-inline: auto;
  }
}
@media (max-width: 1100px) {
  .philosophy-section .philosophy-left {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .philosophy-section .philosophy-left {
    text-align: left;
  }
  .philosophy-section .philosophy-content {
    text-align: left;
  }
  .philosophy-section .philosophy-content .paragraph {
    margin-inline: unset;
  }
}

.stay-section {
  height: 900px;
  background: #E8E2D7;
  padding-inline: clamp(30px, 4vw, 48px);
}
.stay-section .container {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
}
.stay-section .villa-image {
  position: absolute;
  top: 180px;
  left: 160px;
  width: 760px;
  height: 560px;
  object-fit: cover;
}
.stay-section .stay-content {
  position: absolute;
  top: 170px;
  left: 980px;
}
.stay-section .stay-content .eyebrow {
  opacity: 0.65;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 1.8px;
  color: #1B211D;
  display: block;
  margin-bottom: 24px;
}
.stay-section .stay-content .villa-name {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(50px, 3.9vw + 12px, 68px);
  letter-spacing: -1.2px;
  line-height: 0.95;
  color: #1B211D;
  margin-bottom: 32px;
}
.stay-section .stay-content .description {
  max-width: 360px;
  opacity: 0.75;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -1.2px;
  line-height: 1.7;
  color: #1B211D;
  margin-bottom: 40px;
}
.stay-section .stay-content .features {
  list-style: none;
  margin-bottom: 40px;
}
.stay-section .stay-content .features li {
  opacity: 0.8;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
  color: #1B211D;
}
.stay-section .stay-content .stay-cta {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 1.5px;
  color: #1B211D;
  text-decoration: none;
}
.stay-section .stay-content .stay-cta:hover {
  color: #6B716B;
}
@media (max-width: 1440px) {
  .stay-section .container {
    padding-block: 100px;
  }
  .stay-section .villa-image {
    left: 100px;
  }
  .stay-section .stay-content {
    left: unset;
    right: 0;
  }
}
@media (max-width: 1350px) {
  .stay-section .villa-image {
    width: 55%;
  }
}
@media (max-width: 1280px) {
  .stay-section .villa-image {
    width: 50%;
    left: 50px;
  }
  .stay-section .stay-content {
    right: 50px;
  }
}
@media (max-width: 1100px) {
  .stay-section .villa-image {
    left: 0;
  }
}
@media (max-width: 1024px) {
  .stay-section {
    height: max-content;
  }
  .stay-section .villa-image {
    position: static;
    width: 100%;
    margin-bottom: 32px;
  }
  .stay-section .stay-content {
    position: static;
  }
  .stay-section .stay-content .description {
    max-width: 500px;
  }
}

.experiences {
  height: 900px;
  background: #1B211D;
  padding-inline: clamp(30px, 4vw, 48px);
}
.experiences .container {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
}
.experiences .section-header {
  padding-top: 79px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 32px;
}
.experiences .section-header .eyebrow {
  opacity: 0.65;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 1.8px;
  color: #E8E2D7;
  display: block;
  margin-bottom: 24px;
}
.experiences .section-header .heading {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(50px, 3.9vw + 12px, 68px);
  letter-spacing: -1.2px;
  line-height: 0.95;
  color: #E8E2D7;
}
.experiences .cards {
  max-width: 1236px;
  height: 440px;
  margin-inline: auto;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.experiences .cards .experience-card {
  max-width: 280px;
  max-height: 420px;
}
.experiences .cards .experience-card img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  margin-bottom: 20px;
}
.experiences .cards .experience-card .eyebrow {
  opacity: 0.6;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1.8px;
  color: #E8E2D7;
  display: block;
  margin-bottom: 12px;
}
.experiences .cards .experience-card .title {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -1.2px;
  line-height: 0.95;
  color: #E8E2D7;
  margin-bottom: 20px;
}
.experiences .cards .experience-card .description {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #E8E2D7;
}
@media (max-width: 1280px) {
  .experiences {
    height: max-content;
  }
  .experiences .container {
    padding-block: 100px;
  }
  .experiences .section-header {
    padding: 0;
  }
  .experiences .cards {
    height: max-content;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px;
    padding: 0;
  }
  .experiences .experience-card {
    max-width: 100% !important;
  }
  .experiences .experience-card img {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .experiences .cards {
    grid-template-columns: 1fr !important;
  }
}

.quote-section {
  position: relative;
  height: 700px;
  background: url("/assets/img/quote-image.png") center/cover no-repeat;
  overflow: hidden;
  padding-inline: clamp(30px, 4vw, 48px);
}
.quote-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: #1B211D;
  opacity: 0.25;
}
.quote-section .container {
  max-width: 1440px;
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-section figure {
  z-index: 1;
}
.quote-section .quote {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(50px, 3.9vw + 16px, 72px);
  letter-spacing: -1px;
  line-height: 1.05;
  color: #E8E2D7;
  margin-bottom: 32px;
}
.quote-section figcaption {
  opacity: 0.7;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 2px;
  color: #E8E2D7;
}

.journal-section {
  height: 900px;
  background: #E8E2D7;
  padding-inline: clamp(30px, 4vw, 48px);
}
.journal-section .container {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
}
.journal-section .section-header {
  position: absolute;
  top: 120px;
  left: 160px;
}
.journal-section .section-header .eyebrow {
  opacity: 0.65;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 1.8px;
  color: #1B211D;
  display: block;
  margin-bottom: 24px;
}
.journal-section .section-header .heading {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(50px, 3.9vw + 12px, 68px);
  letter-spacing: -1.2px;
  line-height: 0.95;
  color: #1B211D;
}
.journal-section .journal-cards {
  position: absolute;
  top: 369px;
  left: 160px;
  width: 1240px;
  height: 500px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.journal-section .journal-cards .journal-card {
  width: 380px;
  height: 480px;
}
.journal-section .journal-cards .journal-card img {
  width: 360px;
  height: 360px;
  object-fit: cover;
  margin-bottom: 16px;
}
.journal-section .journal-cards .journal-card .eyebrow {
  opacity: 0.6;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1.8px;
  line-height: 1.2;
  color: #1B211D;
  display: block;
  margin-bottom: 12px;
}
.journal-section .journal-cards .journal-card .title {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #1B211D;
}
@media (max-width: 1460px) {
  .journal-section {
    height: max-content;
  }
  .journal-section .container {
    padding-block: 100px;
  }
  .journal-section .section-header {
    position: static;
    padding-inline: 50px;
    margin-bottom: 48px;
  }
  .journal-section .journal-cards {
    position: static;
    width: 100%;
    height: max-content;
    padding-inline: 50px;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .journal-section .journal-cards .journal-card {
    width: 100%;
  }
  .journal-section .journal-cards .journal-card img {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .journal-section .section-header {
    padding-inline: 0;
  }
  .journal-section .journal-cards {
    padding-inline: 0;
    grid-template-columns: 1fr;
  }
}

.book-your-stay {
  height: 700px;
  background: #1B211D;
  scroll-margin-top: 76px;
  padding-inline: clamp(30px, 4vw, 48px);
}
.book-your-stay .container {
  position: relative;
  max-width: 1440px;
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-your-stay .content {
  text-align: center;
}
.book-your-stay .content .eyebrow {
  opacity: 0.65;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 1.8px;
  color: #E8E2D7;
  display: block;
  margin-bottom: 24px;
}
.book-your-stay .content .heading {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(50px, 3.9vw + 20px, 76px);
  letter-spacing: -1.5px;
  line-height: 0.95;
  color: #E8E2D7;
  margin-bottom: 32px;
}
.book-your-stay .content .description {
  max-width: 368px;
  opacity: 0.75;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: #E8E2D7;
  margin-inline: auto;
  margin-bottom: 48px;
}
.book-your-stay .content .cta.cta--secondary {
  color: #1B211D;
  padding: 18px 36px;
  background: #E8E2D7;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.6875rem;
  border-radius: 2px;
}
.book-your-stay .content .cta.cta--secondary:hover {
  background: #6B716B;
}

/*# sourceMappingURL=home.css.map */
