/* ============================================================
   1. ROOT / TOKENS
   ============================================================ */
:root {
  --desktop-header-height: 5rem;
  --content-max-width:     1150px;

  --color-black:      #1C1B17;

  --color-mist-10:  #f2f3f2;
  --color-mist-20:  #e2e4e1;
  --color-mist-30:  #d3d6d1;
  --color-mist-40:  #c3c7c1;
  --color-mist-50:  #b4b8b0;
  --color-mist-60:  #a4a9a0;
  --color-mist-70:  #949b90;
  --color-mist-80:  #858c80;
  --color-mist-90:  #757c71;
  --color-mist-100: #666c62;
  --color-mist-110: #575b53;
  --color-mist-120: #474b45;
  --color-mist-130: #383b36;
  --color-mist-140: #292b27;
  --color-mist-150: #191b18;

  --color-sand-10: #faf7f2;
  --color-sand-20: #f6f1e8;
  --color-sand-30: #ede0c9;
  --color-sand-40: #e0cca7;
  --color-sand-50: #c9b895;
  --color-sand-60: #b1a283;
  --color-sand-70: #998b71;
  --color-sand-80: #80745e;
  --color-sand-90: #675e4b;
  --color-sand-100: #4e4738;
  --color-sand-110: #423c2f;
  --color-sand-120: #363126;
  --color-sand-130: #2b261d;
  --color-sand-140: #1f1c14;
  --color-sand-150: #13110b;

  --ff-display: "Billmake Regular", georgia, serif;

  --fs-1: clamp(1.1rem, 1rem + .5vw,  1.4rem);
  --fs-2: clamp(1.3rem, 1rem + 1vw,   2rem);
  --fs-3: clamp(1.6rem, 1.2rem + 2vw, 3rem);
  --fs-4: clamp(2rem,   1.5rem + 3vw, 4rem);
  --fs-5: clamp(2.8rem, 2rem + 4vw,   5rem);
  --fs-6: clamp(3.5rem, 2.5rem + 5vw, 7rem);
}


/* ============================================================
   2. BASE
   ============================================================ */
html {
  font-size: 16px;
}

body {
  background-color: var(--color-sand-20);
  color:            var(--color-sand-150);
  line-height:      1.5rem;
  font-family:      var(--ff-display);
}

body.page-wishlist {
  background-color: var(--color-mist-30);
}


/* ============================================================
   3. TYPOGRAPHY UTILITIES
   ============================================================ */
.fs--1 {
  font-size: var(--fs-1);
}

.fs--2 {
  font-size: var(--fs-2);
}

.fs--3 {
  font-size:      var(--fs-3);
  text-transform: uppercase;
  line-height:    1.3cap;
  color:          var(--color-mist-900);
  text-align:     center;
}

.fs--4 {
  font-size:      var(--fs-4);
  text-transform: uppercase;
  line-height:    1.3cap;
  color:          var(--color-mist-900);
}

.fs--5 {
  font-size: var(--fs-5);
}

.fs--6 {
  font-size: var(--fs-6);
}


/* ============================================================
   4. LISTS
   ============================================================ */
.bullet-list {
  margin: 0 0 1rem 0;
}

.bullet-list li {
  list-style:    square;
  padding-left:  .65rem;
  margin-bottom: .65rem;
}


/* ============================================================
   5. LAYOUT CONTAINERS
   ============================================================ */
.featured-image:not(.home .featured-image),
.section--qas__container,
.section--booking-form .wp-block-group__inner-container,
.portfolio__grid,
.section--monicas-stats .monicas-stats__container,
.section .wp-block-group__inner-container {
  max-width: var(--content-max-width);
  margin:    0 auto;
  position:  relative;
  z-index:   10;
}

.portfolio__grid {
  position: relative;
  z-index:  10;
}


/* ============================================================
   6. HEADER
   ============================================================ */
.header {
  width:            100%;
  display:          flex;
  align-items:      center;
  justify-content:  center;
  height:           var(--desktop-header-height);
  padding-inline:   2rem;
  background-color: #fff;
  position:         sticky;
  top:              0;
  left:             0;
  z-index:          99;
}

.header .branding {
  width:     6rem;
  position:  absolute;
  top:       1rem;
  transform: translateX(.75rem);
}

.header .branding svg {
  fill: var(--color-black);
}

.header .main-navigation {
  display:         flex;
  gap:             8rem;
  justify-content: center;
}

.header .main-navigation ul {
  display: flex;
  gap:     0;
}

.header .main-navigation ul li {
  list-style:     none;
  font-family:    var(--ff-display);
  font-size:      1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  height:         var(--desktop-header-height);
  position:       relative;
}

.header .main-navigation ul li a {
  color:           var(--color-black);
  text-decoration: none;
  height:          var(--desktop-header-height);
  display:         flex;
  padding-inline:  1rem;
  flex-direction:  column;
  justify-content: center;
  align-items:     center;
  position:        relative;
}

.header .main-navigation ul li a::after {
  content:          "";
  position:         absolute;
  left:             25%;
  bottom:           30%;
  width:            50%;
  height:           2px;
  background-color: var(--color-mist-30);
  transform:        scaleX(0);
  transform-origin: center;
  opacity:          0;
  pointer-events:   none;
  transition:       transform .5s ease-out, opacity .5s ease-out;
}

.is-loaded .header .main-navigation ul li.current-menu-item a::after {
  transform: scaleX(1);
  opacity:   1;
}

.header .section-path-wrap {
  display: none;
}

.mobile-menu-button {
  display: none;
}


.social-navigation {
  position: fixed;
  top: 0;
  right: 1rem;
  bottom: 0;
  height: 100svh;
  z-index: 999;
  align-items: center;
  justify-content: center;
  display: flex;
}

.social-navigation ul {
  display: flex;
  gap: .5rem;
margin: 0;
padding: 0;
flex-direction: column;
align-items: center;
justify-content: center;
}

.social-navigation ul li {
  width: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-navigation ul li a {
  display: block;
}

.social-navigation ul li svg {
  display: block;
  fill: var(--color-mist-140);
}

.social-navigation ul li.ter {
  width: 1.5rem;
}

/* ============================================================
   6. FOOTER
   ============================================================ */
.footer {
  background-color: var(--color-mist-140);
  color: var(--color-mist-50);
  font-size:        .8rem;
  display:          flex;
  justify-content:  space-between;
  padding-inline:   2rem;
  padding-block:    2rem;
}

.footer a {
  color: var(--color-mist-50);
}


/* ============================================================
   7. GENERIC SECTIONS
   ============================================================ */
.section {
  padding-block: 8rem;
  position:      relative;
  overflow:      hidden;
}

.section a {
  color: var(--color-mist-140);
  text-underline-offset: 3px;
  font-weight: bold;
}

.section .wp-block-group__inner-container,
.section .img-container {
  position: relative;
}

.section .wp-block-group__inner-container {
  position: relative;
  z-index:  10;
}

.section:has(.ui-tabs-nav) {
  padding-top: 0;
}

.section:has(.img-container__img--2) {
  padding-bottom: 18rem;
}

.section ul {
  margin: 1rem 0 1rem 1rem;
}

.section ul li {
  list-style: square;
  padding-left: .5rem;
}


/* ============================================================
   8. IMAGE TREATMENTS
   ============================================================ */
.img--arch-top,
.img--arch-top img {
  border-radius: 9999px 9999px 0 0;
}

.section .img-container__img--2 {
  position:      absolute;
  width:         50%;
  border-radius: 9999px 9999px 0 0;
  z-index:       2;
}

.section .img-container__img--2 img {
  border-radius: 9999px 9999px 0 0;
}

.section .img-container__img--left-bottom {
  left:      0;
  bottom:    0;
  transform: translate(-50%, 50%);
}

.section .img-container__img--right-bottom {
  right:     0;
  bottom:    0;
  transform: translate(50%, 25%);
}

.portfolio__img {
  margin-bottom: 2rem;
}


/* ============================================================
   9. CONTENT / RICH TEXT
   ============================================================ */
.content h2 {
  text-transform: uppercase;
  margin:         0 0 1rem;
  line-height:    1;
}

.content p {
  margin-bottom: 1rem;
}

.content .wp-block-image img {
  border:  2px solid #000;
  padding: 1rem;
}


/* ============================================================
   10. TABLES
   ============================================================ */
/* Shared table styles */

.section .wp-block-table {
    backdrop-filter: blur(5px);
}
.section .wp-block-table table {
  width:  100%;
  border: 0;
  margin: 0;
}

.section .wp-block-table th,
.section .wp-block-table td {
  padding:       1rem 2rem;
  font-size:     1.1rem;
  border:        0;
}

.section .wp-block-table tr:last-child td {
  border-bottom: 0;
}

.section .wp-block-table thead {
  border-bottom:    0;
}

.section .wp-block-table thead th {
  font-size:      .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}




/* ============================================================
   11. JQUERY UI / TABS / ACCORDION
   ============================================================ */
.portfolio-tabs__navigation {
  padding-top:      calc(var(--desktop-header-height) * 1.2);
  background-color: var(--color-mist-50);
  position:         relative;
  overflow:         hidden;
}

.portfolio-tabs__navigation .section-path-wrap--path-14 {
  top:    -50%;
  left:   -10px;
  right:  10px;
  height: auto;
}

.portfolio-tabs__navigation .section-path-wrap--path-14 svg {
  stroke: var(--color-mist-60);
}

.portfolio-tabs__navigation ul {
  display:         flex;
  justify-content: center;
  gap:             1rem;
  position:        relative;
  z-index:         10;
}

.portfolio-tabs__navigation ul li {
  list-style:     none;
  font-size:      1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height:    1;
}

.portfolio-tabs__navigation ul li a {
  padding:          1.5rem 3rem;
  display:          block;
  text-decoration:  none;
  color:            var(--color-mist-900);
}

.portfolio-tabs__navigation ul li.ui-tabs-active a {
  background-color: var(--color-sand-20);
}

.portfolio-tabs__panel {
  padding-block: 4rem;
}

.ui-accordion-header {
  padding:         1.5rem 3.5rem 1.5rem 1.5rem;
  cursor:          pointer;
  line-height:     1.3;
  position:        relative;
  display:         flex;
  align-items:     center;
  margin-top:      1rem;
  backdrop-filter: blur(10px);
  border-width: 2px;
  border-style: solid;
}

.ui-accordion-content {
  padding:          1.5rem;
}

.ui-accordion-header-icon {
  width:           1.25rem;
  height:          1.25rem;
  position:        absolute;
  right:           1.5rem;
  display:         flex;
  align-items:     center;
  justify-content: center;
  transition:      transform .5s ease;
}

.ui-accordion-header-active .ui-accordion-header-icon {
  transform: rotate(-225deg);
}

.ui-accordion-header-icon::before,
.ui-accordion-header-icon::after {
  content:          "";
  width:            100%;
  height:           2px;
  display:          block;
  position:         absolute;
}

.ui-accordion-header-icon::after {
  transform: rotate(-90deg);
}

.qa__accordion-answer p:last-child {
margin-bottom: 0;
}


/* ============================================================
   12. HOME PAGE
   ============================================================ */

   .home .home__container {
    width: 100%;
    height: 100svh;
    position: fixed;
    inset: 0;
    z-index: 2
   }

.home .featured-image {
  position: fixed;
  inset:    0;
  width:    100%;
  height:   100svh;
  z-index:  0;
}

.home .featured-image__image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100svh;
}

.home .featured-image__image img {
  display: block;
}

.home .featured-image__image--1 {
    z-index: 1;
}

.home .featured-image__image--1 img {
  transform-origin: center center;
  transform: scale(3);
  filter: blur(20px);
  transition: transform 1.5s ease-out, filter 1.5s ease;
}

.is-loaded .featured-image__image--1 img {
  transform: scale(1);
  filter: blur(0px);
  
}

.home .featured-image__image--2 {
    z-index: 3;
    opacity: 0;
    transition: opacity .5s ease;
    transition-delay: 1.33s;
}

.is-loaded .featured-image__image--2 {
  opacity: 1;
}

.home .featured-image img {
  width:           100%;
  height:          100%;
  object-fit:      cover;
  object-position: 50% 50%;
}

.home .featured-image .section-path-wrap {
    z-index: 2;
    transform: scale(1.1);
    opacity: 0;
    transition: transform 2s ease-out, opacity 1s ease;
}

.is-loaded .featured-image .section-path-wrap {
  opacity: 1;
  transform: scale(1);
}

.home .section-path-wrap--path-19 {
  left: -30%;
  top: -10px;
}

.home .section-path-wrap--path-25 {
  left:10%;
  top: -10%;
}

.home .section-path-wrap--path-8 {
  right: -35%;
  top: -10px;
  height: 100%;
  width: auto;
}

.home .section-path-wrap--path-24 {
  left: -10%;
  top: -10%;
  width: 33%;
}

.home .section-path-wrap--path-12 {
  right: -10px;
  bottom: 10%;
  left: -10px;
}

.home .featured-image .section-path-wrap svg {
    stroke: var(--color-sand-80);
    stroke-width: 2px;
}

.home .home__content {
  width:           50vw;
  height:          65svh;
  position:        absolute;
  top:             0;
  right:           0;
  z-index:         10;
  color:           var(--color-sand-100);
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-direction: column;
  z-index: 990;
  color: #fff;
    text-align: center;
}

.home .wp-block-buttons {
    margin-top: 1.5rem;
      display:         flex;
  align-items:     center;
  justify-content: center;
}

.home .wp-block-button {
    width: 85%;
}

.home__content-container {
    width: 50%;
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 1s ease, transform 1s ease;
    transition-delay: 2s;
}


.is-loaded .home__content-container {
  opacity: 1;
  transition: translateY(0);
}
.home .home__content p {
  font-size:   1.3rem;
  line-height: 1.3;
  color: #fff;
}

.home .home__branding {
  width: 85%;
  margin: 0 auto 1rem
}

.home .home__content .wp-block-button__link {
  border:           2px solid var(--color-sand-100);
  background-color: rgba(0, 0, 0, .35);
  border-radius:    9999px;
  text-transform:   uppercase;
  letter-spacing:   2px;
  backdrop-filter:  blur(10px);
  display: block;
}


/* ============================================================
   13. ABOUT PAGE
   ============================================================ */
.page-about .section--intro {
  padding-block:    4rem;
}

.page-about .section--intro p {
  font-size:   1.4em;
  line-height: 1.5;
}

.page-about .section--2 .section-path-wrap--path-11 {
  bottom: 0;
  width:  100%;
  height: auto;
}


.page-about .section--3 {
    padding-top: 2rem;
}

.page-about .section--3 .section-path-wrap--path-12 {
  bottom: 8%;
  width:  100%;
  height: auto;
}



/* ============================================================
   14. SECTION VARIATIONS
   ============================================================ */

.section--rates .wp-block-table {
  margin: 2rem 0;
}



.section--rates .wp-block-table tr:last-child td {
  border-bottom: 0;
}

.section--details {
  padding-block:    4rem 6rem;
}

.section--details h2 {
  margin-bottom: 3rem;
}

.section--monicas-stats h2 {
  margin-bottom: 2rem;
  text-align:    left;
}

.section--monicas-stats table th,
.section--monicas-stats table td {
  font-size: 1.2em;
}

.section--qas .section-path-wrap--path-17 {
  right: -10px;
  top:   -10px;
  left:  -10px;
}


/* ============================================================
   16. PORTFOLIO SECTION PATHS
   ============================================================ */
.section--portfolio .section-path-wrap--path-15 {
  top:   -10px;
  left:  -10%;
  width: 25%;
}

.section--portfolio .section-path-wrap--path-16 {
  width: 20%;
  top:   15%;
  right: -10%;
}

.section--portfolio .section-path-wrap--path-12 {
  bottom: 5%;
  left:   -10px;
  right:  -10px
}


/* ============================================================
   17. SECTION PATHS / DECORATIVE SVG LINES
   ============================================================ */
.section-path-wrap {
  position:       absolute;
  z-index:        0;
  pointer-events: none;
}

.section-path-wrap svg {
  display:      block;
  width:        100%;
  height:       auto;
  stroke-width: 2px;
  fill:         none;
  stroke:       #000;
}

.section-path-wrap svg path {
  vector-effect: non-scaling-stroke;
}

.section-path-wrap--path-5 {
  top:   -10px;
  left:  -10px;
  width: 45%;
}

.section-path-wrap--path-6 {
  bottom: -10px;
  right:  -10px;
  width:  50%;
}

.section-path-wrap--path-7 {
  top:    -10px;
  left:   -10%;
  width:  auto;
  height: 75%;
}

.section-path-wrap--path-10 {
  top:    -10px;
  right:  -12%;
  height: 150%;
  width:  auto;
}



/* ============================================================
   18. SECTION-SPECIFIC PATH OVERRIDES
   ============================================================ */
.section--rates .section-path-wrap--path-17 {
  bottom: 10%;
  left:   -10%;
  right:  -10%;
}


.section--details .section-path-wrap--path-18 {
  top:   -10px;
  left:  -10px;
  width: 12%;
}


/* ============================================================
   19. SECTION THEMES
   ============================================================ */

/* MIST THEME */

.section__theme--mist {
    background-color: var(--color-mist-30);
}

.section__theme--mist a {
  color: var(--color-mist-140);
}

.section__theme--mist .wp-block-button__link {
    color: var(--color-mist-30);
}

.section__theme--mist .wp-block-image img {
    border-color: var(--color-mist-50);
    background-color: var(--color-mist-30);
}

.section__theme--mist .section-path-wrap svg {
    stroke: var(--color-mist-50);
}

.section__theme--mist .wp-block-table {
    border: 2px solid var(--color-mist-50);
    background-color: color-mix(in srgb, var(--color-mist-10) 20%, transparent);
}

.section__theme--mist .wp-block-table th {
    background-color: var(--color-mist-50);
}

.section__theme--mist .wp-block-table th,
.section__theme--mist .wp-block-table td {
    border-bottom: 1px solid var(--color-mist-50);
}

/* MIST DARK THEME */

.section__theme--mist-dark {
    background-color: var(--color-mist-120);
    color: var(--color-mist-10);
}

.section__theme--mist-dark  .wp-block-image img {
    border-color: var(--color-mist-100);
}

.section__theme--mist-dark  .section-path-wrap--path-1 {
    bottom: -3%;
    left: -10px;
    right: -10px;
}

.section__theme--mist-dark  .section-path-wrap--path-23 {
    top: -10%;
    right: -10%;
    width: 40%;
}

.section__theme--mist-dark  .section-path-wrap--path-9 {
    top: -10%;
    left: -5%;
    width: 15%;
}

.section__theme--mist-dark  .section-path-wrap svg {
    stroke: var(--color-mist-100);
}



.section__theme--mist-dark  .wp-block-table {
    background-color: color-mix(in srgb, var(--color-mist-60) 10%, transparent);
}

.section__theme--mist-dark  .wp-block-table thead th {
    background-color: var(--color-mist-50);
    text-align: left;
}

.section__theme--mist-dark  .wp-block-table th,
.section__theme--mist-dark  .wp-block-table td {
    text-align: left;
    border-bottom: 2px solid var(--color-mist-120);
}

/* SAND THEME */

.section__theme--sand {
    background-color: var(--color-sand-20);
}

.section__theme--sand .wp-block-image img {
    border-color: var(--color-sand-30);
}

.section__theme--sand .section-path-wrap svg {
    stroke: var(--color-sand-30);
}

.section__theme--sand .wp-block-table {
    border: 2px solid var(--color-sand-40);
    background-color: color-mix(in srgb, var(--color-sand-20) 80%, transparent);
}

.section__theme--sand .wp-block-table th {
    background-color: var(--color-sand-40);
}

.section__theme--sand .wp-block-table th,
.section__theme--sand .wp-block-table td {
    border-bottom: 1px solid var(--color-sand-30);
}

.section__theme--sand .ui-accordion-header {
  border-color: var(--color-sand-30);
  background-color: color-mix(in srgb, var(--color-sand-40) 20%, transparent);
}

.section__theme--sand .ui-accordion-content {
  background-color: var(--color-sand-10);
  border: 2px solid var(--color-sand-30);
  border-top: 0;
}

.section__theme--sand .ui-accordion-header-icon::before,
.section__theme--sand .ui-accordion-header-icon::after {
    background-color: var(--color-sand-140);
}

#gform_wrapper_1 .gform_heading {
  display: none !important;
}

.gform-theme--foundation .gform_fields {
  column-gap: 3rem !important;
}


.gform-theme--framework .gfield--input-type-datepicker .ginput_container_date input {
  --gf-local-width: 100% !important;
  width: var(--gf-local-width);
}


@media (max-width: 768px) {

  .mobile-menu-button {
    display: flex;
    width: var(--desktop-header-height);
    height: var(--desktop-header-height);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background-color: transparent;
  }

    .mobile-menu-button .bars {
      width: 1.5rem;
      height: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      position: relative;
    }

    .mobile-menu-button .bars .bar {
      width: 100%;
      height: 1.5px;
      background-color: var(--color-mist-140);
      transition: transform 0s ease;
    }

    .menu-active .mobile-menu-button .bar {
      position: absolute;
      transition: transform .65s ease;
      
    }

   .menu-active .mobile-menu-button .bar--1 {
transform: rotate(45deg);
    }

     .menu-active .mobile-menu-button .bar--2 {
transform: rotate(-45deg);
    }

    .menu-active .mobile-menu-button .bar--3 {
      opacity: 0;
    }


.header .main-navigation {
    width: 100%;
    height: 100svh;
    inset: 0;
z-index: 9999;
position: fixed;
flex-direction: column;
background-color: var(--color-mist-60);
gap: 0;
clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
transition: clip-path .15s ease;

  }

  .main-navigation ul {
    flex-direction: column;
  }

  

      .header .main-navigation ul li {
        font-size: 2rem;
      }

    .header .main-navigation ul li,
  .header .main-navigation ul li a {
    height: auto;
  }

  .header .main-navigation ul li a {
    padding: 1rem 0;
  }

  .header .main-navigation ul li a::after {
    display: none;
  }

  .menu-active .main-navigation {
    transition: clip-path .65s ease;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  .main-navigation .section-path-wrap {
    display: block;
  }

  .main-navigation .section-path-wrap svg path {
    stroke-width: 1px;
    stroke: var(--color-mist-110);
  }

  .main-navigation .section-path-wrap--path-3 {
    bottom: 2rem;
    left: -10px;
    right: -10px;
  }

  .section {
    padding-inline: 1rem;
  }

    .main-navigation .section-path-wrap--path-6 {
    left: -2%;
    top: -2%;
  }

}