@font-face {
  font-family: 'DM Serif Display'; font-style: italic; font-weight: 400; font-display: swap; src: url('../assets/dm-serif-display-400-italic.ttf') format('truetype');
}
@font-face {
  font-family: 'DM Serif Display'; font-style: normal; font-weight: 400; font-display: swap; src: url('../assets/dm-serif-display-400-normal.ttf') format('truetype');
}
@font-face {
  font-family: 'Manrope'; font-style: normal; font-weight: 400; font-display: swap; src: url('../assets/manrope-400-normal.ttf') format('truetype');
}
@font-face {
  font-family: 'Manrope'; font-style: normal; font-weight: 500; font-display: swap; src: url('../assets/manrope-500-normal.ttf') format('truetype');
}
@font-face {
  font-family: 'Manrope'; font-style: normal; font-weight: 600; font-display: swap; src: url('../assets/manrope-600-normal.ttf') format('truetype');
}
:root {
  --green: #183d30; --green-dark: #112e24; --cream: #f6f3ed; --paper: #eeeadf; --gold: #a47c32; --ink: #192a23; --muted: #5c625c; --line: #d9d5ca; --heading: 'DM Serif Display', Georgia, serif; --body: 'Manrope', Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth; scroll-padding-top: 28px;
}
body {
  margin: 0; font-family: var(--body); font-size: 16px; line-height: 1.65; color: var(--ink); background: var(--cream);
}
body.modal_open {
  overflow: hidden;
}
button, input, select, textarea {
  font: inherit;
}
button, a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit; text-decoration: none;
}
img {
  display: block; max-width: 100%; height: auto;
}
button, a {
  touch-action: manipulation;
}
:focus-visible {
  outline: 3px solid #b98624; outline-offset: 5px;
}
::selection {
  color: #fff; background: var(--green);
}
h1, h2, h3, p, figure {
  margin: 0;
}
h1, h2, h3 {
  font-family: var(--heading); font-weight: 400;
}
h2 {
  font-size: clamp(34px, 3.2vw, 51px); line-height: 1.07; letter-spacing: -1.8px;
}
h3 {
  font-size: 26px; line-height: 1.2; letter-spacing: -.6px;
}
.page {
  width: 100%; background: var(--cream);
}
.skip_link {
  position: fixed; z-index: 30; top: 8px; left: 8px; padding: 12px 20px; color: #fff; background: var(--green); transform: translateY(-150%);
}
.skip_link:focus {
  transform: translateY(0);
}
.header {
  position: relative; z-index: 10; display: flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 110px; padding: 24px max(5%, calc((100% - 1600px) / 2)); background: var(--cream);
}
.header_logo {
  display: block; flex: 0 0 270px;
}
.header_logo img {
  width: 270px; height: 60px; object-fit: contain; filter: brightness(0) saturate(100%) invert(19%) sepia(18%) saturate(1000%) hue-rotate(102deg) brightness(91%) contrast(91%);
}
.navigation {
  display: flex; align-items: center; gap: 25px; font-size: 14px; font-weight: 500;
}
.navigation > a:not(.button) {
  position: relative; padding: 10px 0;
}
.navigation > a:not(.button)::after {
  position: absolute; right: 0; bottom: 5px; left: 0; height: 1px; background: var(--green); content: ''; transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.navigation > a:hover::after, .navigation > a:focus-visible::after {
  transform: scaleX(1);
}
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 49px; padding: 12px 24px; font-size: 14px; font-weight: 500; line-height: 1.3; text-align: center; border: 1px solid transparent; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.button span {
  font-size: 19px; line-height: 1;
}
.button_green {
  color: #fff; background: var(--green);
}
.button_green:hover {
  background: var(--green-dark);
}
.button_gold {
  color: #fff; background: #997027; border-color: #b5914b;
}
.button_gold:hover {
  background: #7b581a; border-color: #7b581a;
}
.button_outline {
  color: #fff; background: transparent; border-color: #c8c9b9;
}
.button_outline:hover {
  color: var(--green); background: var(--cream); border-color: var(--cream);
}
.button_row {
  display: flex; flex-wrap: wrap; gap: 15px; margin-top: 28px;
}
.menu_toggle {
  display: none; align-items: center; justify-content: center; gap: 14px; min-height: 44px; padding: 10px 0 10px 12px; font-size: 14px; color: var(--green); background: transparent; border: 0;
}
.menu_lines {
  position: relative; display: block; width: 23px; height: 14px; border-top: 1px solid currentColor; border-bottom: 1px solid currentColor;
}
.menu_lines::after {
  position: absolute; top: 5px; left: 0; width: 23px; height: 1px; background: currentColor; content: '';
}
.hero {
  position: relative; display: flex; align-items: center; min-height: 670px; padding: 78px max(6%, calc((100% - 1600px) / 2)) 110px; color: #fff; background: var(--green-dark); isolation: isolate;
}
.hero_image {
  position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 52%;
}
.hero::after {
  position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(10, 23, 15, .75) 0%, rgba(10, 23, 15, .4) 43%, rgba(10, 23, 15, .05) 77%), linear-gradient(0deg, rgba(10, 23, 15, .42), transparent 35%); content: '';
}
.hero_content {
  width: 640px; max-width: 100%;
}
.eyebrow {
  margin-bottom: 18px; font-size: 12px; font-weight: 500; line-height: 1.4; letter-spacing: 2.9px; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(56px, 5.7vw, 89px); line-height: .99; letter-spacing: -3.2px;
}
.hero_description {
  margin-top: 25px; font-size: 17px; line-height: 1.55; color: #f6f5ef;
}
.hero_scroll {
  position: absolute; bottom: 27px; left: max(6%, calc((100% - 1600px) / 2)); display: flex; align-items: center; gap: 13px; font-size: 12px; letter-spacing: 1px;
}
.hero_scroll span {
  display: flex; align-items: center; justify-content: center; width: 31px; height: 31px; font-size: 18px; border: 1px solid #ffffff70; border-radius: 50%;
}
.hero_location {
  position: absolute; right: max(6%, calc((100% - 1600px) / 2)); bottom: 35px; font-size: 12px; letter-spacing: 2px;
}
.benefits {
  display: grid; grid-template-columns: repeat(4, 1fr); padding: 36px max(5%, calc((100% - 1600px) / 2)); background: #eeebe2;
}
.benefit {
  padding: 0 20px; text-align: center; border-right: 1px solid var(--line);
}
.benefit:last-child {
  border-right: 0;
}
.benefit svg {
  display: block; width: 40px; height: 40px; margin: 0 auto 14px; fill: none; stroke: var(--green); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round;
}
.benefit h2 {
  font-size: 22px; line-height: 1.2; letter-spacing: -.5px;
}
.benefit p {
  margin-top: 7px; font-size: 14px; line-height: 1.5; color: var(--muted);
}
.section {
  padding: 80px max(6%, calc((100% - 1600px) / 2));
}
.welcome {
  display: grid; grid-template-columns: 1fr 1.08fr; align-items: center; gap: 7%; padding-bottom: 70px;
}
.welcome_copy > p:not(.eyebrow):not(.handwritten) {
  max-width: 520px; margin-top: 22px; color: var(--muted);
}
.handwritten {
  position: relative; margin-top: 28px; padding-left: 65px; font-family: var(--heading); font-size: 21px; font-style: italic; line-height: 1.45; color: #766b52;
}
.handwritten > span {
  position: absolute; top: 15px; left: 0; width: 44px; height: 1px; background: var(--gold);
}
.welcome_visual {
  position: relative; margin: 0 10px 20px 0;
}
.photo_link {
  position: relative; display: block; overflow: hidden;
}
.photo_link img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease;
}
.photo_link:hover img {
  transform: scale(1.035);
}
.welcome_visual .photo_link {
  aspect-ratio: 1.32;
}
.welcome_note {
  position: absolute; right: -15px; bottom: -25px; padding: 25px 35px; font-size: 12px; line-height: 2.4; letter-spacing: 2px; text-align: center; text-transform: uppercase; background: #eae2cd; box-shadow: 0 5px 13px #1a291517; transform: rotate(-5deg);
}
.accommodation {
  padding-top: 10px;
}
.section_heading {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 32px;
}
.section_heading .eyebrow {
  margin-bottom: 13px;
}
.section_heading > p {
  flex: 0 1 410px; padding-bottom: 2px; font-size: 15px; line-height: 1.65; color: var(--muted);
}
.section_heading h2 {
  font-size: clamp(32px, 2.8vw, 45px);
}
.cards {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px;
}
.card .photo_link {
  aspect-ratio: 1.64;
}
.card h3 {
  margin-top: 20px; font-size: 26px;
}
.card h3 a {
  display: flex; align-items: center; justify-content: space-between; gap: 15px;
}
.card h3 span {
  font-family: var(--body); font-size: 21px; color: var(--gold);
}
.card p {
  margin-top: 10px; font-size: 15px; line-height: 1.6; color: var(--muted);
}
.relax {
  display: grid; grid-template-columns: .84fr 1.16fr; align-items: center; gap: 8%; padding-top: 50px; padding-bottom: 50px; color: #fff; background: var(--green);
}
.relax_copy h2 {
  font-size: clamp(42px, 4vw, 63px);
}
.relax_copy > p:not(.eyebrow) {
  max-width: 435px; margin-top: 25px; color: #e6e9df;
}
.relax_copy .button {
  margin-top: 28px;
}
.relax_visual {
  aspect-ratio: 1.5;
}
.photo_handwritten {
  position: absolute; right: 25px; bottom: 22px; font-family: var(--heading); font-size: 28px; font-style: italic; line-height: 1.2; color: #fff; text-shadow: 0 2px 10px #000;
}
.surroundings .card .photo_link {
  aspect-ratio: 1.85;
}
.video_section {
  padding-top: 60px; padding-bottom: 50px; background: var(--paper);
}
.video_player {
  position: relative; display: flex; align-items: center; justify-content: center; aspect-ratio: 16 / 7.8; color: #fff; background: var(--green-dark); overflow: hidden;
}
.video_player > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.63);
}
.video_play {
  position: relative; display: flex; align-items: center; gap: 22px; max-width: 100%; padding: 20px; font-family: var(--heading); font-size: 34px; line-height: 1.1; text-align: left; color: #fff; background: transparent; border: 0;
}
.play_circle {
  display: flex; align-items: center; justify-content: center; flex: 0 0 82px; width: 82px; height: 82px; padding-left: 4px; font-family: var(--body); font-size: 22px; color: var(--green); background: var(--cream); border-radius: 50%; transition: transform .2s ease;
}
.video_play:hover .play_circle {
  transform: scale(1.08);
}
.video_play small {
  display: block; margin-top: 12px; font-family: var(--body); font-size: 12px; line-height: 1.4; letter-spacing: 2px; text-transform: uppercase;
}
.video_player iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video_player.is_playing {
  aspect-ratio: 16 / 9;
}
.video_caption {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin-top: 15px; font-size: 12px; color: var(--muted);
}
.video_caption a {
  text-decoration: underline; text-underline-offset: 3px;
}
.testimonials {
  padding-bottom: 70px;
}
.review_grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px;
}
.review {
  display: flex; flex-direction: column; padding: 28px 30px 32px; background: #eeebe3; border-top: 1px solid #c4b58d;
}
.quote_mark {
  display: block; height: 48px; font-family: var(--heading); font-size: 70px; line-height: 1; color: var(--gold);
}
.review blockquote {
  flex: 1; margin: 0 0 30px; font-family: var(--heading); font-size: 23px; line-height: 1.45;
}
.review figcaption {
  display: flex; align-items: center; gap: 13px; font-size: 14px;
}
.review_initial {
  display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; font-family: var(--heading); font-size: 20px; color: var(--green); border: 1px solid #c9cbbd; border-radius: 50%;
}
.review figcaption small {
  display: block; margin-top: 2px; font-size: 12px; color: var(--muted);
}
.gallery {
  padding-top: 0;
}
.text_link {
  display: inline-flex; align-items: center; gap: 25px; padding-bottom: 5px; font-size: 14px; border-bottom: 1px solid var(--gold);
}
.gallery_grid {
  display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: repeat(2, 220px); gap: 20px;
}
.gallery_main {
  grid-row: 1 / 3;
}
.gallery_label {
  position: absolute; right: 0; bottom: 0; left: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 45px 24px 20px; font-size: 15px; color: #fff; background: linear-gradient(transparent, #122a1ec7);
}
.gallery_label > span {
  font-size: 24px;
}
.contact_cta {
  padding-top: 60px; padding-bottom: 60px; text-align: center; background: var(--paper); border-top: 1px solid var(--line);
}
.contact_cta h2 {
  font-size: clamp(38px, 4vw, 62px);
}
.contact_cta > p:not(.eyebrow) {
  margin-top: 20px; color: var(--muted);
}
.contact_cta .button {
  margin-top: 25px;
}
.footer {
  padding: 48px max(6%, calc((100% - 1600px) / 2)) 22px; color: #fff; background: var(--green);
}
.footer_top {
  display: grid; grid-template-columns: 1.2fr .65fr 1.2fr .9fr; align-items: center; gap: 35px; padding-bottom: 40px;
}
.footer_logo img {
  width: 265px; height: auto;
}
.footer_top nav {
  display: flex; flex-direction: column; padding-left: 28px; font-size: 14px; line-height: 1.9; color: #e6e9df; border-left: 1px solid #ffffff30;
}
.footer_top a:hover, .footer_bottom a:hover {
  text-decoration: underline; text-underline-offset: 4px;
}
.footer_motto {
  font-family: var(--heading); font-size: 24px; font-style: italic; line-height: 1.45; text-align: center; color: #d8deca;
}
.footer_place {
  padding-left: 30px; font-size: 12px; line-height: 1.8; letter-spacing: 2px; text-transform: uppercase; color: #e6e9df; border-left: 1px solid #ffffff30;
}
.footer_place a {
  display: block; margin-top: 15px; font-size: 12px; letter-spacing: 0; text-transform: none;
}
.footer_bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 20px; font-size: 12px; color: #bdcbbb; border-top: 1px solid #ffffff25;
}
.lightbox {
  position: fixed; width: min(1400px, 96vw); max-width: 96vw; max-height: 96dvh; padding: 55px 65px 25px; color: #fff; background: #13281f; border: 0;
}
.lightbox::backdrop {
  background: #07150eeb;
}
.lightbox figure {
  margin: 0;
}
.lightbox_image {
  width: 100%; height: min(75dvh, 850px); object-fit: contain;
}
.lightbox_caption {
  min-height: 30px; margin-top: 16px; font-size: 14px; text-align: center;
}
.lightbox button {
  position: absolute; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0; font-size: 28px; color: #fff; background: #183d30; border: 1px solid #ffffff40;
}
.lightbox_close {
  top: 6px; right: 6px;
}
.lightbox_prev {
  top: calc(50% - 22px); left: 10px;
}
.lightbox_next {
  top: calc(50% - 22px); right: 10px;
}
@media (max-width: 1250px) {
  .header {
    gap: 24px; padding-right: 4%; padding-left: 4%;
  }
  .header_logo {
    flex-basis: 230px;
  }
  .header_logo img {
    width: 230px; height: auto;
  }
  .navigation {
    gap: 18px; font-size: 13px;
  }
  .navigation .button {
    gap: 15px; padding-right: 16px; padding-left: 16px; font-size: 13px;
  }
  .section {
    padding-right: 5%; padding-left: 5%;
  }
  .welcome, .relax {
    gap: 5%;
  }
  .section_heading > p {
    flex-basis: 340px;
  }
  .footer_top {
    gap: 25px;
  }
}
@media (max-width: 1050px) {
  .header {
    flex-wrap: wrap; min-height: 90px; padding: 18px 5%;
  }
  .menu_toggle {
    display: inline-flex;
  }
  .navigation {
    display: none; align-items: stretch; flex-direction: column; gap: 0; width: 100%; padding: 10px 0 4px; font-size: 16px; border-top: 1px solid var(--line);
  }
  .navigation.is_open {
    display: flex;
  }
  .navigation > a:not(.button) {
    padding: 13px 0;
  }
  .navigation .button {
    align-self: flex-start; margin-top: 10px; font-size: 14px;
  }
  .hero {
    min-height: 630px;
  }
  .benefits {
    padding-right: 3%; padding-left: 3%;
  }
  .benefit {
    padding-right: 10px; padding-left: 10px;
  }
  .benefit h2 {
    font-size: 19px;
  }
  .benefit p {
    font-size: 13px;
  }
  .section_heading {
    align-items: flex-start; flex-direction: column; gap: 18px;
  }
  .section_heading > p {
    flex-basis: auto;
  }
  .welcome_visual .photo_link {
    aspect-ratio: .92;
  }
  .cards, .review_grid {
    gap: 20px;
  }
  .card h3 {
    font-size: 23px;
  }
  .review {
    padding: 25px 22px;
  }
  .review blockquote {
    font-size: 21px;
  }
  .footer_top {
    grid-template-columns: 1.2fr .8fr; gap: 35px 50px;
  }
  .footer_motto {
    text-align: left;
  }
}
@media (max-width: 720px) {
  h2 {
    font-size: 36px; letter-spacing: -1.1px;
  }
  .header_logo {
    flex-basis: 205px;
  }
  .header_logo img {
    width: 205px;
  }
  .header {
    gap: 0 15px; min-height: 82px;
  }
  .hero {
    align-items: center; min-height: 640px; padding: 60px 6% 95px;
  }
  .hero_image {
    object-position: 58% center;
  }
  .hero::after {
    background: linear-gradient(90deg, #0a170fc9, #0a170f45), linear-gradient(0deg, #0a170f80, transparent 45%);
  }
  .hero h1 {
    font-size: clamp(49px, 10.5vw, 71px); letter-spacing: -2px;
  }
  .hero_description {
    font-size: 16px;
  }
  .hero_description br {
    display: none;
  }
  .hero_location {
    display: none;
  }
  .eyebrow {
    font-size: 11px; letter-spacing: 2.2px;
  }
  .button_row {
    gap: 10px;
  }
  .button {
    gap: 16px; padding-right: 18px; padding-left: 18px;
  }
  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 12px 5%;
  }
  .benefit {
    padding: 24px 8px;
  }
  .benefit:nth-child(2) {
    border-right: 0;
  }
  .benefit:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
  .benefit h2 {
    font-size: 19px;
  }
  .benefit p {
    font-size: 12px;
  }
  .section {
    padding: 52px 6%;
  }
  .welcome {
    grid-template-columns: 1fr; gap: 38px;
  }
  .welcome_visual {
    margin: 0 10px 20px 0;
  }
  .welcome_visual .photo_link {
    aspect-ratio: 1.3;
  }
  .welcome_note {
    padding: 18px 25px; font-size: 10px;
  }
  .handwritten {
    font-size: 20px;
  }
  .accommodation {
    padding-top: 5px;
  }
  .section_heading {
    gap: 18px; margin-bottom: 26px;
  }
  .section_heading h2 {
    font-size: 35px;
  }
  .section_heading > p br {
    display: none;
  }
  .cards, .review_grid {
    grid-template-columns: 1fr; gap: 32px;
  }
  .card h3 {
    margin-top: 16px; font-size: 27px;
  }
  .card p {
    font-size: 16px;
  }
  .relax {
    grid-template-columns: 1fr; gap: 32px;
  }
  .relax_copy h2 {
    font-size: 46px;
  }
  .relax_visual {
    aspect-ratio: 1.25;
  }
  .video_player {
    aspect-ratio: 4 / 3;
  }
  .video_play {
    gap: 15px; font-size: 27px;
  }
  .play_circle {
    flex-basis: 60px; width: 60px; height: 60px; font-size: 18px;
  }
  .video_play small {
    max-width: 170px; font-size: 10px; line-height: 1.5;
  }
  .review_grid {
    gap: 16px;
  }
  .review {
    padding: 28px;
  }
  .review blockquote {
    font-size: 23px;
  }
  .gallery {
    padding-top: 0;
  }
  .gallery_grid {
    grid-template-columns: 1fr 1fr; grid-template-rows: 290px 190px; gap: 12px;
  }
  .gallery_main {
    grid-row: auto; grid-column: 1 / 3;
  }
  .gallery_label {
    gap: 8px; padding: 30px 14px 12px; font-size: 12px;
  }
  .contact_cta h2 {
    font-size: 40px;
  }
  .footer {
    padding: 38px 6% 25px;
  }
  .footer_top {
    grid-template-columns: 1fr 1fr; gap: 28px 20px;
  }
  .footer_logo {
    grid-column: 1 / 3;
  }
  .footer_top nav {
    padding-left: 0; border-left: 0;
  }
  .footer_motto {
    grid-column: 1 / 3; grid-row: 3; font-size: 23px;
  }
  .footer_place {
    padding-left: 16px; font-size: 11px;
  }
  .footer_bottom {
    align-items: flex-start; flex-direction: column; gap: 10px;
  }
  .lightbox {
    padding: 55px 10px 65px;
  }
  .lightbox_image {
    height: 65dvh;
  }
  .lightbox_prev, .lightbox_next {
    top: auto; bottom: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition: none !important;
  }
}
