@charset "UTF-8";
/* ==============================================
   Reset
   ============================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: #46506a;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}
body {
  background: #f8f1e3;
  color: #46506a;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

button {
  font-family: inherit;
}

/* ==============================================
   Helpers
   ============================================== */
.is-sp {
  display: none !important;
}

@media (max-width: 768px) {
  .is-sp {
    display: revert !important;
  }
  .is-pc {
    display: none !important;
  }
}
.page {
  position: relative;
  overflow: clip;
}

:where(.hero, .about, .hotel-art, .children) {
  scroll-margin-top: 120px;
}
@media (max-width: 768px) {
  :where(.hero, .about, .hotel-art, .children) {
    scroll-margin-top: 84px;
  }
}

/* ==============================================
   Scroll-reveal base states (JS adds .is-in)
   Falls back to visible without JS via .no-js guard
   ============================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-group > * {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-group.is-in > * {
  opacity: 1;
  transform: none;
}

.reveal-group.is-in > *:nth-child(1) {
  transition-delay: 0s;
}

.reveal-group.is-in > *:nth-child(2) {
  transition-delay: 0.12s;
}

.reveal-group.is-in > *:nth-child(3) {
  transition-delay: 0.24s;
}

.reveal-group.is-in > *:nth-child(4) {
  transition-delay: 0.36s;
}

.reveal-group.is-in > *:nth-child(5) {
  transition-delay: 0.48s;
}

.reveal-group.is-in > *:nth-child(6) {
  transition-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .reveal-group > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* ==============================================
   Art decorations — hand-drawn reveal
   A soft-edged mask sweeps along the stroke like ink
   flowing from a pen tip; a slight rotate = hand wobble.
   JS toggles .is-drawn (hero timeline / ScrollTrigger).
   ============================================== */
@property --draw {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 0%;
}
.deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  --draw: 0%;
  opacity: 0;
  transition: --draw 1.25s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s linear;
}
.deco img {
  width: 100%;
  height: 100%;
  --a: var(--draw-angle, 105deg);
  -webkit-mask-image: linear-gradient(var(--a), #000 0, #000 var(--draw), transparent calc(var(--draw) + 16%));
  mask-image: linear-gradient(var(--a), #000 0, #000 var(--draw), transparent calc(var(--draw) + 16%));
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transform: rotate(-2.5deg);
  transform-origin: left bottom;
  transition: transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.deco.is-drawn {
  --draw: 130%;
  opacity: 1;
}
.deco.is-drawn img {
  transform: none;
}

.deco--bloom {
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.deco--bloom img {
  -webkit-mask-image: none;
  mask-image: none;
  transform: scale(0.7) rotate(-3deg);
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .deco {
    --draw: 130% !important;
    opacity: 1 !important;
  }
  .deco img {
    -webkit-mask-image: none !important;
    mask-image: none !important;
    transform: none !important;
  }
}
/* ==============================================
   Back-to-top
   ============================================== */
.to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 60;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: #d2522e;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(29, 43, 69, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.to-top:hover {
  background: #1d2b45;
  transform: translateY(-4px);
}
.to-top__arrow {
  display: block;
  width: 11px;
  height: 11px;
  margin: 2px auto 0;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(2px) rotate(-45deg);
}
@media (max-width: 768px) {
  .to-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
}

/* ==============================================================
   Navigation
   ============================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #f8f1e3;
}
.nav__inner {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .nav__inner {
    padding-inline: 24px;
  }
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  margin: 0 2vw;
  width: auto;
  max-width: 100%;
}
.nav__logo {
  display: block;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .nav__logo {
    width: 152px;
  }
}
.nav__logo svg,
.nav__logo img {
  width: 80%;
  height: auto;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__link {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: #1d2b45;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__link:hover {
  color: #d2522e;
}
.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: #1d2b45;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 768px) {
  .nav__toggle {
    display: block;
    position: relative;
    z-index: 51;
  }
  .nav__list {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 34px;
    padding: 0 40px;
    background: #fffaf0;
    box-shadow: -12px 0 40px rgba(29, 43, 69, 0.14);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 50;
  }
  .nav.is-open .nav__list {
    transform: none;
  }
  .nav.is-open .nav__toggle {
    position: fixed;
    top: 26px;
    right: 20px;
    z-index: 52;
  }
  .nav.is-open .nav__toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav.is-open .nav__toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav.is-open .nav__toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav__link {
    font-size: 22px;
  }
}

.nav-overlay {
  display: none;
}
@media (max-width: 768px) {
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(29, 43, 69, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 49;
  }
  .nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }
}

/* ==============================================================
   Hero
   ============================================================== */
.hero {
  position: relative;
  background: #f8f1e3;
  overflow: clip;
}
.hero__body {
  position: relative;
  height: 55vw;
  max-height: 1020px;
  display: flex;
  align-items: center;
  background: #fffaf0;
}
@media (max-width: 1180px) {
  .hero__body {
    min-height: 700px;
  }
}
@media (max-width: 768px) {
  .hero__body {
    display: block;
    min-height: 0;
    height: 100%;
  }
}
.hero__inner {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .hero__inner {
    padding-inline: 24px;
  }
}
.hero__inner {
  position: relative;
  top: -5vw;
  z-index: 2;
  max-width: 1575px;
  padding-left: 20px;
  margin-left: 2vw;
}
@media (max-width: 768px) {
  .hero__inner {
    top: 5vw;
  }
}
.hero__content {
  max-width: 740px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 768px) {
  .hero__content {
    max-width: none;
    padding-block: 24px 8px;
    gap: 24px;
  }
}
.hero__badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 27px;
  background: #ffffff;
  border: 2.6px solid #1d2b45;
  border-radius: 999px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: 0.085em;
  color: #1d2b45;
  white-space: nowrap;
}
.hero__badge::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: #d2522e;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero__badge {
    font-size: 12px;
    padding: 9px 16px;
    gap: 9px;
    border-width: 2px;
    letter-spacing: normal;
  }
  .hero__badge::before {
    width: 9px;
    height: 9px;
  }
}
.hero__title {
  margin: 0;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4.7vw, 72px);
  line-height: 1.7;
  color: #283c61;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .hero__title {
    line-height: 1.5;
    white-space: normal;
  }
}
.hero__lead {
  margin-top: 0;
  font-weight: 300;
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 2;
  color: #46506a;
}
@media (max-width: 768px) {
  .hero__lead {
    line-height: 1.9;
  }
}
.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 54%;
  z-index: 1;
  clip-path: url(#heroClipPc);
  -webkit-clip-path: url(#heroClipPc);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .hero__media {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    margin-top: 0;
    padding-top: 0;
    clip-path: url(#heroClipSp);
    -webkit-clip-path: url(#heroClipSp);
    transform: translateX(100px);
  }
}
.hero .deco {
  z-index: 0;
}
.hero__deco--paint {
  width: clamp(210px, 42vw, 500px);
  max-width: fit-content;
  top: 0;
  left: 0;
}
.hero__deco--blob {
  width: 28vw;
  max-width: fit-content;
  left: 0;
  bottom: 0;
}
@media (max-width: 768px) {
  .hero__deco--blob {
    width: 200px;
    bottom: 40px;
    opacity: 0.85;
  }
}
.hero__deco--brush {
  width: 100%;
  max-width: fit-content;
  left: 6%;
  bottom: 0;
}
@media (max-width: 768px) {
  .hero__deco--brush {
    left: -100px;
  }
}
.hero__deco--line {
  width: 100%;
  max-width: fit-content;
  right: 30%;
  top: 0;
  z-index: 0;
}
@media (max-width: 768px) {
  .hero__deco--line {
    right: 0;
    width: 40%;
    top: -7%;
  }
}
.hero__bottom {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 59px;
  z-index: 1;
  background: url(../img/svg/hero_bottom_tile.svg) repeat-x left bottom;
  background-size: auto 100%;
}
.hero__bottom img {
  display: none;
}
@media (max-width: 768px) {
  .hero__bottom {
    width: 100%;
    height: auto;
    aspect-ratio: 1919/59;
    bottom: -2px;
    background: url(../img/svg/hero_bottom.svg) no-repeat left bottom;
    background-size: 100% 100%;
  }
}

/* ==============================================================
   Shared section atoms
   ============================================================== */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.sec-label__num {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.09em;
  line-height: 1;
  color: #d2522e;
}
.sec-label__en {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.16em;
  color: #d2522e;
}
.sec-label__line {
  width: 47px;
  height: 2px;
  background: #d2522e;
  flex-shrink: 0;
}
.sec-label--dark .sec-label__num,
.sec-label--dark .sec-label__en {
  color: #edc24b;
}

.sec-heading {
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #1d2b45;
}
@media (max-width: 768px) {
  .sec-heading {
    font-size: 26px;
  }
}
.sec-heading {
  margin: 16px 0 0;
}

.sec-lead {
  margin-top: 26px;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: #46506a;
}
@media (max-width: 768px) {
  .sec-lead {
    font-size: 16px;
  }
}
.sec-lead p + p {
  margin-top: 1.6em;
}
@media (max-width: 768px) {
  .sec-lead {
    margin-top: 0;
  }
}

/* ==============================================================
   ABOUT — event intro
   ============================================================== */
.about {
  position: relative;
  background: #fffaf0;
  padding-block: 130px;
  overflow: clip;
}
@media (max-width: 768px) {
  .about {
    padding-block: 64px;
  }
}
.about__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .about__inner {
    padding-inline: 24px;
  }
}
.about__inner {
  padding: 0 20px 80px;
  display: flex;
  align-items: center;
  gap: 78px;
}
@media (max-width: 1180px) {
  .about__inner {
    gap: 44px;
  }
}
@media (max-width: 768px) {
  .about__inner {
    flex-direction: column;
    gap: 28px;
    max-width: 625px;
  }
}
.about__inner--ttlsp {
  align-self: flex-start;
}
.about__media {
  flex-shrink: 0;
  width: 46%;
  max-width: 674px;
  aspect-ratio: 674/531;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 16.78px 39.16px rgba(29, 43, 69, 0.14);
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .about__media {
    width: 100%;
  }
}
.about__body {
  flex: 1;
  min-width: 0;
}
.about__box {
  display: inline-block;
  margin-top: 34px;
  padding: 28px 34px;
  background: #1d2b45;
  border-radius: 0 28px 28px 28px;
  color: #ffffff;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .about__box {
    font-size: 16px;
    padding: 20px 15px;
    margin: 26px auto 0;
    border-radius: 8px;
    text-align: center;
    display: flex;
    width: fit-content;
  }
}
.about .deco {
  width: 100%;
  max-width: fit-content;
  z-index: 1;
}
.about__deco--paint1 {
  left: 0;
  top: 0;
}
.about__deco--paint1 img {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .about__deco--paint1 {
    width: 50% !important;
  }
}
.about__deco--paint2 {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about__deco--paint2 img {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .about__deco--paint2 {
    top: 380px;
    transform: unset;
    width: 45% !important;
  }
}
.about__deco--paint3 {
  left: 0;
  bottom: 3vw;
}
@media (max-width: 768px) {
  .about__deco--paint3 {
    width: 50% !important;
  }
}
.about__deco--paint4 {
  right: 0;
  top: 0;
}
@media (max-width: 768px) {
  .about__deco--paint4 {
    width: 40% !important;
  }
}
.about__deco--paint5 {
  right: -33px;
  top: 50%;
  transform: translateY(-50%) rotate(-134.398deg);
}
@media (max-width: 768px) {
  .about__deco--paint5 {
    top: 420px;
    transform: translateY(0) rotate(-134.398deg);
    width: 45% !important;
  }
}
.about__deco--paint6 {
  right: 0;
  bottom: 6vw;
}
@media (max-width: 768px) {
  .about__deco--paint6 {
    width: 30% !important;
  }
}
.about__deco--paint7 {
  right: 0;
  bottom: -30px;
  z-index: 2;
}
@media (max-width: 768px) {
  .about__deco--paint7 {
    width: 30% !important;
  }
}
.about__bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 82px;
  z-index: 1;
  background: url(../img/svg/about_bottom_tile.svg) repeat-x left bottom;
  background-size: auto 100%;
}
.about__bottom img {
  display: none;
}
@media (max-width: 768px) {
  .about__bottom {
    width: 100%;
    height: auto;
    aspect-ratio: 1920/82;
    bottom: -2px;
    background: url(../img/svg/about_bottom.svg) no-repeat left bottom;
    background-size: 100% 100%;
  }
}

/* ==============================================================
   MARQUEE band — "A HOTEL THAT BECOMES ART"
   ============================================================== */
.marquee {
  position: relative;
  background: #d2522e;
  color: #fffaf0;
  text-align: center;
  padding-block: 96px;
  margin-block: -1px;
}
@media (max-width: 768px) {
  .marquee {
    padding-block: 60px;
  }
}
.marquee__en {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 5.034px;
}
@media (max-width: 768px) {
  .marquee__en {
    font-size: 11px;
    letter-spacing: 0.2em;
  }
}
.marquee__title {
  margin-top: 20px;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .marquee__title {
    font-size: 24px;
    margin-top: 12px;
  }
}

/* ==============================================================
   01 HOTEL ART — art gallery
   ============================================================== */
.hotel-art {
  position: relative;
  background: #f8f1e3;
  padding-block: 160px;
  overflow: clip;
}
@media (max-width: 768px) {
  .hotel-art {
    padding-block: 70px;
  }
}
.hotel-art__top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  z-index: 1;
  background: url(../img/svg/hotel-art_top_tile.svg) repeat-x left top;
  background-size: auto 100%;
}
.hotel-art__top img {
  display: none;
}
@media (max-width: 768px) {
  .hotel-art__top {
    width: 100%;
    height: auto;
    aspect-ratio: 1920/82;
    top: -2px;
    background: url(../img/svg/hotel-art_top.svg) no-repeat left top;
    background-size: 100% 100%;
  }
}
.hotel-art__head {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1090px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .hotel-art__head {
    padding-inline: 24px;
  }
}
.hotel-art__head {
  text-align: center;
}
.hotel-art__head .sec-heading {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .hotel-art__head .sec-heading {
    font-size: 20px;
  }
}
.hotel-art__head .sec-lead {
  margin-top: 26px;
}
@media (max-width: 768px) {
  .hotel-art__head .sec-lead {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .hotel-art__head {
    max-width: 625px;
  }
}
.hotel-art__gallery {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1566px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .hotel-art__gallery {
    padding-inline: 24px;
  }
}
.hotel-art__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 62px;
  padding: 0 20px;
}
@media (max-width: 1180px) {
  .hotel-art__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 26px;
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  .hotel-art__gallery {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    margin-top: 36px;
    max-width: none;
    padding: 16px 24px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-padding-left: 24px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .hotel-art__gallery::-webkit-scrollbar {
    display: none;
  }
}
.hotel-art__card:nth-child(2), .hotel-art__card:nth-child(4) {
  margin-top: 26px;
}
@media (max-width: 1180px) {
  .hotel-art__card:nth-child(n) {
    margin-top: 0;
  }
}
.hotel-art__card figure {
  margin: 0;
  aspect-ratio: 369/490;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 16.78px 39.16px rgba(29, 43, 69, 0.14);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.hotel-art__card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hotel-art__card:nth-child(1) figure {
  transform: rotate(-2deg);
}
.hotel-art__card:nth-child(2) figure {
  transform: rotate(2deg);
}
.hotel-art__card:nth-child(3) figure {
  transform: rotate(-1.5deg);
}
.hotel-art__card:nth-child(4) figure {
  transform: rotate(2.5deg);
}
.hotel-art__card:hover figure {
  transform: rotate(0) translateY(-6px);
}
@media (max-width: 768px) {
  .hotel-art__card {
    flex: 0 0 min(74%, 280px);
    scroll-snap-align: start;
  }
}
.hotel-art__card__cap {
  margin-top: 18px;
  text-align: center;
  font-family: "Sawarabi Gothic", sans-serif;
}
.hotel-art__card__cap strong {
  display: block;
  font-weight: 700;
  font-size: 19px;
  color: #1d2b45;
}
.hotel-art__card__cap span {
  display: block;
  margin-top: 4px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #d2522e;
}
.hotel-art__deco--paint1 {
  top: 0;
  z-index: 0;
  left: 0;
}
@media (max-width: 768px) {
  .hotel-art__deco--paint1 {
    top: 20px;
    width: 25%;
  }
}
.hotel-art__deco--paint2 {
  top: 200px;
  right: 0;
  z-index: 0;
}
@media (max-width: 768px) {
  .hotel-art__deco--paint2 {
    width: 25%;
    top: 60px;
  }
}
.hotel-art__deco--paint3 {
  bottom: -30px;
  width: 13%;
  left: 0;
  z-index: 0;
}
@media (max-width: 768px) {
  .hotel-art__deco--paint3 {
    width: 100px;
    bottom: -30px;
    left: -30px;
  }
}
.hotel-art__deco--grid {
  width: 150px;
  aspect-ratio: 198/213;
  top: 175px;
  left: 9%;
}
@media (max-width: 768px) {
  .hotel-art__deco--grid {
    width: 15%;
    top: 60px;
  }
}
.hotel-art__deco--scribble {
  width: 130px;
  aspect-ratio: 196/193;
  top: 320px;
  left: -2%;
}
@media (max-width: 768px) {
  .hotel-art__deco--scribble {
    width: 15%;
    top: 120px;
  }
}
.hotel-art__deco--squiggle {
  width: 190px;
  aspect-ratio: 186/189;
  top: 380px;
  right: 7%;
}
@media (max-width: 768px) {
  .hotel-art__deco--squiggle {
    width: 20%;
    top: 130px;
    right: 50px;
  }
}
.hotel-art__deco--dots {
  width: 200px;
  top: 105px;
  right: 0;
  transform: rotate(37.771deg);
}
@media (max-width: 768px) {
  .hotel-art__deco--dots {
    width: 25%;
    top: -24px;
    transform: rotate(60.771deg);
  }
}
.hotel-art__deco--dashes {
  width: 12%;
  aspect-ratio: 297/51;
  bottom: 10vw;
  left: 0;
}
@media (max-width: 768px) {
  .hotel-art__deco--dashes {
    bottom: 70px;
    width: 100px;
    left: -30px;
  }
}

/* ==============================================================
   02 CHILDREN'S ART — dark full-bleed
   ============================================================== */
.children {
  position: relative;
  overflow: clip;
  padding-block: 230px;
  color: #fffaf0;
}
@media (max-width: 768px) {
  .children {
    padding-block: 72px;
  }
}
.children__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.children__bg img {
  width: 100%;
  height: 100%;
  filter: blur(4px);
  transform: scale(1.06) translate(0, 0);
}
@media (max-width: 768px) {
  .children__bg img {
    filter: none;
  }
}
.children__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.children__inner {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .children__inner {
    padding-inline: 24px;
  }
}
.children__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 77px;
  padding: 30px 20px 0;
}
@media (max-width: 1180px) {
  .children__inner {
    gap: 44px;
  }
}
@media (max-width: 768px) {
  .children__inner {
    flex-direction: column;
    gap: 30px;
    max-width: 625px;
  }
}
.children__body {
  flex: 1;
  min-width: 0;
  padding-top: 12px;
}
.children .sec-heading {
  color: #fffaf0;
}
.children .sec-lead {
  color: #cdd4e2;
}
.children .sec-lead p {
  margin-top: 12px;
}
.children__media {
  flex-shrink: 0;
  width: 48%;
  max-width: 702px;
}
@media (max-width: 768px) {
  .children__media {
    width: 100%;
  }
}
.children__media figure {
  margin: 0;
  aspect-ratio: 702/527;
  border-radius: 200px 40px;
  overflow: hidden;
}
.children__media figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .children__media figure {
    border-radius: 120px 30px;
  }
}
.children__media figcaption {
  margin-top: 14px;
  text-align: right;
  font-size: 15px;
  color: #9aa6bd;
}

/* ==============================================================
   03 WITH OUR COMMUNITY — CTA
   ============================================================== */
.community {
  position: relative;
  background: #fffaf0;
  padding-block: 140px;
  padding-bottom: 100px;
  overflow: clip;
}
@media (max-width: 768px) {
  .community {
    padding-block: 70px;
  }
}
.community__inner {
  width: 100%;
  max-width: 1130px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .community__inner {
    padding-inline: 24px;
  }
}
.community__inner {
  text-align: center;
}
@media (max-width: 768px) {
  .community__inner {
    max-width: 600px;
  }
}
.community .sec-heading {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .community .sec-heading {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .community .sec-lead {
    margin-top: 24px;
    text-align: left;
  }
}
.community__card {
  margin-top: 56px;
  padding: 78px 40px;
  background: #275900;
  border-radius: 45px;
}
@media (max-width: 768px) {
  .community__card {
    margin-top: 40px;
    padding: 48px 24px;
    border-radius: 28px;
  }
}
.community__card-title {
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
  color: #fffaf0;
}
@media (max-width: 768px) {
  .community__card-title {
    font-size: 20px;
  }
}
.community__card-sub {
  margin-top: 16px;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #cdd4e2;
}
@media (max-width: 768px) {
  .community__card-sub {
    font-size: 14px;
  }
}
.community__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 21px 42px;
  background: #d2522e;
  border-radius: 999px;
  color: #ffffff;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}
.community__cta::after {
  content: "→";
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.community__cta:hover {
  transform: translateY(-3px);
  background: #b8461f;
}
.community__cta:hover::after {
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .community__cta {
    font-size: 16px;
    padding: 17px 32px;
  }
}

/* ==============================================================
   Footer
   ============================================================== */
.footer {
  background: #fffaf0;
}
.footer__band {
  position: relative;
  background: #c9a53c;
  padding: 78px 24px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
  clip-path: ellipse(70% 100% at 50% 100%);
}
@media (max-width: 768px) {
  .footer__band {
    padding: 52px 20px 32px;
    clip-path: ellipse(95% 100% at 50% 100%);
  }
}
.footer__logo {
  display: inline-block;
  width: 260px;
  max-width: 72vw;
  margin-inline: auto;
}
.footer__logo svg,
.footer__logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .footer__logo {
    width: 200px;
  }
}
.footer__links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.footer__link {
  position: relative;
  padding: 0 30px;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.8px;
  line-height: 1.8;
  color: #ffffff;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer__link:hover {
  opacity: 0.7;
}
.footer__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .footer__link::before {
    content: none;
  }
}
.footer__link:last-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .footer__link:last-child::after {
    content: none;
  }
}
@media (max-width: 768px) {
  .footer__link {
    padding: 6px 18px;
    font-size: 15px;
  }
}
.footer__copy {
  padding: 16px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #46506a;
  background: #fffaf0;
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .footer__copy {
    font-size: 12px;
    line-height: 1.7;
  }
}