@charset "UTF-8";

/* =====================================================
  HERO
===================================================== */

.fd-hero{
  position:relative;
  min-height:72vh;
  overflow:hidden;
  background:#e9e7e3;
}

.fd-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.10) 0%,
      rgba(0,0,0,.04) 28%,
      rgba(0,0,0,.08) 58%,
      rgba(0,0,0,.28) 100%
    );
  pointer-events:none;
  z-index:1;
}

.fd-hero__slides{
  position:absolute;
  inset:0;
}

.fd-hero__slide{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
}

.fd-hero__slide:first-child{
  opacity:1;
  pointer-events:auto;
}

.fd-hero__slide.is-active{
  opacity:1;
  pointer-events:auto;
}

.js-ready .fd-hero__slide{
  transition:opacity 4.8s cubic-bezier(.4,0,.2,1);
}

.fd-hero__slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:translateZ(0);
  filter:
    contrast(.92)
    brightness(.96)
    saturate(.96);
}


/* =====================================================
  HERO CONTENT
===================================================== */

.fd-hero__content{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding:24px;
}

.fd-hero__title{
  margin:0 0 14px;
  font-family:var(--fd-heading);
  font-size:clamp(28px,3vw,44px);
  line-height:1.18;
  letter-spacing:.16em;
  font-weight:400;
  text-shadow:0 1px 10px rgba(0,0,0,.18);
}

.fd-hero__brand{
  margin:0;
  font-family:var(--fd-serif-en);
  font-size:14px;
  line-height:1.4;
  letter-spacing:.24em;
  text-transform:uppercase;
  opacity:.92;
  text-shadow:0 1px 10px rgba(0,0,0,.18);
}


/* =====================================================
  HERO SCROLL
===================================================== */

.fd-hero__scroll{
  position:absolute;
  left:50%;
  bottom:52px;
  transform:translateX(-50%);
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  text-decoration:none;
  text-align:center;
}

.fd-hero__scroll-text{
  display:block;
  margin:0;
  padding:0;
  color:rgba(255,255,255,.78);
  font-family:var(--fd-serif-en);
  font-size:10px;
  line-height:1;
  letter-spacing:.34em;
  text-transform:uppercase;
  text-align:center;
  white-space:nowrap;
}

.fd-hero__scroll-line{
  position:relative;
  display:block;
  width:1px;
  height:84px;
  margin:0 auto;
  background:rgba(255,255,255,.16);
  overflow:hidden;
}

.fd-hero__scroll-line::after{
  content:"";
  position:absolute;
  top:-22px;
  left:50%;
  width:1px;
  height:22px;
  transform:translateX(-50%);
  background:rgba(255,255,255,.92);
  animation:fdScrollLine 2.2s cubic-bezier(.55,.08,.45,.92) infinite;
}

.fd-hero__scroll:hover{
  opacity:.82;
}

@keyframes fdScrollLine{
  0%{
    transform:translateX(-50%) translateY(0);
    opacity:0;
  }
  18%{
    opacity:1;
  }
  78%{
    opacity:1;
  }
  100%{
    transform:translateX(-50%) translateY(84px);
    opacity:0;
  }
}


/* =====================================================
  REVEAL
===================================================== */

.fd-reveal{
  opacity:0;
  transform:translateY(12px);
  transition:
    opacity .9s cubic-bezier(.22,.61,.36,1),
    transform .9s cubic-bezier(.22,.61,.36,1);
  will-change:opacity, transform;
}

.fd-reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

.fd-reveal--delay-1{ transition-delay:.08s; }
.fd-reveal--delay-2{ transition-delay:.18s; }
.fd-reveal--delay-3{ transition-delay:.28s; }
.fd-reveal--delay-4{ transition-delay:.38s; }

.fd-reveal--hero-1,
.fd-reveal--hero-2,
.fd-reveal--hero-3{
  opacity:0;
  transform:translateY(10px);
}

.js-ready .fd-reveal--hero-1,
.js-ready .fd-reveal--hero-2,
.js-ready .fd-reveal--hero-3{
  animation:fdHeroReveal 1.2s cubic-bezier(.22,.61,.36,1) forwards;
}

.js-ready .fd-reveal--hero-1{ animation-delay:.18s; }
.js-ready .fd-reveal--hero-2{ animation-delay:.42s; }
.js-ready .fd-reveal--hero-3{ animation-delay:.72s; }

@keyframes fdHeroReveal{
  0%{
    opacity:0;
    transform:translateY(10px);
  }
  100%{
    opacity:1;
    transform:translateY(0);
  }
}


/* =====================================================
  COMMON
===================================================== */

.fd-about,
.fd-menu-section,
.fd-reserve,
.fd-information{
  background:#fff;
}

.fd-gallery{
  background:#efefef;
}


/* =====================================================
  SECTION HEADING BALANCE
===================================================== */

.fd-about .fd-blockhead,
.fd-menu-section .fd-blockhead,
.fd-gallery .fd-blockhead,
.fd-reserve .fd-blockhead,
.fd-information .fd-blockhead{
  margin-bottom:40px;
  text-align:center;
}

.fd-about .fd-kicker,
.fd-menu-section .fd-kicker,
.fd-gallery .fd-kicker,
.fd-reserve .fd-kicker,
.fd-information .fd-kicker{
  margin-bottom:10px;
}

.fd-about .fd-title,
.fd-menu-section .fd-title,
.fd-gallery .fd-title,
.fd-reserve .fd-title,
.fd-information .fd-title{
  font-size:clamp(24px,2.8vw,36px);
  line-height:1.12;
  letter-spacing:.03em;
  position:relative;
  display:block;
  width:fit-content;
  max-width:100%;
  margin:0 auto;
  text-align:center;
  padding-bottom:18px;
}


/* =====================================================
  TITLE UNDERLINE
===================================================== */

.fd-about .fd-title::after,
.fd-menu-section .fd-title::after,
.fd-gallery .fd-title::after,
.fd-reserve .fd-title::after,
.fd-information .fd-title::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:56px;
  height:1px;
  background:rgba(0,0,0,.22);
}


/* =====================================================
  ABOUT
===================================================== */

.fd-about__inner{
  display:grid;
  gap:30px;
  max-width:1200px;
  margin-inline:auto;
}

.fd-about__grid{
  display:grid;
  grid-template-columns:1.08fr 1fr;
  gap:30px;
  align-items:center;
}

.fd-about__media{
  margin:0;
  overflow:hidden;
  background:#ece9e4;
}

.fd-about__media img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  display:block;
}

.fd-about__body{
  max-width:560px;
  color:rgba(0,0,0,.58);
}

.fd-about__title{
  margin:0 0 16px;
  font-family:var(--fd-heading);
  font-size:22px;
  line-height:1.45;
  letter-spacing:.08em;
  font-weight:400;
  color:rgba(0,0,0,.84);
}

.fd-about__body p{
  line-height:1.95;
}

.fd-about__body p + p{
  margin-top:1em;
}

/* =====================================================
  MENU
===================================================== */

.fd-menu-section .fd-container{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:36px;
  align-items:start;
}

.fd-menu-section .fd-blockhead{
  margin-bottom:0;
  text-align:left;
}

.fd-menu-section .fd-title{
  margin:0;
  text-align:left;
}

.fd-menu-section .fd-title::after{
  display:none;
}

.fd-menu-section .fd-grid{
  gap:0;
}

.fd-menu-section .fd-card{
  display:block;
  color:inherit;
  text-decoration:none;
  padding:0 0 22px;
  border-top:1px solid rgba(0,0,0,.12);
  transition:
    transform .28s ease,
    border-color .28s ease,
    opacity .28s ease;
}

.fd-menu-section .fd-card__title{
  transition:opacity .28s ease;
}

.fd-menu-section .fd-card__body{
  transition:opacity .28s ease;
}

.fd-menu-section .fd-card:hover{
  transform:translateY(-3px);
  border-color:rgba(0,0,0,.28);
}

.fd-menu-section .fd-card:hover .fd-card__title{
  opacity:.88;
}

.fd-menu-section .fd-card:hover .fd-card__body{
  opacity:.82;
}


/* =====================================================
  GALLERY SECTION SHELL
===================================================== */

.fd-gallery{
  background:#fff;
  overflow:hidden;
}

.fd-gallery__container{
  width:100%;
}

.fd-gallery .fd-blockhead{
  padding-inline:40px;
}

/* =====================================================
  RESERVE
===================================================== */

.fd-reserve__container{
  max-width:760px;
}

.fd-reserve__lead{
  margin:0 auto 30px;
  text-align:center;
  color:rgba(0,0,0,.58);
  font-size:13px;
  line-height:2;
}

.fd-reserve__lead p + p{
  margin-top:.15em;
}

.fd-reserve__actions{
  display:grid;
  gap:14px;
}

.fd-reserve__btn{
  min-height:50px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid #1f2a44;
  color:#fff;
  background:#1f2a44;
  text-decoration:none;

  transition:
    background .28s ease,
    color .28s ease,
    border-color .28s ease,
    transform .18s ease,
    box-shadow .18s ease;
}

.fd-reserve__btn:hover{
  background:#182033;
  border-color:#182033;
  color:#fff;

  transform:translateY(2px);
  box-shadow:0 2px 6px rgba(0,0,0,.08) inset;
}

/* =====================================================
  INFORMATION
===================================================== */

.fd-information{
  background:#fff;
}

.fd-info{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:76px;
}

.fd-info__row{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:24px;
  padding:18px 0;
  border-top:1px solid rgba(0,0,0,.14);
}

.fd-info__row:last-child{
  border-bottom:1px solid rgba(0,0,0,.14);
}

.fd-info__map{
  height:520px;
  overflow:hidden;
  background:#ece9e4;
  filter:grayscale(1) brightness(1.045) contrast(.92);
}

.fd-info__map iframe{
  width:100%;
  height:100%;
  border:0;
}


/* =====================================================
  NEWS (Information List)
===================================================== */

.fd-news{
  width:100%;
  max-width:760px;
  margin:0 auto 60px;
}

.fd-news__list{
  list-style:none;
  margin:0;
  padding:0;
  border-top:1px solid rgba(0,0,0,.14);
}

.fd-news__item{
  border-bottom:1px solid rgba(0,0,0,.14);
}

.fd-news__link{
  display:flex;
  align-items:center;
  gap:26px;
  padding:16px 0;
  color:inherit;
  text-decoration:none;
  transition:opacity .25s ease;
}

.fd-news__link:hover{
  opacity:.7;
}

.fd-news__date{
  min-width:96px;
  font-family:var(--fd-serif-en);
  font-size:12px;
  letter-spacing:.12em;
  color:rgba(0,0,0,.45);
}

.fd-news__title{
  font-size:14px;
  line-height:1.6;
  color:rgba(0,0,0,.78);
}


/* =====================================================
  TABLET
===================================================== */

@media (max-width:1024px){

  .fd-about__grid{
    grid-template-columns:1fr;
  }

  .fd-menu-section .fd-container{
    grid-template-columns:1fr;
    gap:24px;
  }

  .fd-menu-section .fd-blockhead{
    text-align:center;
  }

  .fd-menu-section .fd-title{
    margin:0 auto;
    text-align:center;
  }

  .fd-menu-section .fd-title::after{
    display:block;
  }

  .fd-info{
    grid-template-columns:1fr;
    gap:40px;
  }

  .fd-info__map{
    height:420px;
  }

}


/* =====================================================
  MOBILE
===================================================== */

@media (max-width:767px){

  .fd-hero{
    min-height:78svh;
  }

  .fd-hero__content{
    padding:20px;
  }

  .fd-hero__title{
    font-size:clamp(24px,7vw,34px);
    letter-spacing:.10em;
    margin-bottom:10px;
  }

  .fd-hero__brand{
    font-size:11px;
    letter-spacing:.18em;
  }

  .fd-hero__scroll{
    bottom:34px;
    gap:10px;
  }

  .fd-hero__scroll-text{
    font-size:9px;
    letter-spacing:.26em;
    padding:0;
  }

  .fd-hero__scroll-line{
    height:58px;
  }

  .fd-hero__scroll-line::after{
    top:-16px;
    left:50%;
    height:16px;
    transform:translateX(-50%);
    animation:fdScrollLineSp 2.2s cubic-bezier(.55,.08,.45,.92) infinite;
  }

  .fd-about__inner{
    gap:28px;
  }

  .fd-about__grid{
    gap:22px;
  }

  .fd-about__title{
    font-size:20px;
    letter-spacing:.06em;
  }

  .fd-about .fd-title,
  .fd-menu-section .fd-title,
  .fd-gallery .fd-title,
  .fd-reserve .fd-title,
  .fd-information .fd-title{
    font-size:clamp(22px,6vw,30px);
    line-height:1.14;
    letter-spacing:.02em;
  }

  .fd-gallery .fd-blockhead{
    padding-inline:20px;
  }

  .fd-reserve__actions{
    gap:12px;
  }

  .fd-reserve__btn{
    min-height:44px;
    padding:0 18px;
  }

  .fd-reserve__text{
    font-size:11px;
    letter-spacing:.16em;
  }

  .fd-info{
    gap:32px;
  }

  .fd-info__row{
    grid-template-columns:1fr;
    gap:6px;
    padding:14px 0;
  }

  .fd-info__map{
    height:320px;
  }

  .fd-news{
    margin-bottom:40px;
  }

  .fd-news__link{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
    padding:14px 0;
  }

  .fd-news__date{
    min-width:0;
    font-size:11px;
    letter-spacing:.1em;
  }

  .fd-news__title{
    font-size:13px;
  }

  @keyframes fdScrollLineSp{
    0%{
      transform:translateX(-50%) translateY(0);
      opacity:0;
    }
    18%{
      opacity:1;
    }
    78%{
      opacity:1;
    }
    100%{
      transform:translateX(-50%) translateY(58px);
      opacity:0;
    }
  }

}


/* =====================================================
  REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce){
  .fd-hero__scroll-line::after{
    animation:none;
    opacity:.9;
    transform:translateX(-50%) translateY(18px);
  }
}


/* =====================================================
  LOADING
===================================================== */

.fd-loader{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f5f5f5;
  opacity:1;
  visibility:visible;
  transition:
    opacity .6s ease,
    visibility .6s ease;
}

.fd-loader.is-hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.fd-loader__inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
}

.fd-loader__label{
  margin:0;
  font-family:var(--fd-serif-en);
  font-size:11px;
  line-height:1;
  letter-spacing:.34em;
  text-transform:uppercase;
  color:rgba(0,0,0,.68);
  padding-left:.34em;
}

.fd-loader__line{
  position:relative;
  display:block;
  width:68px;
  height:1px;
  background:rgba(0,0,0,.14);
  overflow:hidden;
}

.fd-loader__line::after{
  content:"";
  position:absolute;
  top:0;
  left:-26px;
  width:26px;
  height:1px;
  background:rgba(0,0,0,.52);
  animation:fdLoaderLine 1.2s cubic-bezier(.55,.08,.45,.92) infinite;
}

@keyframes fdLoaderLine{
  0%{
    transform:translateX(0);
    opacity:0;
  }
  15%{
    opacity:1;
  }
  85%{
    opacity:1;
  }
  100%{
    transform:translateX(94px);
    opacity:0;
  }
}