    :root {
      /* 日光綠築 CIS — Forest Green Theme */
      --forest-deep: #084136;
      --forest-darker: #052b24;
      --forest-soft: #0e5246;
      --mint-white: #DDEAE5;
      --warm-white: #FAF2F0;
      --ivory: #FAF2F0;
      --gold: #E6A401;
      --gold-deep: #D08C03;
      --gold-soft: rgba(230, 164, 1, 0.15);
      --charcoal: #505350;
      --charcoal-deep: #3A3C3A;
      --white: #ffffff;
      --black: #1a1a1a;

      --font-zh: 'Noto Serif TC', '思源宋體', '宋體', serif;
      --font-en: 'Bodoni 72', 'Bodoni Moda', Georgia, 'Times New Roman', serif;
      --font-en-fallback: Georgia, 'Bodoni 72', serif;

      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
    body {
      font-family: var(--font-zh);
      color: var(--charcoal);
      background: var(--ivory);
      overflow-x: hidden;
      line-height: 1.7;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

    /* ========================================
       NAVIGATION (LOHERB Group aligned)
    ======================================== */
    nav#nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      height: 76px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 clamp(24px, 4vw, 64px);
      background: transparent;
      transition: all 0.6s var(--ease-out);
    }
    nav#nav::before {
      content: ''; position: absolute; inset: 0;
      background: rgba(250, 242, 240, 0);
      backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px);
      border-bottom: 1px solid transparent;
      transition: all 0.6s var(--ease-out);
      pointer-events: none;
    }
    nav#nav.scrolled::before {
      background: rgba(250, 242, 240, 0.85);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(230, 164, 1, 0.12);
    }

    .nav-logo {
      position: relative; z-index: 2;
      display: flex; flex-direction: column; align-items: center;
      line-height: 1; gap: 0;
      transition: opacity 0.4s;
    }
    .nav-logo .zh-top,
    .nav-logo .zh-bottom {
      font-family: var(--font-zh);
      font-weight: 500; font-size: 1rem;
      letter-spacing: 0.2em; padding-left: 0.2em;
      color: var(--gold);
      transition: color 0.6s;
    }
    .nav-logo .en {
      font-family: var(--font-en);
      font-size: 0.45rem; letter-spacing: 0.35em;
      text-transform: uppercase; padding-left: 0.35em;
      color: var(--gold);
    }

    .nav-links {
      position: relative; z-index: 2;
      display: flex; align-items: center;
      gap: clamp(14px, 2.2vw, 32px);
    }
    .nav-links a {
      font-size: 0.78rem; letter-spacing: 0.18em;
      color: rgba(255, 253, 245, 0.78);
      transition: color 0.4s;
    }
    nav#nav.scrolled .nav-links a { color: var(--charcoal); }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a.book {
      padding: 0.55rem 1.4rem;
      border: 1px solid var(--gold); color: var(--gold);
      letter-spacing: 0.22em;
      transition: all 0.4s;
    }
    .nav-links a.book:hover { background: var(--gold); color: var(--forest-deep); }

    .nav-lang {
      position: relative; z-index: 2;
      display: flex; align-items: center; gap: 8px;
      margin-left: clamp(12px, 2vw, 24px);
      padding-left: clamp(12px, 2vw, 24px);
      border-left: 1px solid rgba(255, 253, 245, 0.2);
      font-family: var(--font-en-fallback);
      font-size: 0.7rem; letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    nav#nav.scrolled .nav-lang { border-left-color: rgba(80, 83, 80, 0.2); }
    .nav-lang a { color: rgba(255, 253, 245, 0.55); transition: color 0.4s; }
    nav#nav.scrolled .nav-lang a { color: rgba(80, 83, 80, 0.6); }
    .nav-lang a.active, .nav-lang a:hover { color: var(--gold); }
    .nav-lang-sep { color: rgba(255, 253, 245, 0.3); }
    nav#nav.scrolled .nav-lang-sep { color: rgba(80, 83, 80, 0.3); }

    .nav-menu-btn {
      display: none; position: relative; z-index: 2;
      width: 32px; height: 24px;
      flex-direction: column; justify-content: space-between; align-items: flex-end;
    }
    .nav-menu-btn span {
      display: block; height: 1px; background: var(--warm-white);
      transition: all 0.4s var(--ease-out);
    }
    .nav-menu-btn span:nth-child(1) { width: 32px; }
    .nav-menu-btn span:nth-child(2) { width: 24px; }
    .nav-menu-btn span:nth-child(3) { width: 28px; }
    nav#nav.scrolled .nav-menu-btn span { background: var(--charcoal); }
    .nav-menu-btn.active span { background: var(--warm-white) !important; }
    .nav-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); width: 28px; }
    .nav-menu-btn.active span:nth-child(2) { opacity: 0; width: 0; }
    .nav-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); width: 28px; }

    .mobile-menu {
      position: fixed; inset: 0; z-index: 999;
      background: var(--forest-deep);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 28px;
      opacity: 0; visibility: hidden;
      transition: opacity 0.5s ease, visibility 0.5s;
    }
    .mobile-menu.open { opacity: 1; visibility: visible; }
    .mobile-menu a {
      font-family: var(--font-zh);
      font-size: 1.1rem; letter-spacing: 0.3em;
      color: rgba(255, 253, 245, 0.75);
      transition: color 0.3s;
    }
    .mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }
    .mobile-lang {
      display: flex; gap: 12px; align-items: center;
      margin-top: 16px; padding-top: 24px;
      border-top: 1px solid rgba(255, 253, 245, 0.15);
      font-family: var(--font-en-fallback);
      font-size: 0.9rem; letter-spacing: 0.2em;
    }
    .mobile-lang a.active { color: var(--gold); }
    .mobile-lang-sep { color: rgba(255, 253, 245, 0.3); }

    @media (max-width: 900px) {
      .nav-links, .nav-lang { display: none; }
      .nav-menu-btn { display: flex; }
    }

    /* ========================================
       HERO
    ======================================== */
    .hero {
      height: 100vh; min-height: 700px;
      position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      background: var(--forest-darker);
    }
    .hero-bg { position: absolute; inset: 0; }
    .hero-slide {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 0; transform: scale(1.08);
      transition: opacity 1.8s ease-in-out, transform 8s linear;
      will-change: opacity, transform;
      filter: saturate(1.05);
    }
    .hero-slide.active { opacity: 1; transform: scale(1); }
    .hero::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(5, 43, 36, 0.45) 0%, rgba(5, 43, 36, 0.15) 35%, rgba(5, 43, 36, 0.55) 100%);
      pointer-events: none;
    }

    .hero-content {
      position: relative; z-index: 1;
      text-align: center; color: var(--warm-white);
      display: flex; flex-direction: column; align-items: center;
    }
    /* CIS-correct vertical logo: 日 / LOHERB / 光 */
    .hero-logo-stack {
      position: relative;
      display: flex; flex-direction: column; align-items: center;
      gap: 0.4rem; margin-bottom: 2.6rem;
      padding: 3.6rem 5.4rem;
    }
    .hero-logo-stack::before {
      content: ''; position: absolute; inset: 0; z-index: -1;
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(14px) saturate(1.1);
      -webkit-backdrop-filter: blur(14px) saturate(1.1);
      -webkit-mask-image: radial-gradient(ellipse 50% 70% at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.92) 12%, rgba(0,0,0,0.74) 26%, rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.28) 58%, rgba(0,0,0,0.13) 72%, rgba(0,0,0,0.05) 84%, rgba(0,0,0,0.01) 94%, rgba(0,0,0,0) 100%);
      mask-image: radial-gradient(ellipse 50% 70% at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.92) 12%, rgba(0,0,0,0.74) 26%, rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.28) 58%, rgba(0,0,0,0.13) 72%, rgba(0,0,0,0.05) 84%, rgba(0,0,0,0.01) 94%, rgba(0,0,0,0) 100%);
    }
    .hero-logo-stack .kanji {
      font-family: var(--font-zh);
      font-size: clamp(3.5rem, 7vw, 5.2rem);
      font-weight: 500;
      letter-spacing: 0; line-height: 1;
      color: var(--gold);
      text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 8px rgba(0,0,0,0.35);
    }
    .hero-logo-stack .en {
      font-family: var(--font-en);
      font-size: clamp(0.8rem, 1.2vw, 1.05rem);
      letter-spacing: 0.55em;
      color: var(--gold); text-transform: uppercase;
      text-indent: 0.55em;
      margin: 0.55rem 0;
      text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 8px rgba(0,0,0,0.35);
    }
    .hero-logo-stack .en-rule {
      width: 28px; height: 1px;
      background: var(--gold); opacity: 0.5;
      margin: 0.2rem 0;
    }

    .hero-divider {
      width: 1px; height: 40px;
      background: var(--gold); opacity: 0.4;
      margin: 0 auto 2rem;
    }

    .hero-tagline-wrap {
      position: relative;
      padding: 3rem 5rem;
    }
    .hero-tagline-wrap::before {
      content: ''; position: absolute; inset: 0; z-index: -1;
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(14px) saturate(1.1);
      -webkit-backdrop-filter: blur(14px) saturate(1.1);
      -webkit-mask-image: radial-gradient(ellipse 45% 55% at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.92) 12%, rgba(0,0,0,0.74) 26%, rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.28) 58%, rgba(0,0,0,0.13) 72%, rgba(0,0,0,0.05) 84%, rgba(0,0,0,0.01) 94%, rgba(0,0,0,0) 100%);
      mask-image: radial-gradient(ellipse 45% 55% at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.92) 12%, rgba(0,0,0,0.74) 26%, rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.28) 58%, rgba(0,0,0,0.13) 72%, rgba(0,0,0,0.05) 84%, rgba(0,0,0,0.01) 94%, rgba(0,0,0,0) 100%);
    }
    .hero-tagline-en {
      font-family: var(--font-en-fallback);
      font-size: 0.85rem; letter-spacing: 0.5em;
      color: rgba(255, 253, 245, 0.55);
      text-transform: uppercase;
      text-indent: 0.5em;
      margin-bottom: 0.6rem;
      text-shadow: 0 2px 24px rgba(0,0,0,0.5), 0 1px 8px rgba(0,0,0,0.3);
    }
    .hero-tagline-zh {
      font-size: 1.05rem; letter-spacing: 0.35em;
      color: rgba(255, 253, 245, 0.7);
      font-weight: 300;
      text-indent: 0.35em;
      text-shadow: 0 2px 24px rgba(0,0,0,0.5), 0 1px 8px rgba(0,0,0,0.3);
    }

    .scroll-indicator {
      position: absolute; bottom: 2.5rem; left: 50%;
      transform: translateX(-50%); z-index: 1;
      display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
    }
    .scroll-indicator span {
      font-family: var(--font-en-fallback); font-size: 0.55rem;
      letter-spacing: 0.4em; color: rgba(255, 253, 245, 0.4);
      text-transform: uppercase;
    }
    .scroll-line {
      width: 1px; height: 30px; position: relative; overflow: hidden;
      background: rgba(255, 253, 245, 0.12);
    }
    .scroll-line::after {
      content: ''; position: absolute; top: -100%; left: 0;
      width: 1px; height: 100%; background: var(--gold);
      animation: scrollDown 2s ease-in-out infinite;
    }
    @keyframes scrollDown {
      0% { top: -100%; } 50% { top: 0; } 100% { top: 100%; }
    }

    /* ========================================
       SHARED ELEMENTS
    ======================================== */
    .section-label {
      font-family: var(--font-en-fallback);
      font-size: 0.58rem; letter-spacing: 0.55em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 0.9rem;
    }
    .section-title {
      font-size: clamp(1.4rem, 2vw, 1.8rem);
      font-weight: 700;
      line-height: 1.7; margin-bottom: 1.2rem;
      letter-spacing: 0.05em;
      color: var(--forest-deep);
    }
    .section-desc {
      font-size: 0.92rem; line-height: 2.3;
      font-weight: 300; max-width: 540px;
      letter-spacing: 0.02em;
      color: rgba(80, 83, 80, 0.65);
    }
    .pull-quote {
      font-size: 0.82rem; font-weight: 200;
      letter-spacing: 0.2em; color: var(--gold-deep);
      margin-top: 2.5rem; font-style: italic;
      opacity: 0.9;
    }
    .btn-gold {
      display: inline-block; padding: 0.85rem 2.8rem;
      border: 1px solid var(--gold); color: var(--gold);
      font-size: 0.75rem; letter-spacing: 0.3em;
      transition: all 0.4s;
      margin-top: 2.4rem;
    }
    .btn-gold:hover { background: var(--gold); color: var(--forest-deep); }

    /* ========================================
       PROMISE / SPLIT SECTIONS
    ======================================== */
    .split {
      display: grid; grid-template-columns: 1fr 1fr;
      min-height: 92vh;
    }
    .split-img { position: relative; overflow: hidden; }
    .split-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 8s ease;
    }
    .split-img:hover img { transform: scale(1.04); }
    .split-text {
      display: flex; flex-direction: column;
      justify-content: center;
      padding: clamp(3rem, 7vw, 6rem);
    }
    .split-text.dark { background: var(--forest-deep); }
    .split-text.dark .section-title { color: var(--mint-white); }
    .split-text.dark .section-desc { color: rgba(255, 253, 245, 0.6); }
    .split-text.dark .pull-quote { color: var(--gold); }
    .split-text.light { background: var(--ivory); }
    .split-text.cream { background: var(--mint-white); }
    .split-text.cream .section-desc { color: rgba(8, 65, 54, 0.7); }
    .split-text.cream .section-title { color: var(--forest-deep); }

    @media (max-width: 768px) {
      .split { grid-template-columns: 1fr; min-height: auto; }
      .split-img { aspect-ratio: 4/3; }
      .split-text { padding: 4rem 2rem; }
      .split.flip .split-img { order: -1; }
    }

    /* ========================================
       VILLA STRIP (full bleed image + center text)
    ======================================== */
    .villa-strip {
      background: var(--forest-darker);
      padding: 9rem 4rem; min-height: 80vh;
      display: flex; flex-direction: column; justify-content: center;
      text-align: center; position: relative; overflow: hidden;
    }
    .villa-strip-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 0.95;
    }
    .villa-strip::after { content: none; }
    .villa-strip-text-wrap {
      position: relative; z-index: 2;
      display: inline-block; align-self: center;
      padding: 4rem 6rem;
      margin: 0 auto 2.5rem;
    }
    .villa-strip-text-wrap::before {
      content: ''; position: absolute; inset: 0; z-index: 0;
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(14px) saturate(1.1);
      -webkit-backdrop-filter: blur(14px) saturate(1.1);
      -webkit-mask-image: radial-gradient(ellipse 50% 65% at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.92) 12%, rgba(0,0,0,0.74) 26%, rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.28) 58%, rgba(0,0,0,0.13) 72%, rgba(0,0,0,0.05) 84%, rgba(0,0,0,0.01) 94%, rgba(0,0,0,0) 100%);
      mask-image: radial-gradient(ellipse 50% 65% at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.92) 12%, rgba(0,0,0,0.74) 26%, rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.28) 58%, rgba(0,0,0,0.13) 72%, rgba(0,0,0,0.05) 84%, rgba(0,0,0,0.01) 94%, rgba(0,0,0,0) 100%);
    }
    .villa-strip-text-wrap > * { position: relative; z-index: 1; }
    .villa-strip .section-title {
      color: var(--mint-white);
      text-shadow: 0 2px 16px rgba(0,0,0,0.5), 0 1px 6px rgba(0,0,0,0.3);
    }
    .villa-strip .section-label {
      text-shadow: 0 1px 8px rgba(0,0,0,0.4);
    }
    .villa-strip .section-desc {
      margin: 0 auto 0;
      text-align: center;
      color: rgba(255, 253, 245, 0.6);
      text-shadow: 0 1px 8px rgba(0,0,0,0.4);
    }
    .amenities-row {
      display: flex; justify-content: center;
      gap: 2.5rem; flex-wrap: wrap;
      position: relative; z-index: 2;
      max-width: 920px; margin: 0 auto;
    }
    .amenity {
      text-align: center;
    }
    .amenity-letter {
      font-family: var(--font-en-fallback);
      font-size: 1.6rem; color: var(--gold);
      letter-spacing: 0.1em; line-height: 1;
      margin-bottom: 0.5rem; font-weight: 400;
      text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    }
    .amenity-name {
      font-size: 0.78rem; color: rgba(255, 253, 245, 0.6);
      letter-spacing: 0.18em; font-weight: 300;
      text-shadow: 0 1px 6px rgba(0,0,0,0.4);
    }

    /* ========================================
       QUOTE BANNER
    ======================================== */
    .quote-banner {
      background: var(--forest-darker);
      text-align: center;
      padding: 7rem 2rem; min-height: 70vh;
      position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .quote-banner-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 1;
    }
    .quote-text-wrap {
      position: relative;
      display: inline-block;
      padding: 3rem 4rem;
      isolation: isolate;
    }
    .quote-text-wrap::before {
      content: ''; position: absolute; inset: 0; z-index: -1;
      background: rgba(0, 0, 0, 0.32);
      backdrop-filter: blur(14px) saturate(1.1);
      -webkit-backdrop-filter: blur(14px) saturate(1.1);
      -webkit-mask-image: radial-gradient(ellipse 60% 95% at center, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.82) 18%, rgba(0,0,0,0.66) 34%, rgba(0,0,0,0.46) 50%, rgba(0,0,0,0.26) 66%, rgba(0,0,0,0.12) 80%, rgba(0,0,0,0.04) 90%, rgba(0,0,0,0.01) 97%, rgba(0,0,0,0) 100%);
      mask-image: radial-gradient(ellipse 60% 95% at center, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.82) 18%, rgba(0,0,0,0.66) 34%, rgba(0,0,0,0.46) 50%, rgba(0,0,0,0.26) 66%, rgba(0,0,0,0.12) 80%, rgba(0,0,0,0.04) 90%, rgba(0,0,0,0.01) 97%, rgba(0,0,0,0) 100%);
    }
    .quote-text-wrap > * { position: relative; z-index: 1; }
    .quote-zh {
      font-size: clamp(1.15rem, 1.9vw, 1.55rem); font-weight: 500;
      color: var(--warm-white);
      letter-spacing: 0.22em; line-height: 2.05;
      margin-bottom: 1.4rem; position: relative;
      text-indent: 0.22em;
      text-shadow: 0 2px 18px rgba(0,0,0,0.85), 0 1px 4px rgba(0,0,0,0.6);
    }
    .quote-cite {
      font-family: var(--font-en-fallback);
      font-size: 0.72rem; letter-spacing: 0.42em;
      color: rgba(230, 164, 1, 0.95);
      text-transform: uppercase; font-style: italic;
      position: relative; text-indent: 0.42em;
      text-shadow: 0 1px 8px rgba(0,0,0,0.6);
    }
    .quote-deco {
      width: 40px; height: 1px;
      background: var(--gold); opacity: 0.45;
      margin: 1.6rem auto;
    }

    /* ========================================
       VENUES / TRIO GRID
    ======================================== */
    .moments {
      background: var(--ivory);
      padding: clamp(5rem, 8vw, 7rem) clamp(2rem, 5vw, 4rem);
    }
    .moments-header {
      text-align: center; margin-bottom: 4.5rem;
    }
    .moments-header .section-label { display: inline-block; }
    .moments-header .section-title { color: var(--forest-deep); }
    .moments-header .section-desc { margin: 0 auto; text-align: center; }
    .moments-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem; max-width: 1240px; margin: 0 auto;
    }
    .moment-card {
      position: relative; overflow: hidden;
      aspect-ratio: 3/4;
    }
    .moment-card-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transition: transform 6s ease;
    }
    .moment-card:hover .moment-card-bg { transform: scale(1.05); }
    .moment-info {
      position: absolute; bottom: 0; left: 0; right: 0;
      z-index: 1; padding: 2.4rem 2rem;
    }
    .moment-info::before {
      content: ''; position: absolute; inset: 0; z-index: -1;
      background: rgba(0, 0, 0, 0.34);
      backdrop-filter: blur(14px) saturate(1.1);
      -webkit-backdrop-filter: blur(14px) saturate(1.1);
      -webkit-mask-image: radial-gradient(ellipse 70% 95% at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.92) 12%, rgba(0,0,0,0.74) 26%, rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.28) 58%, rgba(0,0,0,0.13) 72%, rgba(0,0,0,0.05) 84%, rgba(0,0,0,0.01) 94%, rgba(0,0,0,0) 100%);
      mask-image: radial-gradient(ellipse 70% 95% at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.92) 12%, rgba(0,0,0,0.74) 26%, rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.28) 58%, rgba(0,0,0,0.13) 72%, rgba(0,0,0,0.05) 84%, rgba(0,0,0,0.01) 94%, rgba(0,0,0,0) 100%);
    }
    .moment-info .en {
      font-family: var(--font-en-fallback);
      font-size: 0.55rem; letter-spacing: 0.4em;
      color: var(--gold); text-transform: uppercase;
      margin-bottom: 0.6rem;
      text-shadow: 0 1px 6px rgba(0,0,0,0.45);
    }
    .moment-info h3 {
      font-size: 1.2rem; font-weight: 600;
      color: var(--warm-white); margin-bottom: 0.6rem;
      letter-spacing: 0.12em;
      text-shadow: 0 2px 12px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.3);
    }
    .moment-info p {
      font-size: 0.74rem; color: rgba(255, 253, 245, 0.88);
      line-height: 1.95; font-weight: 300; letter-spacing: 0.04em;
      text-shadow: 0 1px 8px rgba(0,0,0,0.45);
    }
    .moment-info a.cta {
      display: inline-block; margin-top: 0.9rem;
      font-family: var(--font-en-fallback);
      font-size: 0.62rem; letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      border-bottom: 1px solid rgba(230, 164, 1, 0.45);
      padding-bottom: 3px;
      transition: color 0.3s, border-color 0.3s;
    }
    .moment-info a.cta:hover { color: var(--mint-white); border-color: var(--mint-white); }

    @media (max-width: 900px) { .moments-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 640px) { .moments-grid { grid-template-columns: 1fr; } }

    /* ========================================
       BESPOKE / CAPABILITIES ROW
    ======================================== */
    .bespoke {
      background: var(--white);
      padding: clamp(5rem, 8vw, 7rem) clamp(2rem, 5vw, 4rem);
    }
    .bespoke-header { text-align: center; margin-bottom: 4rem; }
    .bespoke-header .section-label { display: inline-block; }
    .bespoke-grid {
      display: grid; grid-template-columns: repeat(5, 1fr);
      max-width: 1100px; margin: 0 auto;
      border-top: 1px solid rgba(8, 65, 54, 0.1);
    }
    .bespoke-item {
      text-align: center;
      padding: 2.6rem 1.4rem;
      border-right: 1px solid rgba(8, 65, 54, 0.1);
      border-bottom: 1px solid rgba(8, 65, 54, 0.1);
      transition: background 0.4s;
    }
    .bespoke-item:last-child { border-right: none; }
    .bespoke-item:hover { background: rgba(230, 164, 1, 0.06); }
    .bespoke-item .en-label {
      font-family: var(--font-en-fallback);
      font-size: 0.55rem; letter-spacing: 0.3em;
      color: var(--gold); text-transform: uppercase;
      margin-bottom: 0.8rem;
    }
    .bespoke-item h4 {
      font-size: 0.92rem; font-weight: 600;
      color: var(--forest-deep); letter-spacing: 0.1em;
      margin-bottom: 0.5rem;
    }
    .bespoke-item p {
      font-size: 0.72rem; color: rgba(80, 83, 80, 0.6);
      line-height: 1.9; font-weight: 300; letter-spacing: 0.02em;
    }
    @media (max-width: 900px) {
      .bespoke-grid { grid-template-columns: repeat(2, 1fr); }
      .bespoke-item { border-right: 1px solid rgba(8, 65, 54, 0.1) !important; }
      .bespoke-item:nth-child(2n) { border-right: none !important; }
    }

    /* ========================================
       JOURNAL
    ======================================== */
    .journal-section {
      background: #ffffff;
      padding: clamp(5rem, 8vw, 7rem) clamp(2rem, 5vw, 4rem);
    }
    .journal-header { text-align: center; margin-bottom: 4rem; }
    .journal-header .section-label { display: inline-block; }
    .journal-header .section-title { color: var(--forest-deep); }
    .journal-header .section-desc { margin: 0 auto 0; color: rgba(8, 65, 54, 0.6); text-align: center; }
    .journal-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2rem; max-width: 1200px; margin: 0 auto;
    }
    .journal-card {
      background: var(--ivory);
      overflow: hidden;
      display: flex; flex-direction: column;
      transition: transform 0.4s, box-shadow 0.4s;
    }
    .journal-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 44px rgba(8, 65, 54, 0.14);
    }
    .journal-card-img {
      aspect-ratio: 4/3; overflow: hidden;
    }
    .journal-card-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 6s ease, filter 0.5s ease;
      filter: saturate(0.95);
    }
    .journal-card:hover .journal-card-img img {
      transform: scale(1.06);
      filter: saturate(1.1);
    }
    .journal-card-body {
      padding: 2rem 1.8rem;
      display: flex; flex-direction: column; flex: 1;
    }
    .journal-date {
      font-family: var(--font-en-fallback);
      font-size: 0.6rem; letter-spacing: 0.35em;
      text-transform: uppercase; color: var(--gold-deep);
      margin-bottom: 1rem;
    }
    .journal-title {
      font-size: 1.02rem; font-weight: 600;
      color: var(--forest-deep);
      letter-spacing: 0.04em;
      line-height: 1.7; margin-bottom: 0.8rem;
      transition: color 0.3s;
    }
    .journal-card:hover .journal-title { color: var(--gold-deep); }
    .journal-sub {
      font-size: 0.78rem; color: rgba(80, 83, 80, 0.65);
      line-height: 1.9; font-weight: 300; letter-spacing: 0.02em;
      flex: 1;
    }
    .journal-read {
      font-family: var(--font-en-fallback);
      font-size: 0.6rem; letter-spacing: 0.35em;
      text-transform: uppercase; color: var(--forest-deep);
      margin-top: 1.4rem;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .journal-footer {
      text-align: center; margin-top: 3rem;
    }
    @media (max-width: 900px) { .journal-grid { grid-template-columns: 1fr; } }

    /* ========================================
       REVIEWS — horizontal carousel
    ======================================== */
    .reviews-section {
      background: var(--ivory);
      padding: clamp(5rem, 8vw, 7rem) 0;
      position: relative; overflow: hidden;
    }
    .reviews-header {
      text-align: center; margin-bottom: 3.6rem;
      padding: 0 clamp(2rem, 5vw, 4rem);
    }
    .reviews-header .section-label { display: inline-block; }
    .reviews-header .section-title { color: var(--forest-deep); }
    .reviews-viewport {
      position: relative;
      max-width: 1280px; margin: 0 auto;
      padding: 0 clamp(2rem, 5vw, 4rem);
    }
    .reviews-track-wrap {
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -ms-overflow-style: none;
      mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    }
    .reviews-track-wrap::-webkit-scrollbar { display: none; }
    .reviews-track {
      display: flex; gap: 1.4rem;
      padding: 0.5rem 0 1.5rem;
    }
    .review {
      flex: 0 0 calc((100% - 2.8rem) / 3);
      min-width: 280px;
      background: var(--white);
      padding: 2.4rem 2rem;
      border-top: 1px solid var(--gold);
      scroll-snap-align: start;
      display: flex; flex-direction: column;
      transition: transform 0.4s, box-shadow 0.4s;
    }
    .review:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(8, 65, 54, 0.08);
    }
    .review-quote {
      font-family: var(--font-en-fallback);
      font-style: italic; font-size: 2.6rem;
      color: var(--gold); opacity: 0.55; line-height: 0.5;
      margin-bottom: 1rem;
    }
    .review-title {
      font-size: 1rem; font-weight: 600;
      color: var(--forest-deep);
      letter-spacing: 0.08em; margin-bottom: 0.9rem;
    }
    .review-body {
      font-size: 0.8rem; color: rgba(80, 83, 80, 0.7);
      line-height: 2; font-weight: 300; letter-spacing: 0.02em;
      flex: 1;
    }
    .review-meta {
      margin-top: 1.6rem; padding-top: 1.2rem;
      border-top: 1px solid rgba(8, 65, 54, 0.08);
      display: flex; justify-content: space-between;
      font-family: var(--font-en-fallback);
      font-size: 0.6rem; letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(80, 83, 80, 0.5);
    }
    .review-meta .src { color: var(--gold-deep); }

    /* Carousel controls */
    .reviews-controls {
      display: flex; align-items: center; justify-content: center;
      gap: 1.4rem; margin-top: 2.4rem;
    }
    .review-arrow {
      width: 44px; height: 44px;
      border: 1px solid rgba(8, 65, 54, 0.2);
      border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      color: var(--forest-deep); cursor: pointer;
      transition: all 0.3s;
      background: transparent;
    }
    .review-arrow:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(230, 164, 1, 0.06);
    }
    .review-arrow svg { width: 14px; height: 14px; }
    .review-dots {
      display: flex; gap: 8px; align-items: center;
    }
    .review-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(8, 65, 54, 0.18);
      transition: width 0.4s, background 0.4s;
      cursor: pointer;
    }
    .review-dot.active { background: var(--gold); width: 22px; border-radius: 3px; }

    @media (max-width: 900px) { .review { flex: 0 0 calc((100% - 1.4rem) / 2); } }
    @media (max-width: 640px) { .review { flex: 0 0 100%; } }

    /* ========================================
       FILM — full-bleed YouTube
    ======================================== */
    .film-section {
      position: relative;
      width: 100%;
      background: var(--forest-darker);
      overflow: hidden;
    }
    .film-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
    }
    .film-frame iframe {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      border: 0;
    }
    .film-caption {
      text-align: center;
      padding: 2.6rem 2rem 3.2rem;
      background: var(--forest-darker);
      color: var(--mint-white);
    }
    .film-caption .section-label {
      color: var(--gold);
      display: inline-block; margin-bottom: 1rem;
    }
    .film-caption .film-title {
      font-family: var(--font-zh);
      font-size: clamp(1.1rem, 1.6vw, 1.4rem);
      font-weight: 500;
      letter-spacing: 0.25em;
      color: var(--mint-white);
      margin-bottom: 0.6rem;
    }
    .film-caption .film-en {
      font-family: var(--font-en-fallback);
      font-style: italic;
      font-size: 0.78rem; letter-spacing: 0.4em;
      color: rgba(230, 164, 1, 0.7);
      text-transform: uppercase;
    }

    /* ========================================
       CAFE (日光時刻咖啡館) — full-bleed strip
    ======================================== */
    .cafe-strip {
      background: var(--forest-deep);
      padding: 8rem 4rem; min-height: 70vh;
      display: flex; flex-direction: column; justify-content: center;
      text-align: center; position: relative; overflow: hidden;
    }
    .cafe-strip-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 1;
    }
    .cafe-strip::after {
      content: none;
    }
    .cafe-text-wrap {
      position: relative; z-index: 2;
      display: inline-block; align-self: center;
      padding: 3.6rem 5rem;
      margin: 0 auto;
      max-width: 720px;
    }
    .cafe-text-wrap::before {
      content: ''; position: absolute; inset: 0; z-index: 0;
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(14px) saturate(1.1);
      -webkit-backdrop-filter: blur(14px) saturate(1.1);
      -webkit-mask-image: radial-gradient(ellipse 55% 70% at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.92) 12%, rgba(0,0,0,0.74) 26%, rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.28) 58%, rgba(0,0,0,0.13) 72%, rgba(0,0,0,0.05) 84%, rgba(0,0,0,0.01) 94%, rgba(0,0,0,0) 100%);
      mask-image: radial-gradient(ellipse 55% 70% at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.92) 12%, rgba(0,0,0,0.74) 26%, rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.28) 58%, rgba(0,0,0,0.13) 72%, rgba(0,0,0,0.05) 84%, rgba(0,0,0,0.01) 94%, rgba(0,0,0,0) 100%);
    }
    .cafe-text-wrap > * { position: relative; z-index: 1; }
    .cafe-strip .section-label {
      text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
      margin-bottom: 1.2rem;
    }
    .cafe-strip .section-title {
      color: var(--mint-white);
      text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
      margin-bottom: 1.4rem;
    }
    .cafe-strip .section-desc {
      color: rgba(255, 253, 245, 0.7);
      margin: 0 auto 2.4rem;
      text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
      text-align: center;
    }
    .cafe-strip .btn-gold { margin-top: 0; }

    /* ========================================
       IG GALLERY
    ======================================== */
    .ig-gallery {
      background: var(--ivory);
      padding: clamp(5rem, 8vw, 7rem) clamp(2rem, 5vw, 4rem);
    }
    .ig-gallery-header { text-align: center; margin-bottom: 3rem; }
    .ig-gallery-header .section-label { display: inline-block; }
    .ig-gallery-header .section-title { color: var(--forest-deep); }
    .ig-gallery-header .btn-gold { margin-top: 1.6rem; }
    .ig-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 4px;
      max-width: 1280px; margin: 0 auto;
    }
    .ig-tile { position: relative; overflow: hidden; aspect-ratio: 1; }
    .ig-tile img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 5s ease, filter 0.5s ease;
      filter: saturate(0.95);
    }
    .ig-tile:hover img { transform: scale(1.06); filter: saturate(1.1); }
    .ig-tile::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 60%, rgba(230, 164, 1, 0.08) 100%);
      pointer-events: none;
    }
    @media (max-width: 768px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }

    /* ========================================
       FOOTER (LOHERB Group aligned)
    ======================================== */
    .footer {
      background: var(--forest-darker);
      color: var(--white);
      padding: clamp(60px, 8vh, 100px) clamp(24px, 6vw, 120px) clamp(32px, 4vh, 48px);
    }
    .footer-top {
      display: grid; grid-template-columns: 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: clamp(40px, 5vh, 60px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .footer-logo-col {
      display: flex; flex-direction: column; align-items: center;
      text-align: center; gap: 6px;
    }
    .footer-logo {
      display: flex; flex-direction: column; align-items: center;
      gap: 4px; margin-bottom: 20px;
    }
    .footer-logo .f-kanji {
      font-family: var(--font-zh);
      font-size: 1.5rem; font-weight: 500;
      color: var(--gold);
      letter-spacing: 0.2em; line-height: 1;
    }
    .footer-logo .f-en {
      font-family: var(--font-en);
      font-size: 0.55rem; letter-spacing: 0.5em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1;
    }
    .footer-tagline {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.4);
      letter-spacing: 0.2em; line-height: 1.8;
      text-align: center;
    }
    .footer-col-title {
      font-family: var(--font-en);
      font-size: 0.55rem;
      letter-spacing: 0.4em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 20px;
    }
    .footer-contact-item {
      display: flex; align-items: flex-start;
      gap: 12px; margin-bottom: 14px;
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: 0.03em; line-height: 1.6;
    }
    .footer-contact-item svg {
      width: 14px; height: 14px;
      stroke: var(--gold);
      flex-shrink: 0; margin-top: 3px; opacity: 0.7;
    }
    .footer-contact-item a { color: rgba(255, 255, 255, 0.5); transition: color 0.3s; }
    .footer-contact-item a:hover { color: var(--gold); }
    .footer-social { display: flex; gap: 20px; margin-top: 8px; }
    .footer-social a {
      display: flex; align-items: center; justify-content: center;
      width: 36px; height: 36px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      transition: all 0.3s;
    }
    .footer-social a:hover { border-color: var(--gold); background: rgba(230, 164, 1, 0.08); }
    .footer-social a svg { width: 14px; height: 14px; fill: rgba(255, 255, 255, 0.5); transition: fill 0.3s; }
    .footer-social a:hover svg { fill: var(--gold); }
    .footer-brands { display: flex; flex-direction: column; gap: 10px; }
    .footer-brand-link {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.4);
      letter-spacing: 0.08em; transition: color 0.3s;
    }
    .footer-brand-link:hover { color: var(--gold); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: center;
      text-align: center;
      padding-top: clamp(24px, 3vh, 40px);
      font-size: 0.65rem;
      color: rgba(255, 255, 255, 0.25);
      letter-spacing: 0.1em;
    }
    @media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
    @media (max-width: 640px) { .footer-top { grid-template-columns: 1fr; gap: 36px; } }

    /* Reveal on scroll */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out); }
    .reveal.in { opacity: 1; transform: translateY(0); }

    /* SEO — visually-hidden semantic H1 / landmark labels for screen readers & crawlers */
    .visually-hidden {
      position: absolute !important;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

/* ========================================
   PAGE HERO — for sub-pages (smaller than home hero)
   ======================================== */
.page-hero {
  height: 70vh; min-height: 520px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--forest-darker);
}
.page-hero .page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.85;
  filter: saturate(1.05);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 43, 36, 0.45) 0%, rgba(5, 43, 36, 0.25) 50%, rgba(5, 43, 36, 0.55) 100%);
  pointer-events: none;
}
.page-hero-content {
  position: relative; z-index: 1;
  text-align: center; color: var(--warm-white);
  padding: 2.5rem 3.5rem;
}
.page-hero-content::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  -webkit-mask-image: radial-gradient(ellipse 55% 75% at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.92) 12%, rgba(0,0,0,0.74) 26%, rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.28) 58%, rgba(0,0,0,0.13) 72%, rgba(0,0,0,0.05) 84%, rgba(0,0,0,0.01) 94%, rgba(0,0,0,0) 100%);
  mask-image: radial-gradient(ellipse 55% 75% at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.92) 12%, rgba(0,0,0,0.74) 26%, rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.28) 58%, rgba(0,0,0,0.13) 72%, rgba(0,0,0,0.05) 84%, rgba(0,0,0,0.01) 94%, rgba(0,0,0,0) 100%);
}
.page-hero .eyebrow {
  font-family: var(--font-en-fallback);
  font-size: 0.6rem; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.4rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.page-hero h1 {
  font-family: var(--font-zh);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-indent: 0.3em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 8px rgba(0,0,0,0.35);
  margin-bottom: 1rem;
}
.page-hero .page-hero-en {
  font-family: var(--font-en-fallback);
  font-style: italic;
  font-size: 0.9rem; letter-spacing: 0.4em;
  color: rgba(255, 253, 245, 0.65);
  text-transform: uppercase; text-indent: 0.4em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.page-hero .page-hero-rule {
  width: 28px; height: 1px;
  background: var(--gold); opacity: 0.5;
  margin: 1rem auto;
}

/* Common page wrapper */
.page-content {
  background: var(--ivory);
  padding: clamp(5rem, 8vw, 7rem) clamp(2rem, 5vw, 4rem);
}
.page-content.white { background: #fff; }
.page-content.mint { background: var(--mint-white); }

/* Rooms grid */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1280px; margin: 0 auto;
}
.room-card {
  background: #fff;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.4s, box-shadow 0.4s;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(8, 65, 54, 0.14);
}
.room-img {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
}
.room-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s ease, filter 0.5s ease;
  filter: saturate(0.95);
}
.room-card:hover .room-img img {
  transform: scale(1.05);
  filter: saturate(1.08);
}
.room-num {
  position: absolute; top: 1.2rem; left: 1.2rem;
  font-family: var(--font-en-fallback);
  font-size: 0.7rem; letter-spacing: 0.3em;
  color: var(--warm-white);
  background: rgba(8, 65, 54, 0.65);
  padding: 0.4rem 0.9rem;
  backdrop-filter: blur(4px);
}
.room-body {
  padding: 1.8rem 1.6rem 2rem;
  display: flex; flex-direction: column; flex: 1;
}
.room-en {
  font-family: var(--font-en-fallback);
  font-style: italic;
  font-size: 0.65rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 0.6rem;
}
.room-name {
  font-size: 1.15rem; font-weight: 600;
  color: var(--forest-deep);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.room-capacity {
  font-family: var(--font-en-fallback);
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(80, 83, 80, 0.55);
  margin-bottom: 1rem;
}
.room-capacity::before {
  content: "·"; margin-right: 8px; color: var(--gold);
}
.room-desc {
  font-size: 0.82rem; line-height: 2;
  color: rgba(80, 83, 80, 0.7);
  font-weight: 300; letter-spacing: 0.02em;
  flex: 1;
}

@media (max-width: 1000px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .rooms-grid { grid-template-columns: 1fr; } }

/* About story sections */
.story {
  background: #fff;
  padding: clamp(5rem, 8vw, 7rem) clamp(2rem, 5vw, 4rem);
}
.story .container {
  max-width: 820px; margin: 0 auto;
  text-align: center;
}
.story .eyebrow {
  font-family: var(--font-en-fallback);
  font-size: 0.6rem; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.4rem; display: inline-block;
}
.story h2 {
  font-family: var(--font-zh);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  color: var(--forest-deep);
  letter-spacing: 0.15em;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.story p {
  font-family: var(--font-zh);
  font-size: 0.95rem; line-height: 2.4;
  font-weight: 300;
  color: rgba(80, 83, 80, 0.75);
  letter-spacing: 0.05em;
  text-align: left;
  margin-bottom: 1.4rem;
}
.story p + p { margin-top: -0.4rem; }
.story .deco {
  width: 40px; height: 1px;
  background: var(--gold); opacity: 0.45;
  margin: 2.4rem auto;
}

/* Contact info grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1280px; margin: 0 auto;
}
.contact-info {
  padding: clamp(3rem, 6vw, 5rem);
  background: var(--forest-deep);
  color: var(--mint-white);
  display: flex; flex-direction: column; justify-content: center;
}
.contact-info .eyebrow {
  font-family: var(--font-en-fallback);
  font-size: 0.6rem; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.4rem;
}
.contact-info h2 {
  font-family: var(--font-zh);
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 500;
  color: var(--mint-white);
  letter-spacing: 0.2em;
  line-height: 1.8;
  margin-bottom: 2.4rem;
}
.contact-item {
  display: flex; align-items: flex-start;
  gap: 1.2rem; margin-bottom: 1.8rem;
}
.contact-item .icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(230, 164, 1, 0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item .icon svg {
  width: 14px; height: 14px; stroke: var(--gold);
}
.contact-item .label {
  font-family: var(--font-en-fallback);
  font-size: 0.55rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-item .value {
  font-family: var(--font-zh);
  font-size: 0.95rem; line-height: 1.85;
  color: rgba(255, 253, 245, 0.85);
  letter-spacing: 0.05em;
}
.contact-item .value a { color: inherit; transition: color 0.3s; }
.contact-item .value a:hover { color: var(--gold); }
.contact-map { position: relative; min-height: 480px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; min-height: 480px; display: block; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 360px; }
  .contact-map iframe { min-height: 360px; }
}

/* Journal extended grid */
.journal-extended {
  background: #fff;
  padding: clamp(5rem, 8vw, 7rem) clamp(2rem, 5vw, 4rem);
}
.journal-extended .journal-grid {
  max-width: 1280px;
}

/* ========================================
   SPLIT-IMG slideshow — for feature sections
   ======================================== */
.split-img.slideshow {
  position: relative;
  height: 100%;
  min-height: 480px;
}
.split-img.slideshow .slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.6s ease-in-out, transform 7s linear;
  will-change: opacity, transform;
}
.split-img.slideshow .slide.active {
  opacity: 1;
  transform: scale(1);
}
.split-img.slideshow .slide-dots {
  position: absolute; bottom: 22px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; gap: 8px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
}
.split-img.slideshow .slide-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255, 253, 245, 0.4);
  transition: width 0.4s, background 0.4s;
  cursor: pointer;
}
.split-img.slideshow .slide-dot.active {
  width: 20px; border-radius: 3px;
  background: var(--gold);
}

/* Cafe strip — show lower portion of pool image so food is visible */
.cafe-strip-bg {
  background-position: center 68% !important;
}

/* ========================================
   BOOKING BAR — date pickers + guests + rooms
   sits below hero, overlaps slightly
   ======================================== */
/* Booking bar — standalone section (own padding/bg, no overlap) */
.booking-section {
  background: var(--ivory);
  padding: clamp(2.4rem, 5vw, 4rem) clamp(20px, 4vw, 32px);
}
.booking-bar-wrap {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
}
.booking-bar {
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(8, 65, 54, 0.14), 0 4px 16px rgba(8, 65, 54, 0.06);
  border-top: 3px solid var(--gold);
  padding: clamp(1.6rem, 2.6vw, 2.4rem) clamp(1.8rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: clamp(1.2rem, 2.4vw, 2rem);
  align-items: end;
}
.booking-field {
  display: flex; flex-direction: column;
  gap: 0.45rem;
  position: relative;
}
.booking-field .label {
  font-family: var(--font-en-fallback);
  font-size: 0.55rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500;
}
.booking-field .label .tc {
  font-family: var(--font-zh);
  font-size: 0.72rem; font-style: normal;
  letter-spacing: 0.15em;
  color: var(--forest-deep);
  margin-right: 8px; font-weight: 500;
  text-transform: none;
}
.booking-field input,
.booking-field select {
  border: 0;
  border-bottom: 1px solid rgba(8, 65, 54, 0.15);
  padding: 0.45rem 0;
  font-family: var(--font-zh);
  font-size: 0.95rem; font-weight: 500;
  color: var(--forest-deep);
  background: transparent;
  transition: border-color 0.3s;
  letter-spacing: 0.05em;
  cursor: pointer;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.booking-field input::-webkit-calendar-picker-indicator {
  color: var(--gold);
  cursor: pointer;
  opacity: 0.7;
  filter: invert(38%) sepia(98%) saturate(537%) hue-rotate(13deg) brightness(95%);
}
.booking-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 14px) center, calc(100% - 9px) center;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 22px;
}
.booking-field input:focus,
.booking-field select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.booking-submit {
  padding: 0.95rem 2.6rem;
  background: var(--gold);
  color: var(--forest-deep);
  font-family: var(--font-zh);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.35s, color 0.35s;
  white-space: nowrap;
  text-indent: 0.3em;
}
.booking-submit:hover {
  background: var(--forest-deep);
  color: var(--gold);
}
.booking-note {
  grid-column: 1 / -1;
  font-family: var(--font-en-fallback);
  font-style: italic;
  font-size: 0.7rem; letter-spacing: 0.2em;
  color: rgba(80, 83, 80, 0.55);
  text-align: center;
  margin-top: 0.4rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(8, 65, 54, 0.06);
}
.booking-note .gold { color: var(--gold-deep); }

@media (max-width: 720px) {
  .booking-bar { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .booking-submit { grid-column: 1 / -1; padding: 1rem; }
}
@media (max-width: 480px) {
  .booking-section { padding: 2rem 16px; }
  .booking-bar { grid-template-columns: 1fr; padding: 1.6rem; gap: 1rem; }
}

/* ========================================
   FAQ — visible + accordion (SEO/GEO/AIEO friendly)
   ======================================== */
.faq-section {
  background: var(--mint-white);
  padding: clamp(5rem, 8vw, 7rem) clamp(2rem, 5vw, 4rem);
}
.faq-section .container {
  max-width: 980px; margin: 0 auto;
}
.faq-section .header {
  text-align: center; margin-bottom: 3.6rem;
}
.faq-section .header .section-label { display: inline-block; }
.faq-section .header .section-title { color: var(--forest-deep); }
.faq-section .header .section-desc {
  margin: 0.6rem auto 0; text-align: center;
  color: rgba(8, 65, 54, 0.62);
}
.faq-list { display: flex; flex-direction: column; gap: 0.7rem; }
.faq-item {
  background: var(--ivory);
  border-left: 2px solid rgba(230, 164, 1, 0.35);
  transition: border-color 0.3s, background 0.3s;
}
.faq-item[open] {
  border-left-color: var(--gold);
  background: #ffffff;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 1.6rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem;
  font-family: var(--font-zh);
  font-size: 0.96rem; font-weight: 500;
  color: var(--forest-deep);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.faq-item summary:hover { color: var(--gold-deep); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-en-fallback);
  font-size: 1.4rem; font-weight: 300;
  color: var(--gold);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transition: transform 0.4s, background 0.3s, color 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--gold);
  color: var(--forest-deep);
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 1.6rem 1.6rem;
  font-family: var(--font-zh);
  font-size: 0.88rem; line-height: 2.05;
  font-weight: 300;
  color: rgba(80, 83, 80, 0.78);
  letter-spacing: 0.03em;
}
.faq-answer strong {
  color: var(--forest-deep); font-weight: 500;
}
.faq-answer a {
  color: var(--gold-deep);
  border-bottom: 1px solid rgba(208, 140, 3, 0.35);
  transition: color 0.3s, border-color 0.3s;
}
.faq-answer a:hover {
  color: var(--gold); border-color: var(--gold);
}
.faq-footer {
  text-align: center; margin-top: 2.6rem;
  font-family: var(--font-en-fallback);
  font-style: italic;
  font-size: 0.72rem; letter-spacing: 0.28em;
  color: rgba(8, 65, 54, 0.5);
}
.faq-footer a { color: var(--gold-deep); }

@media (max-width: 640px) {
  .faq-item summary { font-size: 0.9rem; padding: 1.1rem 1.2rem; }
  .faq-answer { padding: 0 1.2rem 1.4rem; font-size: 0.84rem; }
}
