:root {
  --bright-white: #ffffff;
  --white-soft: #fcfdff;
  --white-veil: rgba(255,255,255,0.78);
  --skywriting: #63c5da;
  --drizzle: #dce8f3;
  --cloud-dancer: #f5f8fc;
  --micro-chip: #242833;
  --directoire-blue: #365f97;
  --simply-green: #83bf60;
  --tangerine-tango: #dd6b2d;
  --silver-shadow: #b8c0cb;
  --silver-line: rgba(122, 139, 164, 0.18);
  --ink: #1f2d3d;
  --muted: #66758a;
  --max: 1220px;
  --radius: 30px;
  --radius-lg: 42px;
  --shadow-soft: 0 24px 60px rgba(120, 136, 160, 0.10);
  --shadow-card: 0 32px 90px rgba(119, 135, 161, 0.15);
  --shadow-float: 0 20px 50px rgba(138, 154, 180, 0.12);
  --border-soft: 1px solid rgba(118, 135, 158, 0.16);
  --gradient-accent: linear-gradient(135deg, rgba(99,197,218,0.95), rgba(54,95,151,0.92) 55%, rgba(131,191,96,0.9));
  --gradient-line: linear-gradient(90deg, rgba(99,197,218,0), rgba(99,197,218,0.95), rgba(184,192,203,0.95), rgba(131,191,96,0.85), rgba(99,197,218,0));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "Noto Sans TC", "Noto Sans JP", "Noto Sans KR", system-ui, sans-serif;
  line-height: 1.78;
  letter-spacing: 0.01em;
  background:
    radial-gradient(circle at 0% 0%, rgba(99,197,218,0.10), transparent 26%),
    radial-gradient(circle at 100% 14%, rgba(131,191,96,0.10), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 26%, #f7faff 72%, #f5f8fc 100%);
}
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
body::before {
  background:
    linear-gradient(120deg, rgba(255,255,255,0.55), transparent 36%),
    repeating-linear-gradient(90deg, rgba(184,192,203,0.045) 0, rgba(184,192,203,0.045) 1px, transparent 1px, transparent 120px);
  opacity: 0.58;
}
body::after {
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.72), transparent 18%),
    radial-gradient(circle at 84% 72%, rgba(255,255,255,0.68), transparent 18%);
  filter: blur(8px);
  opacity: 0.7;
}

::selection { background: rgba(99,197,218,0.18); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main, header, footer { position: relative; z-index: 1; }
.container { width: min(100% - 2rem, var(--max)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 10px;
  backdrop-filter: blur(18px) saturate(160%);
  background: linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.74));
  border-bottom: 1px solid rgba(255,255,255,0.84);
  box-shadow: 0 16px 40px rgba(129, 145, 168, 0.08);
}
.topbar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(92vw, 1240px);
  height: 1px;
  transform: translateX(-50%);
  background: var(--gradient-line);
  opacity: 0.72;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  gap: .18rem;
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 2.2rem;
  line-height: .95;
  font-weight: 700;
  letter-spacing: .08em;
  color: #28496f;
  text-shadow: 0 1px 0 rgba(255,255,255,0.85);
}
.brand small {
  font-family: "Inter", sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .38em;
  color: var(--silver-shadow);
}
.nav-links, .lang-switch {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.nav-links a,
.lang-switch button {
  position: relative;
  padding: .82rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  background: rgba(255,255,255,0.2);
  font: inherit;
  transition: transform .28s ease, color .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
  cursor: pointer;
}
.nav-links a::after,
.lang-switch button::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .5rem;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(99,197,218,0), rgba(54,95,151,0.95), rgba(131,191,96,0.9), rgba(99,197,218,0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s ease;
}
.nav-links a:hover,
.nav-links a.active,
.lang-switch button:hover,
.lang-switch button.active {
  color: var(--directoire-blue);
  background: rgba(255,255,255,0.88);
  border-color: rgba(118,135,158,0.16);
  box-shadow: var(--shadow-float);
  transform: translateY(-1px);
}
.nav-links a:hover::after,
.nav-links a.active::after,
.lang-switch button:hover::after,
.lang-switch button.active::after { transform: scaleX(1); }

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--bright-white);
}
.hero {
  min-height: 96vh;
  display: grid;
  align-items: center;
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(112deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 28%, rgba(23,33,54,0.30) 56%, rgba(32,58,96,0.55) 100%),
    linear-gradient(180deg, rgba(16,26,44,0.16), rgba(16,26,44,0.34));
}
.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto auto -18% -8%;
  width: 50vw;
  height: 50vw;
  min-width: 340px;
  min-height: 340px;
  border-radius: 50%;
  z-index: 1;
  background: radial-gradient(circle, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.05) 36%, transparent 68%);
  filter: blur(2px);
}
.hero-content,
.page-hero .container {
  position: relative;
  z-index: 2;
}
.hero-content {
  width: min(100% - 2rem, 1140px);
  margin: 0 auto;
  padding: 9rem 0 6.5rem;
}
.hero-content > * { max-width: 780px; }
.slides, .slides::after { position: absolute; inset: 0; }
.slides::after {
  content: "";
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(17,28,49,0.16));
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 18s infinite;
  transform: scale(1.08);
  filter: saturate(0.98) brightness(0.96);
}
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 6s; }
.slide:nth-child(3) { animation-delay: 12s; }
@keyframes heroFade {
  0%, 28% { opacity: 1; }
  33%, 100% { opacity: 0; }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  padding: .65rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 14px 34px rgba(17,28,49,0.08);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero h1,
.page-hero h1,
.section-head h2,
.overlay-text h3,
.card h3 {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  letter-spacing: .01em;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(3.2rem, 6.2vw, 6.1rem);
  line-height: .94;
  margin: 1.15rem 0 1.2rem;
  font-weight: 700;
  text-wrap: balance;
  text-shadow: 0 12px 40px rgba(12,20,38,0.24);
}
.hero p,
.page-hero p {
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  color: rgba(255,255,255,0.94);
  max-width: 52rem;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: 1rem 1.38rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease, color .28s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--bright-white);
  background: var(--gradient-accent);
  box-shadow: 0 18px 44px rgba(54,95,151,0.28);
}
.btn-secondary {
  color: var(--bright-white);
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin-top: 2.5rem;
}
.stat {
  padding: 1.15rem 1.15rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 20px 44px rgba(12,20,38,0.10);
}
.stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.35rem;
  line-height: 1;
  margin-bottom: .34rem;
}
.stat span { color: rgba(255,255,255,0.88); }

main section { padding: 6.5rem 0; }
.section-head {
  position: relative;
  max-width: 780px;
  margin-bottom: 2.6rem;
}
.section-head::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin-top: 1.3rem;
  background: var(--gradient-line);
}
.kicker {
  color: var(--silver-shadow);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 800;
}
.section-head h2 {
  font-size: clamp(2.8rem, 4.2vw, 4rem);
  margin: .5rem 0 .9rem;
  line-height: .95;
  color: #294a73;
  text-wrap: balance;
}
.section-head p { color: var(--muted); font-size: 1.02rem; }

.feature-grid,
.info-grid,
.travel-grid,
.contact-grid,
.booking-grid {
  display: grid;
  gap: 1.55rem;
}
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.info-grid { grid-template-columns: repeat(2, 1fr); }
.travel-grid { grid-template-columns: repeat(2, 1fr); }
.contact-grid { grid-template-columns: 1.08fr .92fr; }
.booking-grid { grid-template-columns: repeat(2, 1fr); }

.card,
.social-chip,
.overlay-text,
.multi-bg,
.parallax,
.blend-bg,
.embed-map iframe {
  box-shadow: var(--shadow-card);
}
.card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.84));
  border: var(--border-soft);
  border-radius: var(--radius);
  padding: 1.9rem;
  backdrop-filter: blur(16px);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: var(--gradient-line);
  opacity: .85;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.38), transparent 42%);
  pointer-events: none;
}
.card h3 {
  position: relative;
  margin: .12rem 0 .85rem;
  font-size: 2.15rem;
  line-height: 1.02;
  color: #325781;
}
.card p,
.card li { position: relative; color: var(--ink); }
.icon-badge {
  width: 3.45rem;
  height: 3.45rem;
  display: inline-grid;
  place-items: center;
  border-radius: 20px;
  margin-bottom: 1.15rem;
  color: white;
  font-size: 1.18rem;
  background: linear-gradient(145deg, rgba(54,95,151,0.98), rgba(99,197,218,0.94), rgba(131,191,96,0.9));
  box-shadow: 0 16px 36px rgba(54,95,151,0.22);
}

.page-hero {
  min-height: 64vh;
  display: grid;
  align-items: end;
}
.page-hero .container {
  padding-bottom: 3.8rem;
}
.page-hero .container > * { max-width: 760px; }
.parallax-stack { display: grid; gap: 1.5rem; }
.parallax,
.multi-bg,
.blend-bg {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  isolation: isolate;
  border: 1px solid rgba(255,255,255,0.38);
}
.parallax {
  min-height: 410px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.parallax::before,
.multi-bg::before,
.blend-bg::before {
  content: "";
  position: absolute;
  inset: 0;
}
.parallax::after,
.multi-bg::after,
.blend-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(255,255,255,0.16), rgba(255,255,255,0.03) 26%, rgba(17,27,46,0.18) 54%, rgba(36,55,88,0.34)),
    linear-gradient(180deg, rgba(17,27,46,0.04), rgba(17,27,46,0.24));
}
.overlay-text {
  position: absolute;
  inset: auto 1.5rem 1.5rem 1.5rem;
  z-index: 2;
  color: white;
  padding: 1.22rem 1.28rem;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(18,35,63,0.58));
  backdrop-filter: blur(16px) saturate(130%);
}
.overlay-text h3 {
  font-size: 2.1rem;
  margin: 0 0 .42rem;
}
.overlay-text p { margin: 0; color: rgba(255,255,255,0.92); }
.multi-bg, .blend-bg { min-height: 410px; }
.multi-bg::before {
  background-image: var(--bg1), var(--bg2), var(--bg3), var(--bg4);
  background-size: cover, 36%, 26%, 22%;
  background-position: center, 8% 14%, 88% 18%, 82% 84%;
  background-repeat: no-repeat;
  transform: scale(1.03);
}
.blend-bg::before {
  background-image: linear-gradient(135deg, rgba(255,255,255,.10), rgba(54,95,151,.28)), var(--bg1), var(--bg2);
  background-size: cover, cover, 34%;
  background-position: center, center, 92% 12%;
  background-blend-mode: screen, normal, soft-light;
}
.room-list,
.service-list,
.contact-list,
.transport-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .9rem;
}
.room-list li,
.service-list li,
.contact-list li,
.transport-list li {
  padding: 1rem 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,249,253,0.92));
  border: 1px solid rgba(118,135,158,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}
.social-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  align-items: center;
}
.social-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .68rem;
  padding: .95rem 1.12rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(250,252,255,0.88));
  border: var(--border-soft);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.social-chip:hover,
.booking-grid .card:hover,
.feature-grid .card:hover,
.info-grid .card:hover,
.travel-grid .card:hover,
.parallax:hover,
.multi-bg:hover,
.blend-bg:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 86px rgba(117, 133, 157, 0.18);
}
.embed-map iframe {
  width: 100%;
  min-height: 410px;
  border: 0;
  border-radius: var(--radius);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 2.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.64) 0%, rgba(245,248,252,0.98) 100%);
  border-top: 1px solid rgba(118,135,158,0.10);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(99,197,218,0.08), transparent 26%, rgba(184,192,203,0.12) 50%, transparent 74%, rgba(131,191,96,0.08));
}
.footer-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.small { color: var(--muted); font-size: .94rem; }
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .feature-grid,
  .info-grid,
  .travel-grid,
  .contact-grid,
  .booking-grid,
  .stats { grid-template-columns: 1fr; }
  .nav {
    padding: .6rem 0 1rem;
    align-items: flex-start;
    flex-direction: column;
  }
  .hero { min-height: 88vh; }
  .parallax { background-attachment: scroll; }
}

@media (max-width: 720px) {
  .topbar { padding-top: 0; }
  main section { padding: 4.6rem 0; }
  .hero-content { padding: 7.4rem 0 4.4rem; }
  .hero h1, .page-hero h1 { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .section-head h2 { font-size: clamp(2.45rem, 9vw, 3.2rem); }
  .multi-bg::before,
  .blend-bg::before { background-size: cover, 42%, 34%, 28%; }
  .overlay-text { inset: auto 1rem 1rem 1rem; }
  .card { padding: 1.5rem; }
  .brand { font-size: 1.9rem; }
}



/* Ultra scroll scene upgrade */
html { overflow-x: hidden; }
body { overflow-x: hidden; }

.hero,
.page-hero,
.parallax,
.multi-bg,
.blend-bg,
.card,
.section-head,
.contact-grid,
.info-grid,
.travel-grid {
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(248,251,255,0.42) 45%, rgba(248,251,255,0.96) 100%);
  pointer-events: none;
}

.hero .slides,
.page-hero {
  transform: translateY(calc(var(--hero-shift, 0px) * -0.8)) scale(var(--hero-scale, 1));
  transition: transform .25s linear;
}

.hero-content,
.page-hero .container {
  position: relative;
  z-index: 2;
  transform: translateY(var(--hero-content-shift, 0px));
  transition: transform .25s linear;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 72px, 0) scale(.965);
  filter: blur(10px);
  transition:
    opacity .9s cubic-bezier(.2,.8,.2,1),
    transform 1.05s cubic-bezier(.2,.8,.2,1),
    filter 1s ease,
    box-shadow .5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal.scene-active {
  transform:
    translate3d(0, calc(var(--scene-shift, 0px) * -0.16), 0)
    scale(calc(1 + var(--scene-depth, 0) * 0.018))
    rotateX(calc(var(--scene-tilt, 0deg) * 0.35));
}

.page-hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: 9rem 0 4rem;
  background-attachment: fixed !important;
}

.page-hero .container {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.14));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 32px;
  padding: 2rem 2rem 2.1rem;
  box-shadow: 0 28px 80px rgba(80, 102, 136, 0.14);
}

.parallax-stack {
  gap: 1.6rem;
}

.parallax,
.multi-bg,
.blend-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.parallax::before,
.multi-bg::before,
.blend-bg::before {
  transform: scale(calc(1.02 + var(--scene-depth, 0) * 0.012)) translateY(calc(var(--scene-shift, 0px) * -0.12));
  transition: transform .2s linear;
}
.parallax::after,
.multi-bg::after,
.blend-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0) 24%, rgba(255,255,255,0.18) 100%),
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.28), transparent 22%),
    radial-gradient(circle at 80% 80%, rgba(99,197,218,0.12), transparent 24%);
  opacity: calc(.72 + var(--scene-depth, 0) * .02);
  pointer-events: none;
}
.overlay-text,
.card {
  position: relative;
  z-index: 1;
}

.parallax .overlay-text,
.multi-bg .overlay-text,
.blend-bg .overlay-text {
  transform:
    translateY(calc(var(--scene-shift, 0px) * -0.1))
    scale(calc(1 + var(--scene-depth, 0) * 0.01));
  transition: transform .2s linear;
}

.card {
  transition:
    transform .25s linear,
    box-shadow .35s ease,
    border-color .35s ease,
    background .35s ease;
}
.card.scene-active {
  transform:
    translateY(calc(var(--scene-shift, 0px) * -0.08))
    scale(calc(1 + var(--scene-depth, 0) * 0.01));
  box-shadow: 0 30px 90px rgba(124, 141, 167, 0.18);
  border-color: rgba(99, 197, 218, 0.16);
}

.scene-divider {
  height: 120px;
  position: relative;
  overflow: hidden;
}
.scene-divider::before {
  content: "";
  position: absolute;
  inset: 18px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(99,197,218,0), rgba(99,197,218,.55), rgba(184,192,203,.85), rgba(131,191,96,.48), rgba(99,197,218,0));
}
.scene-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(78vw, 880px);
  height: 100%;
  transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(255,255,255,.92), rgba(255,255,255,0) 68%);
  opacity: .9;
}

.topbar.is-scrolled {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.82));
  box-shadow: 0 20px 46px rgba(129, 145, 168, 0.11);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.visible,
  .reveal.scene-active,
  .card.scene-active,
  .hero .slides,
  .page-hero,
  .hero-content,
  .page-hero .container,
  .parallax::before,
  .multi-bg::before,
  .blend-bg::before,
  .parallax .overlay-text,
  .multi-bg .overlay-text,
  .blend-bg .overlay-text {
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 900px) {
  .page-hero {
    min-height: 56vh;
    padding: 7rem 0 2.6rem;
    background-attachment: scroll !important;
  }
  .page-hero .container {
    padding: 1.35rem;
    border-radius: 24px;
  }
  .scene-divider { height: 72px; }
}



/* Floating booking button */
.floating-booking {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  transition: opacity .25s ease, transform .25s ease;
}
.floating-booking .fab-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(118,135,158,0.14);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px) saturate(160%);
  color: var(--directoire-blue);
  box-shadow: 0 24px 60px rgba(112,129,156,0.18);
  font-weight: 700;
  letter-spacing: .03em;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.floating-booking .fab-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 70px rgba(112,129,156,0.22);
}
.floating-booking .fab-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: white;
  background: var(--gradient-accent);
  box-shadow: 0 12px 28px rgba(54,95,151,0.22);
  font-size: 1.05rem;
}
.floating-booking .fab-label {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.floating-booking .fab-label small {
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 4px;
}
.floating-booking .fab-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 24px;
  border: var(--border-soft);
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(16px) saturate(160%);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(8px) scale(.98);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.floating-booking.open .fab-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.floating-booking .booking-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,251,255,0.95));
  border: 1px solid rgba(118,135,158,0.12);
  color: var(--ink);
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.floating-booking .booking-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(118,135,158,0.14);
  border-color: rgba(99,197,218,0.22);
}
.floating-booking .booking-link span:last-child {
  color: var(--directoire-blue);
  font-size: .92rem;
}
.floating-booking.is-hidden {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}
@media (max-width: 720px) {
  .floating-booking {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
  .floating-booking .fab-main {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }
}


/* Floating quick actions */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 85;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  transition: opacity .25s ease, transform .25s ease;
}
.floating-actions .fa-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 228px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(118,135,158,0.14);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px) saturate(160%);
  color: var(--directoire-blue);
  box-shadow: 0 24px 60px rgba(112,129,156,0.18);
  font-weight: 700;
  letter-spacing: .03em;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.floating-actions .fa-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 70px rgba(112,129,156,0.22);
}
.floating-actions .fa-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: white;
  background: var(--gradient-accent);
  box-shadow: 0 12px 28px rgba(54,95,151,0.22);
  font-size: 1.05rem;
}
.floating-actions .fa-label {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.floating-actions .fa-label small {
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 4px;
}
.floating-actions .fa-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 24px;
  border: var(--border-soft);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px) saturate(160%);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(8px) scale(.98);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.floating-actions.open .fa-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.floating-actions .action-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,251,255,0.95));
  border: 1px solid rgba(118,135,158,0.12);
  color: var(--ink);
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.floating-actions .action-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(118,135,158,0.14);
  border-color: rgba(99,197,218,0.22);
}
.floating-actions .action-link .meta {
  color: var(--directoire-blue);
  font-size: .9rem;
}
.floating-actions .action-link.phone .meta { color: var(--simply-green); }
.floating-actions .action-link.line .meta { color: #06c755; }
.floating-actions .action-link.ig .meta { color: #dd2a7b; }
.floating-actions .action-link.book .meta { color: var(--directoire-blue); }
.floating-actions.is-hidden {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}
@media (max-width: 720px) {
  .floating-actions {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
  .floating-actions .fa-main {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }
}
