:root {
  --color-pink: #d7a3a2;
  --color-pink-deep: #b97879;
  --color-bg: #fbf7f2;
  --color-bg-soft: #f4ece6;
  --color-surface: #fffdf9;
  --color-text: #2b2927;
  --color-muted: #746d68;
  --color-line: #e5d8cf;
  --color-blue: #dcebed;
  --color-charcoal: #252321;
  --shadow-soft: 0 18px 46px rgba(57, 44, 38, 0.12);
  --shadow-hover: 0 22px 58px rgba(57, 44, 38, 0.18);
  --font-display: "Cormorant Garamond", "Noto Serif JP", serif;
  --font-serif: "Noto Serif JP", serif;
  --font-sans: "Noto Sans JP", sans-serif;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-serif);
  line-height: 1.85;
}

img {
  display: block;
  max-width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(229, 216, 207, 0.78);
  background: rgba(251, 247, 242, 0.9);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 88px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 34px;
}

.brand-logo {
  width: 140px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 23px;
  color: var(--color-muted);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--color-pink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--color-pink);
  border-radius: 999px;
  background: var(--color-pink);
  color: #2a1d1d;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  padding: 0 20px;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: #ddb0ae;
  transform: translateY(-1px);
}

/* Common sections */
.section {
  padding: 112px 0;
}

.section-soft {
  background: var(--color-bg-soft);
}

.container {
  width: min(var(--container), calc(100% - clamp(68px, 10vw, 152px)));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 78px;
  align-items: center;
}

.two-column-reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.align-start {
  align-items: start;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--color-pink-deep);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(46px, 5vw, 76px);
}

h3 {
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.45;
}

.lead {
  margin-bottom: 20px;
  font-size: 23px;
  line-height: 1.75;
}

.section-copy p:not(.section-kicker):not(.lead) {
  color: var(--color-muted);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.section-heading.compact {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading p:not(.section-kicker) {
  color: var(--color-muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  padding: 0 28px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid var(--color-pink);
  background: var(--color-pink);
  color: #2a1d1d;
}

.button-primary:hover {
  background: #dfb1af;
}

.button-outline {
  border: 1px solid var(--color-pink);
  color: var(--color-text);
}

.button-outline:hover {
  background: rgba(215, 163, 162, 0.16);
}

.button.access-map-button {
  min-height: 52px;
  padding: 0 28px;
  font-size: 14px;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  color: #fff;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  --hero-pan-from: -3.2%;
  --hero-pan-to: 3.2%;
  --hero-pan-y: 0;
  object-fit: cover;
  transform: scale(1.08) translate3d(var(--hero-pan-from), var(--hero-pan-y), 0);
  transform-origin: center;
}

.hero-image-next {
  opacity: 0;
  transition: opacity var(--hero-fade-duration, 900ms) ease;
}

.hero-image-next.is-active {
  opacity: 1;
}

.hero.is-rotating .hero-image {
  opacity: 0;
  transition: opacity var(--hero-fade-duration, 900ms) ease;
}

.hero.is-rotating .hero-image.is-active {
  opacity: 1;
}

.hero-image.is-panning {
  animation: hero-pan var(--hero-pan-duration, 6100ms) linear both;
  will-change: transform, opacity;
}

@keyframes hero-pan {
  from {
    transform: scale(1.08) translate3d(var(--hero-pan-from), var(--hero-pan-y), 0);
  }

  to {
    transform: scale(1.08) translate3d(var(--hero-pan-to), var(--hero-pan-y), 0);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 20, 20, 0.68), rgba(18, 20, 20, 0.18) 52%, rgba(18, 20, 20, 0.08)),
    linear-gradient(180deg, rgba(18, 20, 20, 0.18), rgba(18, 20, 20, 0.48));
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(var(--container), calc(100% - 96px));
  margin: 0 auto;
  padding: 88px 0 72px;
}

.hero-logo-title {
  display: grid;
  align-items: end;
  justify-items: center;
  width: 100%;
  height: clamp(190px, 24vw, 300px);
  margin-bottom: 22px;
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

.hero-logo-title img {
  width: auto;
  max-width: min(620px, 64vw);
  max-height: 100%;
  object-fit: contain;
  transform: translateY(-45px);
}

.hero .section-kicker {
  color: #f1c9c7;
}

.hero-lead {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 26px;
  line-height: 1.7;
}

.hero-copy {
  max-width: 620px;
  margin-top: 0;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

/* Concept */
.image-stack {
  min-height: 520px;
}

.image-card {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.image-concept-main {
  width: 100%;
  height: 520px;
}

/* Spaces */
.space-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.photo-card {
  border: 1px solid var(--color-line);
  background: rgba(255, 253, 249, 0.72);
  overflow: hidden;
}

.plan-card {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 14px 34px rgba(57, 44, 38, 0.07);
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.plan-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-card h3,
.photo-card p {
  padding-inline: 22px;
}

.photo-card h3 {
  padding-top: 20px;
}

.photo-card p {
  padding-bottom: 24px;
  color: var(--color-muted);
  font-size: 14px;
}

.space-dots,
.scene-dots {
  display: none;
}

/* Stay scenes */
.stay-scenes {
  width: min(var(--container), calc(100% - clamp(68px, 10vw, 152px)));
  margin: 0 auto;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.scene-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.74);
  box-shadow: 0 14px 34px rgba(57, 44, 38, 0.07);
}

.scene-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.scene-card-body {
  padding: 24px;
}

.scene-card span {
  color: var(--color-pink-deep);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
}

.scene-card h3 {
  margin-top: 14px;
}

.scene-card p {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 14px;
}

/* Facilities */
.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.amenity-list li {
  position: relative;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-muted);
  font-family: var(--font-sans);
  padding: 0 0 12px 22px;
}

.amenity-list li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-pink);
  content: "";
}

.floorplan-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.image-floorplan {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* Plans */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.plan-card {
  padding: 24px 26px;
}

.plan-label {
  margin-bottom: 10px;
  color: var(--color-pink-deep);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.price {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
}

.plan-card p:last-child {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
}

.price-note {
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 13px;
}

.reservation-panel {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  margin-top: 34px;
  border-radius: 8px;
  border: 1px solid rgba(185, 120, 121, 0.28);
  background: #f3e3dd;
  color: var(--color-text);
  box-shadow: 0 22px 58px rgba(57, 44, 38, 0.13);
  padding: 34px 40px;
}

.reservation-panel h3 {
  font-family: var(--font-display);
  font-size: 34px;
}

.reservation-panel p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.reservation-panel .button-primary {
  flex: 0 0 auto;
  min-height: 64px;
  padding: 0 38px;
  font-size: 15px;
}

/* FAQ and access */
.faq-access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

.access-column {
  min-width: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-surface);
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 700;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.access-routes p {
  color: var(--color-muted);
}

.access-address {
  margin-bottom: 18px;
  font-family: var(--font-sans);
  font-size: 14px;
}

.access-routes {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.access-routes section {
  border-left: 2px solid rgba(215, 163, 162, 0.72);
  padding-left: 16px;
}

.access-routes h3 {
  margin-bottom: 4px;
  font-family: var(--font-sans);
  font-size: 14px;
}

.access-routes p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.75;
}

.map-embed {
  overflow: hidden;
  margin: 24px 0 22px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.map-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 260px;
  border: 0;
}

/* Footer */
.site-footer {
  display: grid;
  gap: 34px;
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.72);
  padding: 54px clamp(28px, 5vw, 72px);
}

.footer-sites {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
}

.footer-site {
  display: block;
}

.footer-site-link {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: clamp(28px, 5vw, 76px);
}

.footer-logo-link {
  display: inline-block;
  transition: opacity 180ms ease;
}

.footer-logo-link:hover {
  opacity: 0.78;
}

.footer-logo {
  width: 230px;
  height: auto;
}

.site-footer p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer .footer-contact {
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.8;
}

.footer-social-icon {
  width: 22px;
  height: 22px;
  margin-top: 14px;
  opacity: 0.76;
}

.footer-home-link {
  width: fit-content;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  transition: color 180ms ease;
}

.footer-home-link:hover {
  color: #fff;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.62);
}

.footer-legal a:hover {
  color: #fff;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .two-column,
  .faq-access-grid,
  .footer-sites {
    grid-template-columns: 1fr;
  }

  .two-column-reverse .section-copy {
    order: -1;
  }

  .footer-site-link {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
    padding-top: 28px;
    padding-left: 0;
  }

  .space-grid,
  .scene-grid,
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reservation-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .reservation-panel .button-primary {
    width: 100%;
    min-height: 58px;
    padding: 0 24px;
  }

}

@media (max-width: 720px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .stay-scenes {
    width: min(100% - 36px, var(--container));
  }

  .header-inner {
    min-height: 72px;
    padding: 9px 18px;
  }

  .brand-logo {
    width: 112px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-content {
    width: min(100% - 36px, 760px);
    padding: 76px 0 62px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-logo-title {
    height: 166px;
    max-width: 100%;
  }

  .hero-logo-title img {
    width: auto;
    max-width: min(82vw, 360px);
  }

  .space-grid,
  .plan-grid,
  .amenity-list {
    grid-template-columns: 1fr;
  }

  .space-grid {
    display: flex;
    gap: 16px;
    width: auto;
    margin-right: -18px;
    margin-left: -18px;
    overflow-x: auto;
    padding: 0 18px 8px;
    scroll-padding: 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .space-grid::-webkit-scrollbar {
    display: none;
  }

  .space-card {
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: start;
  }

  .space-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
  }

  .space-dots button {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
    background: rgba(116, 109, 104, 0.26);
    cursor: pointer;
    padding: 0;
    transition: background 180ms ease, transform 180ms ease, width 180ms ease;
  }

  .space-dots button.is-active {
    width: 24px;
    border-radius: 999px;
    background: var(--color-pink-deep);
  }

  .space-dots button:focus-visible {
    outline: 2px solid var(--color-pink-deep);
    outline-offset: 4px;
  }

  .scene-grid {
    display: flex;
    gap: 16px;
    width: auto;
    margin-right: -18px;
    margin-left: -18px;
    overflow-x: auto;
    padding: 0 18px 8px;
    scroll-padding: 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .scene-grid::-webkit-scrollbar {
    display: none;
  }

  .scene-card {
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: start;
  }

  .amenity-list {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amenity-list li {
    display: flex;
    align-items: center;
    min-height: 42px;
    border: 1px solid rgba(183, 151, 139, 0.28);
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.72);
    font-size: 12px;
    padding: 0 14px;
  }

  .amenity-list li::before {
    position: static;
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    margin-right: 9px;
  }

  .scene-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
  }

  .scene-dots button {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
    background: rgba(116, 109, 104, 0.26);
    cursor: pointer;
    padding: 0;
    transition: background 180ms ease, transform 180ms ease, width 180ms ease;
  }

  .scene-dots button.is-active {
    width: 24px;
    border-radius: 999px;
    background: var(--color-pink-deep);
  }

  .scene-dots button:focus-visible {
    outline: 2px solid var(--color-pink-deep);
    outline-offset: 4px;
  }

  .image-stack {
    min-height: 340px;
  }

  .image-concept-main {
    width: 100%;
    height: 340px;
  }

  .reservation-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .reservation-panel .button-primary {
    width: 100%;
    min-height: 58px;
    padding: 0 24px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .hero-image {
    animation: none;
    transform: none;
  }
}
