
/* ========================================================================== 
    MAIN STYLESHEET ENTRY POINT
    --------------------------------------------------------------------------
    Architecture order:
    1. Settings (variables, mixins)
    2. Base (reset, utilities, animation)
    3. Layout
    4. Components
    5. Pages
    ========================================================================== */
/*------------------------------------------------------------ 
  1. Settings
------------------------------------------------------------*/
/*  ==========================================================================
    VARIABLES
    --------------------------------------------------------------------------
    Centralized design tokens:
        - Color system
        - Typography scale
        - Breakpoints for responsive design
    ==========================================================================
*/
/*  ==========================================================================
    1. COLOR SYSTEM
    --------------------------------------------------------------------------
    CSS variables for global theming.
    Enables dynamic themes (light/dark) and runtime updates.
    ==========================================================================
*/
:root {
  --color-primary: #AC6E66;
  --color-secondary: #F7C6D0;
  --color-border: #E9DED6;
  --color-background: #FEFDFC;
  --color-text: #4A3A35;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-gray: #7A6F6B;
  --color-gold: #C09A70;
}

/*  ==========================================================================
    2. TYPOGRAPHY
    --------------------------------------------------------------------------
    SCSS font variables used across the project typography system.
    ==========================================================================
*/
/*  ==========================================================================
    3. BREAKPOINTS
    --------------------------------------------------------------------------
    Breakpoints are based on layout width, not specific devices.
    Use with responsive mixins (sp, tab, pc) or breakpoint().
    ==========================================================================
*/
/*  ==========================================================================
    MIXINS
    Purpose: Reusable mixins for responsive design, layout, and typography
    ==========================================================================
*/
/*  ==========================================================================
    1. RESPONSIVE MEDIA QUERY MIXINS
    --------------------------------------------------------------------------
    Dependencies:
        - $bp-sp, $bp-tab, $bp-pc must be defined in `_variables.scss`

    Usage Examples:
        @include sp { ... }          // small devices  (max-width: $bp-sp)
        @include tab { ... }         // tablets        (max-width: $bp-tab)
        @include breakpoint(768);    // custom px breakpoint
        @include breakpoint('tab');  // named breakpoint
    ==========================================================================
*/
/*
    Flexible breakpoint mixin
    Accepts:
        - string ('sp', 'tab', 'pc')
        - number (px value)
*/
/*  ==========================================================================
    2. LAYOUT UTILITIES
    --------------------------------------------------------------------------
    Provides width-constrained container with responsive side paddings
    --------------------------------------------------------------------------
    @param {Number} $maxWidth – maximum container width in px
    ==========================================================================
*/
/*  ==========================================================================
    3. TYPOGRAPHY UTILITIES
    ==========================================================================
*/
/* 
    Multiline text truncation with ellipsis
    --------------------------------------------------------------------------
    @param {Number} $lines – number of visible lines before truncating
*/
/* 
    Calculate line-height based on pixel values
    Produces more accurate line-height ratios
    --------------------------------------------------------------------------
    @param {Number} $lineHeightPx – desired line height in px
    @param {Number} $fontSizePx   – font size in px
*/
/*------------------------------------------------------------ 
  2. Base styles
------------------------------------------------------------*/
/*  ==========================================================================
    RESET – Normalize default styles across browsers
    ==========================================================================
*/
/* 
    Global box-sizing setting 
    Ensures padding and border are included in element's total width/height 
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 
    Remove default margin, padding, borders, and inherit font 
    Applies broad reset to ensure consistent rendering across browsers 
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* 
    Correct HTML5 block-level element display in older browsers 
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

/* 
    HTML root defaults 
    - Set base font-size for REM scaling
    - Smooth scroll on touch devices
    - Custom scrollbar styling
*/
html {
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
}
html::-webkit-scrollbar {
  width: 7px;
  background: none;
}
html::-webkit-scrollbar-thumb {
  background: var(--color-primary);
}

/* 
    Heading default styling 
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.5;
}

/* 
    Reset blockquote and quotation marks 
*/
blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: "";
}

/* 
    Remove default list styles 
*/
ol,
ul {
  list-style: none;
}

/* 
    Link reset 
    - Inherit color
    - Disable underline
    - Smooth hover transitions
*/
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  transition: 0.3s ease;
}
a img {
  transition: inherit;
}

/* 
    Hover & focus state
*/
a:hover,
a:focus {
  opacity: 0.7;
}

/* 
    Disable "tel:" clickable links on desktop 
    Useful when phone links should only work on mobile 
*/
a[href^=tel] {
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  a[href^=tel] {
    pointer-events: auto;
  }
}
/* 
    Image defaults 
    - Prevent overflow
    - Fix baseline alignment issues
*/
img {
  max-width: 100%;
  display: block;
}

/* 
    Form element reset 
    Ensures consistent typography and removes browser styles 
*/
input,
button,
select,
textarea {
  font: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

/*  ==========================================================================
    SCROLL ANIMATION – Fade In / Fade Up / Fade Down
    --------------------------------------------------------------------------
    Provides smooth fade + slide animations when elements enter viewport.

    Classes:
        .fade-in      – Fade only
        .fade-up      – Fade + slide up from below
        .fade-down    – Fade + slide down from above
        .fade-group   – Wrapper enabling staggered animation for children
        .active       – Added by JS when element becomes visible

    Example:
        <ul class="fade-group">
            <li class="fade-up">Item 1</li>
            <li class="fade-up">Item 2</li>
        </ul>
    ==========================================================================
*/
.fade-in,
.fade-up,
.fade-down {
  opacity: 0;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.fade-group:nth-of-type(1),
.fade-up.fade-group:nth-of-type(1),
.fade-down.fade-group:nth-of-type(1) {
  transition-delay: 0.2s;
}
.fade-in.fade-group:nth-of-type(2),
.fade-up.fade-group:nth-of-type(2),
.fade-down.fade-group:nth-of-type(2) {
  transition-delay: 0.4s;
}
.fade-in.fade-group:nth-of-type(3),
.fade-up.fade-group:nth-of-type(3),
.fade-down.fade-group:nth-of-type(3) {
  transition-delay: 0.6s;
}
.fade-in.fade-group:nth-of-type(4),
.fade-up.fade-group:nth-of-type(4),
.fade-down.fade-group:nth-of-type(4) {
  transition-delay: 0.2s;
}
.fade-in.fade-group:nth-of-type(5),
.fade-up.fade-group:nth-of-type(5),
.fade-down.fade-group:nth-of-type(5) {
  transition-delay: 0.4s;
}
.fade-in.fade-group:nth-of-type(6),
.fade-up.fade-group:nth-of-type(6),
.fade-down.fade-group:nth-of-type(6) {
  transition-delay: 0.6s;
}
.fade-in.fade-group:nth-of-type(7),
.fade-up.fade-group:nth-of-type(7),
.fade-down.fade-group:nth-of-type(7) {
  transition-delay: 0.2s;
}
.fade-in.fade-group:nth-of-type(8),
.fade-up.fade-group:nth-of-type(8),
.fade-down.fade-group:nth-of-type(8) {
  transition-delay: 0.4s;
}
.fade-in.fade-group:nth-of-type(9),
.fade-up.fade-group:nth-of-type(9),
.fade-down.fade-group:nth-of-type(9) {
  transition-delay: 0.6s;
}
.fade-in.fade-group:nth-of-type(10),
.fade-up.fade-group:nth-of-type(10),
.fade-down.fade-group:nth-of-type(10) {
  transition-delay: 0.2s;
}
.fade-in.fade-group:nth-of-type(11),
.fade-up.fade-group:nth-of-type(11),
.fade-down.fade-group:nth-of-type(11) {
  transition-delay: 0.4s;
}
.fade-in.fade-group:nth-of-type(12),
.fade-up.fade-group:nth-of-type(12),
.fade-down.fade-group:nth-of-type(12) {
  transition-delay: 0.6s;
}

/* 
    Fade Left / Right
*/
.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: transform 2.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: transform 2.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 
    Slide direction presets 
*/
.fade-up {
  transform: translateY(30px);
}

.fade-down {
  transform: translateY(-30px);
}

/* 
    Active state 
    Triggered by JavaScript when element enters viewport 
*/
.fade-in.active,
.fade-up.active,
.fade-down.active,
.fade-left.active,
.fade-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

/*  ==========================================================================
    UTILITIES – RESPONSIVE CONTAINERS & COMMON UTILITY CLASSES
    --------------------------------------------------------------------------
    Purpose:
        - Provide fixed-width responsive containers
        - Include helper utilities for visibility, text colors, and link scaling

    Dependencies:
        - Mixin: blockWidth()
        - Variables: $bp-tab, $bp-sp
    ==========================================================================
*/
.u-container--1366 {
  width: calc(100% - 100px);
  max-width: 1366px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .u-container--1366 {
    width: calc(100% - 80px);
  }
}
@media (max-width: 768px) {
  .u-container--1366 {
    width: calc(100% - 40px);
  }
}

.u-container--1200 {
  width: calc(100% - 100px);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .u-container--1200 {
    width: calc(100% - 80px);
  }
}
@media (max-width: 768px) {
  .u-container--1200 {
    width: calc(100% - 40px);
  }
}

.u-container--960 {
  width: calc(100% - 100px);
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .u-container--960 {
    width: calc(100% - 80px);
  }
}
@media (max-width: 768px) {
  .u-container--960 {
    width: calc(100% - 40px);
  }
}

.u-container--800 {
  width: calc(100% - 100px);
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .u-container--800 {
    width: calc(100% - 80px);
  }
}
@media (max-width: 768px) {
  .u-container--800 {
    width: calc(100% - 40px);
  }
}

/*  ==========================================================================
    2. LINK SCALE EFFECT
    --------------------------------------------------------------------------
    Provides smooth zoom-on-hover effect for images inside a link wrapper
    Usage:
        <a class="_linkscale"><img ...></a>
    ==========================================================================
*/
.u-link-scale {
  display: block;
  overflow: hidden;
}
.u-link-scale img {
  transition: 0.3s ease-in-out;
}
.u-link-scale:hover {
  text-decoration: none;
}
.u-link-scale:hover img {
  transform: scale(1.05);
}

/*  ==========================================================================
    3. DEVICE VISIBILITY UTILITIES
    --------------------------------------------------------------------------
    .is-pc – visible on desktop, hidden on tablet/mobile
    .is-sp – hidden on desktop, visible on tablet/mobile
    ==========================================================================
*/
@media (max-width: 1024px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media (max-width: 1024px) {
  .is-sp {
    display: block;
  }
}

/*  ==========================================================================
    4. TEXT COLOR & FONT UTILITIES
    ==========================================================================
*/
.u-red {
  color: #B70E0E;
}

.u-bold {
  font-weight: 700;
}

/*------------------------------------------------------------ 
  3. Layout
------------------------------------------------------------*/
/*  ==========================================================================
    BODY
    ==========================================================================
*/
body {
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  font-family: "Inter", sans-serif;
  color: var(--color-primary);
  line-height: 1.6;
  background-color: var(--color-background);
  text-size-adjust: 100%;
  min-height: 100%;
  min-width: 320px;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 768px) {
  body {
    min-width: 320px;
  }
}
body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

/*  ==========================================================================
    HEADER
    ==========================================================================
*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}
.l-header.-init {
  background-color: transparent;
  backdrop-filter: blur(0);
}
@media (max-width: 768px) {
  .l-header {
    height: 70px;
  }
}
.l-header__container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo {
  width: 110px;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .l-header__logo {
    width: 90px;
  }
}
.l-header__logo img {
  width: 100%;
  height: 100%;
}

/*  ==========================================================================
    NAV
    ==========================================================================
*/
.l-nav {
  height: 100%;
}
@media (max-width: 1024px) {
  .l-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: flex-end;
    align-items: start;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .l-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.l-nav__container {
  height: 100%;
}
@media (max-width: 1024px) {
  .l-nav__container {
    position: relative;
    z-index: 1;
    max-width: 300px;
    width: 100%;
    background: linear-gradient(135deg, #FAFAFA 0%, #F0F0F0 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding: 70px 40px 140px;
  }
}
@media (max-width: 768px) {
  .l-nav__container {
    padding: 60px 20px 120px;
  }
}
.l-nav__list {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 35px;
}
@media (max-width: 1024px) {
  .l-nav__list {
    height: calc(100dvh - 70px - 140px);
    overflow-y: auto;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 0;
  }
}
.l-nav__item {
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .l-nav__item {
    width: 100%;
    height: auto;
    display: block;
  }
}
@media (max-width: 1024px) {
  .l-nav__item .c-btn-booking {
    width: 100%;
    margin-top: 15px;
  }
}
.l-nav__link {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.25;
}
@media (max-width: 1024px) {
  .l-nav__link {
    width: 100%;
    height: auto;
    justify-content: start;
    padding: 20px 0;
  }
}
@media (max-width: 768px) {
  .l-nav__link {
    padding: 15px 0;
  }
}
.l-nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 0.5px;
  background: var(--color-primary);
  transition: transform 0.3s ease;
}
@media (max-width: 1024px) {
  .l-nav__link::after {
    display: none;
  }
}
.l-nav__link:hover {
  opacity: 1;
}
@media (max-width: 1024px) {
  .l-nav__link:hover {
    opacity: 0.7;
  }
}
.l-nav__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.l-nav__link .l-nav__icon {
  position: relative;
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-left: 10px;
}
.l-nav__link .l-nav__icon::before, .l-nav__link .l-nav__icon::after {
  content: "";
  position: absolute;
  background-color: var(--color-primary);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.l-nav__link .l-nav__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}
.l-nav__link .l-nav__icon::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}
.l-nav__item--has-sub {
  position: relative;
}
@media (max-width: 1024px) {
  .l-nav__item--has-sub:hover .l-nav__link {
    opacity: 1;
  }
}
.l-nav__item--has-sub:hover .l-nav__link::after {
  transform: translateX(-50%) scaleX(1);
}
@media (max-width: 1024px) {
  .l-nav__item--has-sub:hover .l-nav__link::after {
    transform: unset;
  }
}
.l-nav__item--has-sub:hover .l-nav__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
@media (max-width: 1024px) {
  .l-nav__item--has-sub:hover .l-nav__icon::after {
    transform: unset;
    opacity: 1;
  }
}
.l-nav__item--has-sub:hover .l-nav__sublist {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.l-nav__item--has-sub.is-active .l-nav__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
@media (max-width: 1024px) {
  .l-nav__item--has-sub.is-active .l-nav__sublist {
    max-height: 500px;
  }
}
.l-nav__sublist {
  position: absolute;
  top: 100%;
  left: 0;
  width: 265px;
  height: auto;
  padding: 20px;
  background: var(--color-primary);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1024px) {
  .l-nav__sublist {
    position: relative;
    top: 0;
    width: 100%;
    padding: 0 10px;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  }
}
.l-nav__subitem:not(:first-child) {
  margin-top: 10px;
}
.l-nav__sublink {
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.4285714286;
}
@media (max-width: 1024px) {
  .l-nav__sublink {
    font-size: 1.2rem;
    color: var(--color-primary);
  }
}

/*  ==========================================================================
    HAMBURGER
    ==========================================================================
*/
.c-hamburger {
  display: none;
}
@media (max-width: 1024px) {
  .c-hamburger {
    position: fixed;
    top: 0;
    right: 0;
    width: 30px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    z-index: 10;
    transition: opacity 0.3s ease;
  }
  .c-hamburger:hover {
    opacity: 0.7;
  }
  .c-hamburger__line {
    width: 100%;
    height: 1px;
    background-color: var(--color-primary);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, background-color 0.3s ease;
  }
  .c-hamburger.is-close .c-hamburger__line:nth-child(1) {
    transform: rotate(30deg) translate(4px, 7.5px);
  }
  .c-hamburger.is-close .c-hamburger__line:nth-child(2) {
    opacity: 0;
  }
  .c-hamburger.is-close .c-hamburger__line:nth-child(3) {
    transform: rotate(-30deg) translate(4px, -7.5px);
  }
}

/*  ==========================================================================
    FOOTER
    ==========================================================================
*/
.l-footer {
  background-color: var(--color-white);
  border-top: 1px solid rgba(216, 185, 138, 0.6);
}
.l-footer__container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  column-gap: 50px;
  padding: 120px 0;
}
@media (max-width: 1024px) {
  .l-footer__container {
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .l-footer__container {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 40px;
  }
}
.l-footer__map {
  position: relative;
  padding-bottom: 64.25%;
  height: 0;
  overflow: hidden;
  border: 2px solid rgba(216, 185, 138, 0.6);
  border-radius: 20px;
}
.l-footer__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.l-footer__social {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 15px;
}
.l-footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .l-footer__social-link {
    width: 34px;
    height: 34px;
  }
}
.l-footer__social-link.is-facebook {
  background: linear-gradient(180deg, #F6E7C8 0%, #D8B98A 50%, #BFA074 100%);
}
.l-footer__social-link.is-facebook img {
  width: 21px;
  height: auto;
}
@media (max-width: 768px) {
  .l-footer__social-link.is-facebook img {
    width: 17px;
  }
}
.l-footer__social-link.is-mail {
  background: linear-gradient(180deg, #F6E7C8 0%, #D8B98A 50%, #BFA074 100%);
}
.l-footer__social-link.is-mail svg {
  width: 21px;
  height: auto;
  stroke: var(--color-white);
}
@media (max-width: 768px) {
  .l-footer__social-link.is-mail svg {
    width: 17px;
  }
}
.l-footer__contact {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .l-footer__contact {
    margin-top: 20px;
  }
}
.l-footer__item {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(216, 185, 138, 0.3);
}
@media (max-width: 768px) {
  .l-footer__item {
    column-gap: 15px;
    padding: 15px 0;
  }
}
.l-footer__item:last-child {
  border-bottom: none;
}
.l-footer__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(216, 185, 138, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .l-footer__icon {
    width: 38px;
    height: 38px;
  }
}
.l-footer__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-gold);
}
@media (max-width: 768px) {
  .l-footer__icon svg {
    width: 20px;
    height: 20px;
  }
}
.l-footer__text {
  width: calc(100% - 44px - 20px);
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.3;
}
@media (max-width: 768px) {
  .l-footer__text {
    width: calc(100% - 38px - 15px);
    font-size: 1.5rem;
  }
}
.l-footer__actions {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .l-footer__actions {
    margin-top: 20px;
  }
}

/*------------------------------------------------------------ 
  4. Components
------------------------------------------------------------*/
/*  ==========================================================================
    BUTTON
    ==========================================================================
*/
.c-btn-booking {
  width: 180px;
  height: 50px;
  background: linear-gradient(180deg, #D9B1AA 0%, #C79289 35%, #B97A72 70%, #AC6E66 100%);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 12px;
  position: relative;
  overflow: hidden;
}
.c-btn-booking::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, var(--color-secondary) 50%, transparent 100%);
  opacity: 0.4;
  transform: skewX(-20deg);
  animation: shimmer 2.5s infinite linear;
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%) skewX(-20deg);
  }
  100% {
    transform: translateX(300%) skewX(-20deg);
  }
}
.c-btn-booking__text {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1;
}
@media (max-width: 768px) {
  .c-btn-booking__text {
    font-size: 1.4rem;
  }
}
.c-btn-booking__icon {
  width: 20px;
  height: 20px;
}
.c-btn-booking__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-white);
}

.c-btn-detail {
  max-width: 140px;
  width: 100%;
  height: 40px;
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 15px;
  padding: 0 30px;
}
@media (max-width: 1024px) {
  .c-btn-detail {
    column-gap: 10px;
  }
}
.c-btn-detail:hover {
  opacity: 1;
  background-color: var(--color-primary);
}
.c-btn-detail:hover .c-btn-detail__text {
  color: var(--color-white);
}
.c-btn-detail:hover .c-btn-detail__icon svg {
  stroke: var(--color-white);
}
.c-btn-detail__text {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
}
@media (max-width: 768px) {
  .c-btn-detail__text {
    font-size: 1.4rem;
  }
}
.c-btn-detail__icon {
  width: 20px;
  height: 20px;
}
.c-btn-detail__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-primary);
}

.c-btn-view-all {
  max-width: 180px;
  width: 100%;
  height: 50px;
  background: linear-gradient(180deg, #FFF7F5 0%, #FFE9E0 100%);
  border: 1px solid #F6D5C8;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 12px;
  padding: 0 30px;
}
.c-btn-view-all__text {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1;
}
@media (max-width: 768px) {
  .c-btn-view-all__text {
    font-size: 1.4rem;
  }
}
.c-btn-view-all__icon {
  width: 20px;
  height: 20px;
}
.c-btn-view-all__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-text);
}

/*  ==========================================================================
    TEXT
    ==========================================================================
*/
.c-heading {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  font-weight: 400;
  background: linear-gradient(180deg, #F6E7C8 0%, #D8B98A 50%, #BFA074 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .c-heading {
    font-size: 2.6rem;
    line-height: 1.2307692308;
  }
}

.c-sub-heading {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.125;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .c-sub-heading {
    font-size: 2.6rem;
    line-height: 1.3076923077;
  }
}

.c-no-posts {
  text-align: center;
  margin-top: 20px;
}

/*------------------------------------------------------------ 
  5. Pages
------------------------------------------------------------*/
/*  ==========================================================================
    TOP PAGE
    ==========================================================================
*/
.c-mv__container {
  position: relative;
}
.c-mv__content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 50%;
  height: 100dvh;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.9) 55%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0.7) 65%, rgba(255, 255, 255, 0.6) 70%, rgba(255, 255, 255, 0.5) 75%, rgba(255, 255, 255, 0.4) 80%, rgba(255, 255, 255, 0.3) 85%, rgba(255, 255, 255, 0.2) 90%, rgba(255, 255, 255, 0.1) 95%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 120px 0 120px 50px;
}
@media (max-width: 1024px) {
  .c-mv__content {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .c-mv__content {
    width: 100%;
    padding: 100px 20px;
  }
}
.c-mv__title {
  background: linear-gradient(180deg, #F6E7C8 0%, #D8B98A 50%, #BFA074 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Playfair Display", serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.025em;
}
@media (max-width: 768px) {
  .c-mv__title {
    font-size: 2.6rem;
    margin: 0 auto;
  }
}
.c-mv__lead {
  font-family: "Playfair Display", serif;
  font-size: 3.6rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .c-mv__lead {
    font-size: 2.6rem;
    text-align: center;
  }
}
.c-mv__actions {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .c-mv__actions {
    margin: 40px auto 0;
  }
}
.c-mv__features {
  display: grid;
  grid-template-columns: 163px 163px 163px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .c-mv__features {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
  }
}
.c-mv__feature {
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  row-gap: 12px;
  padding: 20px 20px;
}
@media (max-width: 768px) {
  .c-mv__feature {
    justify-content: center;
    align-items: center;
    padding: 10px 10px;
  }
}
.c-mv__feature:first-child {
  padding-left: 0;
}
.c-mv__feature:last-child {
  border-right: none;
  padding-right: 0;
}
.c-mv__feature-icon {
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .c-mv__feature-icon {
    width: 26px;
    height: 26px;
  }
}
.c-mv__feature-icon svg {
  width: 100%;
  height: 100%;
}
.c-mv__feature-label {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .c-mv__feature-label {
    text-align: center;
  }
}
.c-mv__background {
  width: 100%;
  height: 100dvh;
}
.c-mv__swiper {
  width: 100%;
  height: 100%;
}
.c-mv__swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.c-mv__swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.1);
}
.c-mv .swiper-slide-active img,
.c-mv .swiper-slide-duplicate-active img,
.c-mv .swiper-slide-prev img {
  transition: transform 16s;
  transform: scale(1);
}
.c-mv__scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 92px;
  height: 40px;
  z-index: 10;
}
@media (max-width: 1024px) {
  .c-mv__scroll {
    bottom: 20px;
    right: 20px;
  }
}
@media (max-width: 768px) {
  .c-mv__scroll {
    width: 2px;
    height: 60px;
  }
}
.c-mv__scroll-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 15px 0 0 15px;
}
@media (max-width: 768px) {
  .c-mv__scroll-container {
    padding: 0;
  }
}
.c-mv__scroll-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 40px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .c-mv__scroll-container::before {
    height: 60px;
  }
}
.c-mv__scroll-container::after {
  content: "";
  position: absolute;
  top: 12px;
  left: -2px;
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  animation: scroll-dot-pc 1.5s linear infinite;
}
@media (max-width: 768px) {
  .c-mv__scroll-container::after {
    animation: scroll-dot-sp 1.5s linear infinite;
  }
}
@keyframes scroll-dot-pc {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    top: 32px;
    opacity: 1;
  }
  100% {
    top: 40px;
    opacity: 0;
  }
}
@keyframes scroll-dot-sp {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    top: 52px;
    opacity: 1;
  }
  100% {
    top: 60px;
    opacity: 0;
  }
}
.c-mv__scroll-text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .c-mv__scroll-text {
    display: none;
  }
}

.c-services {
  background-color: var(--color-background);
}
.c-services__container {
  position: relative;
  padding: 120px 0 60px;
}
@media (max-width: 768px) {
  .c-services__container {
    padding: 100px 0 50px;
  }
}
.c-services__head {
  text-align: center;
}
.c-services__content {
  margin-top: 60px;
}
.c-services__item {
  border-radius: 20px;
  background-color: var(--color-white);
}
.c-services__image {
  width: 100%;
  aspect-ratio: 3/2.3;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.c-services__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.c-services__info {
  position: relative;
  border-left: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 20px;
}
.c-services__title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.6666666667;
  letter-spacing: 0.025em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-services__description {
  min-height: 36px;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 10px;
}
.c-services__actions {
  margin-top: 25px;
}
.c-services__paginate-prev, .c-services__paginate-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.c-services__paginate-prev {
  left: 0;
}
.c-services__paginate-next {
  right: 0;
}
.c-services__swiper-button-prev, .c-services__swiper-button-next {
  position: relative;
  width: 45px;
  height: 45px;
  background-color: var(--color-white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
}
@media (max-width: 768px) {
  .c-services__swiper-button-prev, .c-services__swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.c-services__swiper-button-prev:hover, .c-services__swiper-button-next:hover {
  opacity: 0.7;
}
.c-services__swiper-button-prev svg, .c-services__swiper-button-next svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
}
@media (max-width: 768px) {
  .c-services__swiper-button-prev svg, .c-services__swiper-button-next svg {
    width: 15px;
    height: 15px;
  }
}
.c-services__swiper-button-prev.swiper-button-disabled {
  pointer-events: none;
}
.c-services__swiper-button-prev.swiper-button-disabled svg {
  stroke: #ccc;
}
.c-services__swiper-button-next.swiper-button-disabled {
  pointer-events: none;
}
.c-services__swiper-button-next.swiper-button-disabled svg {
  stroke: #ccc;
}
.c-services__swiper-scrollbar {
  position: static;
  width: 100%;
  height: 4px;
  background-color: var(--color-white);
  border-radius: 10px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .c-services__swiper-scrollbar {
    height: 2px;
    margin-top: 30px;
  }
}
.c-services .swiper-scrollbar-drag {
  height: 4px;
  background-color: var(--color-primary);
}
@media (max-width: 768px) {
  .c-services .swiper-scrollbar-drag {
    height: 2px;
  }
}

.c-modal {
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 999;
  transition: 0.3s ease;
}
.c-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-modal__background {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.c-modal__container {
  position: relative;
  max-width: 500px;
  width: 100%;
  height: calc(100% - 100px - 100px);
  margin: 100px auto;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
@media (max-width: 768px) {
  .c-modal__container {
    width: 90%;
    height: calc(100% - 80px - 80px);
    margin: 80px auto;
    padding: 20px;
  }
}
.c-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
}
.c-modal__close:hover {
  opacity: 0.7;
}
.c-modal__close svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
}
.c-modal__content {
  min-height: 274px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .c-modal__content {
    padding-right: 10px;
  }
}
.c-modal__content::-webkit-scrollbar {
  width: 4px;
  background-color: var(--color-white);
}
.c-modal__content::-webkit-scrollbar-track {
  background-color: var(--color-white);
  border-radius: 4px;
}
.c-modal__content::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: 2px;
  border-left: 1.5px solid var(--color-white);
  border-right: 1.5px solid var(--color-white);
}
.c-modal__content p {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.5;
  text-align: justify;
}
.c-modal__title {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-gold);
  background: linear-gradient(180deg, #F6E7C8 0%, #D8B98A 50%, #BFA074 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .c-modal__title {
    font-size: 2.6rem;
    line-height: 1.2307692308;
  }
}
.c-modal__actions {
  width: 180px;
  margin: 40px auto 0;
}

.c-collection {
  background-color: var(--color-background);
}
.c-collection__container {
  position: relative;
  padding: 60px 0 120px;
}
@media (max-width: 768px) {
  .c-collection__container {
    padding: 50px 0 100px;
  }
}
.c-collection__head {
  text-align: center;
}
.c-collection__content {
  margin-top: 60px;
}
.c-collection__actions {
  width: 180px;
  margin: 60px auto 0;
}

.c-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px;
  gap: 8px;
}
@media (max-width: 1024px) {
  .c-gallery {
    gap: 4;
  }
}
@media (max-width: 768px) {
  .c-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
}
.c-gallery__item {
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .c-gallery__item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}
.c-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-gallery__item:nth-child(1) {
  grid-column: span 1;
  grid-row: span 2;
}
.c-gallery__item:nth-child(2) {
  grid-column: span 1;
  grid-row: span 2;
}
.c-gallery__item:nth-child(3) {
  grid-column: span 1;
  grid-row: span 1;
}
.c-gallery__item:nth-child(4) {
  grid-column: span 1;
  grid-row: span 1;
}
.c-gallery__item:nth-child(5) {
  grid-column: span 1;
  grid-row: span 1;
}
.c-gallery__item:nth-child(6) {
  grid-column: span 1;
  grid-row: span 2;
}
.c-gallery__item:nth-child(7) {
  grid-column: span 1;
  grid-row: span 1;
}
.c-gallery__item:nth-child(8) {
  grid-column: span 2;
  grid-row: span 1;
}

/*  ==========================================================================
    404 PAGE
    ==========================================================================
*/