    /* ── RESET ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    /* ── TOKENS ── */
    :root {
      --navy:        #f5f0e8;
      --navy-mid:    #e8e0d0;
      --navy-light:  #ddd4c0;
      --cream:       #f5f0e8;
      --cream-mid:   #e8e0d0;
      --gold:        #a07830;
      --gold-light:  #c4a060;
      --gold-dark:   #7a5c20;
      --ink:         #2d3a2e;
      --muted:       #3d5240;
      --forest:      #3a5a3c;
      --forest-mid:  #4e7550;
      --forest-light:#6B9B82;
      --parchment:   #f5f0e8;
      --nav-h:       64px;
    }

    body {
      font-family: 'Noto Serif TC', 'Noto Serif', serif;
      background: #f5f0e8;
      color: #2d3a2e;
      overflow-x: hidden;
      line-height: 1.6;
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      height: var(--nav-h);
      background: rgba(245,240,232,0.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(58,90,60,.15);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2.5rem;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: .55rem;
      white-space: nowrap;
      text-decoration: none;
    }
    .nav-brand-icon img {
      display: block;
      height: 36px;
      width: auto;
      mix-blend-mode: multiply;
    }
    .nav-brand-text {
      font-family: 'Noto Serif TC', serif;
      font-size: .92rem;
      font-weight: 500;
      letter-spacing: .14em;
      color: #7bbf96;
    }

    .nav-links {
      list-style: none;
      display: flex;
      align-items: center;
    }
    .nav-links a {
      display: block;
      padding: .4rem .9rem;
      font-size: .93rem;
      letter-spacing: .06em;
      color: rgba(45,58,46,.92);
      transition: color .2s;
      white-space: nowrap;
    }
    .nav-links a:hover,
    .nav-links a.active { color: var(--forest); }

    /* hamburger */
    .hamburger {
      display: none;
      position: relative;
      width: 24px;
      height: 18px;
      cursor: pointer;
      z-index: 201;
      flex-shrink: 0;
    }
    .hamburger span {
      position: absolute;
      left: 0;
      width: 24px;
      height: 2px;
      background: var(--forest);
      transition: all .28s ease;
    }
    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 8px; }
    .hamburger span:nth-child(3) { top: 16px; }
    .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* mobile overlay */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: 0;
      width: 35vw;
      max-width: 160px;
      height: 100%;
      z-index: 199;
      background: rgba(245,240,232,0.97);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      border-left: 1px solid rgba(58,90,60,.15);
      box-shadow: -16px 0 60px rgba(45,58,46,.12);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 2.2rem;
      padding-top: calc(var(--nav-h) + 5vh);
      transform: translateX(100%);
      transition: transform .32s cubic-bezier(.4,0,.2,1);
    }
    .mobile-menu.open { transform: translateX(0); }
    .menu-backdrop {
      position: fixed;
      inset: 0;
      z-index: 198;
      background: transparent;
      display: none;
    }
    .menu-backdrop.open { display: block; }
    .mobile-menu a {
      font-size: 1.25rem;
      letter-spacing: .12em;
      color: rgba(45,58,46,.92);
      transition: color .2s;
    }
    .mobile-menu a:hover { color: var(--forest); }

    /* ── PAGE SYSTEM ── */
    .page {
      display: none;
      min-height: 100vh;
      padding-top: var(--nav-h);
    }
    .page.active { display: block; }

    /* ── GOLD ORNAMENT ── */
    .ornament {
      display: flex;
      align-items: center;
      gap: .9rem;
      margin: 1.8rem 0;
    }
    .ornament::before,
    .ornament::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--forest) 50%, transparent);
    }
    .ornament-glyph {
      font-family: 'Cormorant Garamond', serif;
      font-size: .65rem;
      letter-spacing: .5em;
      color: rgba(58,90,60,.85);
      text-transform: uppercase;
    }

    /* ── SECTION LABEL ── */
    .label {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: .38em;
      text-transform: uppercase;
      color: #2a4a2c;
    }

    /* ── BUTTONS ── */
    .btn-gold {
      display: inline-block;
      padding: .75rem 2.2rem;
      background: transparent;
      border: 1px solid var(--forest);
      color: var(--forest);
      font-size: .82rem;
      letter-spacing: .18em;
      font-weight: 400;
      transition: background .25s, color .25s, transform .2s;
    }
    .btn-gold:hover {
      background: var(--forest);
      color: #f5f0e8;
      transform: translateY(-2px);
    }

    .btn-outline {
      display: inline-block;
      padding: .75rem 2.2rem;
      border: 1px solid rgba(58,90,60,.4);
      color: rgba(45,58,46,.8);
      font-size: .82rem;
      letter-spacing: .18em;
      transition: border-color .25s, color .25s, transform .2s;
    }
    .btn-outline:hover {
      border-color: var(--forest);
      color: var(--forest);
      transform: translateY(-2px);
    }

    /* ════════════════════════════════════
       HOME
    ════════════════════════════════════ */
    #home {
      position: relative;
    }

    .home-hero {
      position: relative;
      min-height: calc(100vh - var(--nav-h));
      background: #f5f0e8;
      display: flex;
      justify-content: center;
      overflow: hidden;
    }
    .home-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 220px;
      height: 180px;
      background: radial-gradient(ellipse at 0% 0%,
        rgba(245,240,232,1) 28%,
        rgba(245,240,232,.75) 50%,
        transparent 72%);
      z-index: 1;
      pointer-events: none;
    }

    .hero-bg {
      display: none;
    }

    .home-hero-img {
      display: block;
      width: 100%;
      max-width: 600px;
      height: calc(100vh - var(--nav-h));
      object-fit: cover;
      object-position: center top;
    }

    @media (min-width: 768px) {
      .home-hero-img {
        width: 100%;
        max-width: 100%;
        height: calc(100vh - var(--nav-h));
        object-fit: cover;
        object-position: center top;
      }
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 640px;
      animation: heroIn .9s ease both;
    }
    @keyframes heroIn {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-badge {
      display: inline-block;
      padding: .22rem .9rem;
      border: 1px solid rgba(107,152,130,.4);
      font-family: 'Cormorant Garamond', serif;
      font-size: .85rem;
      letter-spacing: .4em;
      color: rgba(80,130,100,.9);
      text-transform: uppercase;
      margin-bottom: .9rem;
    }

    .hero-location {
      font-size: 1rem;
      letter-spacing: .18em;
      color: rgba(80,70,60,.9);
      margin-bottom: .9rem;
    }

    .hero-title {
      font-size: clamp(4rem, 9vw, 7.2rem);
      font-weight: 500;
      letter-spacing: .08em;
      line-height: 1.0;
      color: #2d2a26;
      margin-bottom: .3rem;
      text-shadow: 0 2px 24px rgba(255,252,247,.8);
    }

    .hero-title-en {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-style: italic;
      font-weight: 400;
      color: rgba(107,152,130,.9);
      letter-spacing: .18em;
      margin-bottom: 1.6rem;
    }

    .hero-tagline {
      font-size: 1rem;
      line-height: 2.2;
      color: rgba(60,55,48,.95);
      font-weight: 300;
      margin-bottom: 2.2rem;
    }

    .hero-btns {
      display: flex;
      gap: .9rem;
      flex-wrap: wrap;
    }

    .hero-footnote {
      position: absolute;
      bottom: 2.5rem;
      left: 8vw;
      right: 8vw;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }
    .hero-fn-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: .88rem;
      letter-spacing: .18em;
      color: rgba(58,90,60,.82);
      white-space: nowrap;
    }
    .hero-fn-dot {
      width: 3px; height: 3px;
      border-radius: 50%;
      background: rgba(58,90,60,.3);
      flex-shrink: 0;
    }

    /* ════════════════════════════════════
       ABOUT
    ════════════════════════════════════ */
    #about { background: #f5f0e8; }

    /* ── Story: two-column with image ── */
    .about-story {
      display: grid;
      grid-template-columns: 55% 45%;
      min-height: 0;
    }

    .about-story-text {
      padding: 1.5rem 5vw 1.5rem 8vw;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }

    .about-story-text::after {
      content: '';
      position: absolute;
      right: 0;
      top: 12%;
      height: 76%;
      width: 1px;
      background: linear-gradient(to bottom,
        transparent 0%,
        rgba(58,90,60,.35) 25%,
        rgba(58,90,60,.35) 75%,
        transparent 100%);
    }

    .about-story-text .label { margin-bottom: 1.4rem; display: block; font-size: 1rem; }

    .about-story-text h1 {
      font-size: clamp(1.6rem, 3.8vw, 3rem);
      font-weight: 700;
      letter-spacing: .04em;
      line-height: 1.45;
      color: #1a2a1c;
      margin-bottom: 0;
    }

    @media (max-width: 768px) {
      .about-story-text h1,
      .about-story-text p:first-of-type {
        font-size: clamp(1rem, 5.8vw, 1.55rem) !important;
        line-height: 1.55 !important;
      }
    }

    .about-story-text p:first-of-type {
      font-size: clamp(1.6rem, 3.8vw, 3rem);
      line-height: 1.45;
      color: rgba(45,58,46,.92);
      font-weight: 400;
      margin-bottom: 1.6rem;
      max-width: 460px;
    }

    .about-story-text p + p {
      font-size: .9rem;
      line-height: 1.85;
      color: rgba(45,58,46,.85);
      font-weight: 400;
      margin-bottom: .8rem;
      max-width: 460px;
    }

    .about-tags {
      display: flex;
      flex-wrap: wrap;
      gap: .55rem;
      margin-top: 2rem;
    }
    .about-tag {
      padding: .3rem 1rem;
      border: 1px solid rgba(58,90,60,.3);
      font-size: .85rem;
      letter-spacing: .18em;
      color: rgba(58,90,60,.85);
      transition: border-color .2s, color .2s;
    }
    .about-tag:hover {
      border-color: var(--forest);
      color: var(--forest);
    }

    .about-story-img {
      position: relative;
      overflow: hidden;
    }
    .about-story-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    .about-story-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(58,90,60,.45) 0%, transparent 55%);
      pointer-events: none;
    }

    /* ── Philosophy: cream break ── */
    .about-philosophy {
      background: #f2e9db;
      padding: 2rem 8vw;
      text-align: center;
      width: 100%;
      box-sizing: border-box;
      position: relative;
      overflow: hidden;
    }
    .about-philosophy::before { display: none; }

    .about-philosophy .label {
      color: rgba(58,90,60,1);
      letter-spacing: .38em;
      margin-bottom: 0.3rem;
      display: block;
    }

    .phil-openquote { display: none; }

    .about-phil-text h2 {
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      font-weight: 700;
      letter-spacing: .05em;
      line-height: 1.5;
      color: #1a2a1c;
      margin-bottom: 1rem;
    }
    .phil-sub {
      font-size: .6em;
      font-weight: 400;
      letter-spacing: .18em;
      color: rgba(45,58,46,.65);
    }
    .phil-main {
      font-size: 1.1em;
      font-weight: 700;
      letter-spacing: .08em;
      color: #1a2a1c;
    }

    .phil-rule { display: none; }

    .about-phil-text > p {
      font-size: .94rem;
      line-height: 2.3;
      color: rgba(58,90,60,.85);
      font-weight: 400;
      max-width: 560px;
      margin: 0 auto 3rem;
    }

    .phil-points {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      align-items: center;
      width: 100%;
    }

    .phil-point {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      font-size: 1rem;
      color: rgba(58,90,60,.92);
      line-height: 1.85;
      padding: 0;
      border: none;
      width: 100%;
      letter-spacing: .05em;
      font-weight: 400;
    }
    .phil-point-dash {
      color: rgba(58,90,60,.95);
      font-size: 1.3rem;
      font-family: 'Cormorant Garamond', serif;
      line-height: 1;
      margin-bottom: .5rem;
      display: block;
    }

    /* ── Pillars ── */
    .about-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      background: #f5f0e8;
    }

    .pillar {
      padding: 1.5rem 2rem;
      border-top: 1px solid rgba(58,90,60,.28);
      background: #f5f0e8;
      transition: background .35s;
      position: relative;
    }
    .pillar + .pillar {
      border-left: 1px solid rgba(58,90,60,.1);
    }
    .pillar:hover { background: rgba(58,90,60,.04); }

    .pillar-char {
      font-size: 4.5rem;
      font-weight: 300;
      color: var(--forest);
      line-height: 1;
      margin-bottom: .5rem;
      letter-spacing: -.01em;
    }

    .pillar-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: .32em;
      color: #2a4a2c;
      text-transform: uppercase;
      margin-bottom: .9rem;
      display: block;
    }

    .pillar-rule {
      width: 2rem;
      height: 1px;
      background: rgba(58,90,60,.28);
      margin-bottom: .9rem;
    }

    .pillar-desc {
      font-size: .85rem;
      line-height: 2;
      color: rgba(45,58,46,.8);
      font-weight: 300;
    }

    /* ════════════════════════════════════
       SPACE
    ════════════════════════════════════ */
    #space {
      background: #f5f0e8;
      padding-top: 0;
    }
    .space-header { display: none; }

    /* ── Space main: text above, image below ── */
    .space-main {
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
      margin-top: var(--nav-h);
    }
    .space-text-block {
      background: #f5f0e8;
      padding: 2.5rem 8vw 2rem;
      text-align: center;
    }
    .space-en-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 11vw, 7rem);
      font-weight: 600;
      letter-spacing: .32em;
      color: #1e2e20;
      line-height: 1.05;
      margin-bottom: .6rem;
    }
    .space-en-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1rem, 3vw, 1.5rem);
      font-style: italic;
      font-weight: 400;
      letter-spacing: .1em;
      color: rgba(45,58,46,.9);
      line-height: 1.9;
    }
    .space-img-wrap {
      position: relative;
      width: 100%;
    }
    .space-main-img {
      display: block;
      width: 100%;
      height: auto;
    }
    /* Cover logo in top-left of image */
    .space-img-cover {
      position: absolute;
      top: 0; left: 0;
      width: 220px; height: 200px;
      background: radial-gradient(ellipse at 0% 0%,
        rgba(245,240,232,1) 30%,
        rgba(245,240,232,.8) 52%,
        transparent 74%);
      pointer-events: none;
    }

    .space-gallery {
      display: none;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 5rem;
    }
    .space-gallery-main {
      position: relative;
      overflow: hidden;
    }
    .space-gallery-main img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform .7s ease;
    }
    .space-gallery-main:hover img { transform: scale(1.04); }

    .space-gallery-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4px;
    }
    .space-gallery-sub {
      position: relative;
      overflow: hidden;
    }
    .space-gallery-sub img {
      width: 100%;
      aspect-ratio: 1/1;
      object-fit: cover;
      display: block;
      transition: transform .7s ease;
    }
    .space-gallery-sub:hover img { transform: scale(1.06); }

    .space-caption {
      position: absolute;
      bottom: .9rem;
      left: .9rem;
      padding: .25rem .7rem;
      background: rgba(10,20,35,.65);
      backdrop-filter: blur(8px);
      font-size: .65rem;
      letter-spacing: .2em;
      color: var(--forest-light);
      border: 1px solid rgba(58,90,60,.2);
    }

    /* legacy — keep for other pages */
    .space-grid { display: none; }
    .space-item { display: none; }

    .space-placeholder {
      text-align: center;
      padding: 5rem 8vw 7rem;
      color: rgba(45,58,46,.72);
    }
    .space-placeholder p {
      font-size: 1rem;
      letter-spacing: .15em;
      color: rgba(45,58,46,.9);
    }
    .space-ph-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: .8rem !important;
      letter-spacing: .35em !important;
      color: rgba(58,90,60,.72) !important;
      margin-top: .6rem;
    }

    /* ════════════════════════════════════
       SERVICES
    ════════════════════════════════════ */
    #services { background: var(--cream); color: var(--ink); }

    .services-hero {
      background: #f5f0e8;
      color: #2d3a2e;
      padding: 1rem 8vw 0.8rem;
      text-align: center;
    }
    .services-hero .label { display: block; margin-bottom: .3rem; }
    .services-hero h1 {
      font-size: clamp(2.4rem, 6vw, 4rem);
      font-weight: 700;
      letter-spacing: .12em;
      color: #1a2a1c;
    }

    .services-section {
      padding: 1rem 8vw;
    }
    .services-section + .services-section {
      padding-top: 0;
    }

    .services-section-head {
      margin-bottom: 1.5rem;
      padding-bottom: .8rem;
      border-bottom: 1px solid rgba(58,90,60,.25);
    }
    .services-section-head .label { color: #2a4a2c; display: block; margin-bottom: .3rem; }
    .services-section-head h2 {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 700;
      letter-spacing: .06em;
      color: #1a2a1c;
    }

    .srv-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
      gap: 1.4rem;
    }

    .srv-card {
      padding: 2rem 1.8rem;
      background: #fff;
      border: 1px solid rgba(58,90,60,.15);
      border-top: 2.5px solid var(--forest);
      transition: box-shadow .3s, transform .3s;
    }
    .srv-card:hover {
      box-shadow: 0 10px 36px rgba(58,90,60,.12);
      transform: translateY(-3px);
    }
    .srv-card.srv-featured {
      background: #edf2ee;
      border-top-color: var(--forest);
    }
    .srv-card.srv-featured .srv-name { color: #2d3a2e; }
    .srv-card.srv-featured .srv-desc  { color: rgba(45,58,46,.6); }
    .srv-card.srv-featured .srv-tag   { border-color: rgba(58,90,60,.3); color: var(--forest-light); }
    .srv-card.srv-featured .srv-price { color: var(--forest); }
    .srv-card.srv-featured .srv-note  { color: rgba(45,58,46,.45); }

    .srv-name {
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: .04em;
      color: #2d3a2e;
      margin-bottom: .5rem;
    }
    .srv-desc {
      font-size: .8rem;
      line-height: 1.85;
      color: var(--muted);
      font-weight: 300;
      margin-bottom: 1rem;
    }
    .srv-tags {
      display: flex;
      flex-wrap: wrap;
      gap: .4rem;
      margin-bottom: .9rem;
    }
    .srv-tag {
      padding: .2rem .65rem;
      border: 1px solid rgba(58,90,60,.35);
      font-size: .72rem;
      letter-spacing: .05em;
      color: var(--forest);
    }
    .srv-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      color: var(--forest);
      font-style: italic;
    }
    .srv-note {
      font-size: .78rem;
      color: #888;
      line-height: 1.75;
      margin-top: .5rem;
    }

    .services-cta {
      background: #f5f0e8;
      padding: 2rem 8vw;
      text-align: center;
    }
    .services-cta p {
      font-size: .95rem;
      color: rgba(45,58,46,.9);
      margin-bottom: 1.2rem;
      font-weight: 500;
    }

    /* ════════════════════════════════════
       RESULTS
    ════════════════════════════════════ */
    #results { background: #f5f0e8; }

    .results-header {
      padding: 1rem 8vw 0.8rem;
      text-align: center;
    }
    .results-header .label { display: block; margin-bottom: .3rem; }
    .results-header h1 {
      font-size: clamp(2.4rem, 6vw, 4rem);
      font-weight: 700;
      letter-spacing: .12em;
      color: #1a2a1c;
      margin-bottom: .8rem;
    }
    .results-notice {
      max-width: 520px;
      margin: 0 auto;
      font-size: 1rem;
      font-weight: 600;
      color: #2d3a2e;
      line-height: 1.9;
    }

    .results-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      padding: 0.8rem 8vw 1.5rem;
    }

    .result-card {
      flex: 0 1 calc(25% - 1.15rem);
      min-width: 240px;
      max-width: 340px;
      border: 1px solid rgba(58,90,60,.12);
      overflow: hidden;
    }

    .result-flip-zone {
      position: relative;
      aspect-ratio: 3/4;
      cursor: pointer;
      user-select: none;
      -webkit-user-select: none;
      overflow: hidden;
    }

    .result-face {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: .8rem;
      transition: opacity .45s ease;
      overflow: hidden;
    }
    .result-face img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }
    .result-face.face-after {
      opacity: 0;
      background: #ddd4c0;
    }
    .result-flip-zone.revealed .face-before { opacity: 0; }
    .result-flip-zone.revealed .face-after  { opacity: 1; }

    .face-before { background: var(--navy-mid); }
    .result-flip-zone:not(.revealed) + .result-info h3::after {
      content: '點照片看 After';
      font-size: .75rem;
      letter-spacing: .05em;
      color: var(--forest);
      font-weight: 500;
      margin-left: auto;
      flex-shrink: 0;
      padding: .22rem .6rem;
      border: 1px solid var(--gold);
      white-space: nowrap;
    }
    .result-flip-zone.revealed + .result-info h3::after {
      content: '';
    }

    .face-icon {
      font-size: 2.2rem;
      color: rgba(58,90,60,.65);
    }
    .face-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: .62rem;
      letter-spacing: .35em;
      color: rgba(58,90,60,.78);
      text-transform: uppercase;
    }
    .face-hint {
      font-size: .65rem;
      letter-spacing: .12em;
      color: rgba(58,90,60,.65);
    }

    .result-badge-wrap {
      position: absolute;
      top: .9rem; left: .9rem;
      z-index: 2;
    }
    .result-badge {
      padding: .32rem .9rem;
      background: rgba(58,90,60,.85);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(58,90,60,.35);
      font-size: .72rem;
      letter-spacing: .2em;
      color: #f5f0e8;
      text-transform: uppercase;
      font-weight: 500;
    }

    .result-info {
      padding: 1rem 1.2rem;
      background: #ede6d8;
    }
    .result-info h3 {
      font-size: 1.1rem;
      font-weight: 500;
      color: #2d3a2e;
      display: flex;
      align-items: center;
      gap: .6rem;
      white-space: nowrap;
    }
    .result-info p {
      font-size: .88rem;
      color: rgba(45,58,46,.88);
      margin-top: .35rem;
      white-space: nowrap;
    }

    /* ════════════════════════════════════
       PACKAGES
    ════════════════════════════════════ */
    #packages { background: #f5f0e8; }

    .packages-header {
      padding: 1rem 8vw 0.8rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .packages-header > * { position: relative; z-index: 1; }
    .packages-header .label { display: block; margin-bottom: .3rem; }
    .packages-header h1 {
      font-size: clamp(2.4rem, 6vw, 4rem);
      font-weight: 700;
      letter-spacing: .12em;
      color: #1a2a1c;
      margin-bottom: 1rem;
    }
    .packages-header p {
      font-size: .95rem;
      color: rgba(45,58,46,.9);
      font-weight: 500;
      text-wrap: balance;
    }

    .packages-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4px;
      margin-bottom: 0;
    }

    .pkg-card {
      overflow: hidden;
      transition: transform .3s, box-shadow .3s;
    }
    .pkg-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,.5);
    }
    .pkg-poster {
      width: 100%;
      display: block;
      transition: transform .6s ease;
    }
    .pkg-card:hover .pkg-poster { transform: scale(1.02); }

    /* ════════════════════════════════════
       MONTHLY FAV
    ════════════════════════════════════ */
    .monthly-header {
      text-align: center;
      padding: 1.5rem 8vw 1rem;
    }
    .monthly-header .ornament {
      margin: .6rem 0;
    }
    .monthly-header h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 400;
      color: #2d3a2e;
      letter-spacing: .1em;
      margin: .4rem 0 .3rem;
    }
    .monthly-header p {
      font-size: .88rem;
      letter-spacing: .12em;
      color: rgba(45,58,46,.7);
    }
    #monthly.page {
      min-height: auto;
    }
    .monthly-img-wrap {
      display: flex;
      justify-content: center;
      padding: 0 8vw 2rem;
    }
    .monthly-img-wrap img {
      max-width: 560px;
      width: 100%;
      border-radius: 4px;
      box-shadow: 0 8px 40px rgba(45,58,46,.12);
    }

    /* ════════════════════════════════════
       LOCATION
    ════════════════════════════════════ */
    #location { background: #f5f0e8; }

    .location-header {
      padding: 1rem 8vw 0.8rem;
      text-align: center;
    }
    .location-header .label { display: block; margin-bottom: .3rem; }
    .location-header h1 {
      font-size: clamp(2.4rem, 6vw, 4rem);
      font-weight: 700;
      letter-spacing: .12em;
      color: #1a2a1c;
    }

    .location-body {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
    }

    .location-info {
      padding: 1.5rem 5vw 1.5rem 8vw;
      background: #ede6d8;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1.5rem;
    }

    .loc-item {}
    .loc-item-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .38em;
      text-transform: uppercase;
      color: #2a4a2c;
      margin-bottom: .5rem;
      display: block;
    }
    .loc-item-value {
      font-size: .95rem;
      color: #2d3a2e;
      line-height: 1.7;
    }
    .loc-item-value a {
      transition: color .2s;
    }
    .loc-item-value a:hover { color: var(--forest); }

    .loc-contacts { display: flex; flex-direction: column; gap: .9rem; }
    .loc-contact-row {
      display: flex;
      align-items: center;
      gap: .9rem;
    }
    .loc-contact-icon {
      width: 36px; height: 36px;
      border: 1px solid rgba(58,90,60,.3);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      color: var(--forest);
      flex-shrink: 0;
    }
    .loc-contact-text {
      font-size: .88rem;
      color: rgba(45,58,46,.8);
    }
    .loc-contact-text a { transition: color .2s; }
    .loc-contact-text a:hover { color: var(--forest); }

    .location-map iframe {
      width: 100%;
      height: 100%;
      min-height: 60vh;
      border: none;
      display: block;
    }

    /* ════════════════════════════════════
       FLOATING CONTACT SIDEBAR
    ════════════════════════════════════ */
    .float-sidebar {
      position: fixed;
      left: 1.1rem;
      top: 50%;
      transform: translateY(-50%);
      z-index: 900;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      background: #3a5a3c;
      border: 1px solid rgba(58,90,60,.35);
      border-radius: 2.5rem;
      padding: .45rem .38rem;
      box-shadow: 0 4px 24px rgba(45,58,46,.25);
    }
    .float-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.6rem;
      height: 2.6rem;
      border-radius: 50%;
      color: #f5f0e8;
      transition: color .22s, background .22s, transform .18s;
      text-decoration: none;
    }
    .float-btn:hover {
      color: #f5f0e8;
      background: rgba(255,255,255,.15);
      transform: scale(1.12);
    }
    .float-btn svg {
      width: 1.35rem;
      height: 1.35rem;
      fill: currentColor;
    }
    .float-divider {
      width: 1.4rem;
      height: 1px;
      background: rgba(58,90,60,.25);
      margin: .1rem 0;
    }
    @media (max-width: 480px) {
      .float-sidebar {
        left: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(-50%);
        flex-direction: row;
        border-radius: 1.8rem 1.8rem 0 0;
        padding: .6rem 1.4rem;
        gap: 0;
        border-bottom: none;
        width: auto;
      }
      .float-divider {
        width: 1px;
        height: 1.4rem;
        margin: 0 .2rem;
      }
      .float-btn {
        width: 3rem;
        height: 3rem;
      }
    }

    /* ════════════════════════════════════
       FOOTER
    ════════════════════════════════════ */
    footer {
      background: #f0ebe0;
      padding: 1.5rem 8vw;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.2rem;
      text-align: center;
    }

    .footer-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: .9rem;
      letter-spacing: .28em;
      color: #3a5a3c;
      text-transform: uppercase;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .footer-links a {
      font-size: .78rem;
      letter-spacing: .1em;
      color: rgba(45,58,46,.9);
      transition: color .2s;
    }
    .footer-links a:hover { color: var(--forest); }

    .footer-copy {
      font-size: .68rem;
      letter-spacing: .12em;
      color: rgba(45,58,46,.72);
    }

    /* ════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════ */
    @media (max-width: 900px) {
      .about-story { grid-template-columns: 1fr; min-height: auto; }
      .about-story-img { height: 55vw; min-height: 280px; }
      .about-story-text { padding: 1.5rem 6vw; }
      .about-story-text::after { display: none; }

      .about-philosophy { padding-left: 8vw; padding-right: 8vw; }

      .about-pillars { grid-template-columns: 1fr; }
      .pillar + .pillar { border-left: none; border-top: 1px solid rgba(58,90,60,.1); }

      .packages-grid { grid-template-columns: 1fr; gap: 4px; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      nav { padding: 0 1.4rem; }

      .hero-bg {
        background: url('images/pkg-bg-1.png') center 20%/cover no-repeat;
      }
      .hero-bg::after {
        display: block;
        background:
          linear-gradient(to bottom, rgba(6,10,20,.95) 0%, rgba(6,10,20,.72) 28%, rgba(6,10,20,.42) 55%, rgba(6,10,20,.78) 82%, rgba(6,10,20,.97) 100%),
          rgba(6,10,20,.18);
      }
      .home-hero { padding: 0; justify-content: center; height: calc(100vh - var(--nav-h)); min-height: unset; }
      .home-hero-img { max-width: 100%; width: 100%; }
      .hero-inner { padding-left: 1.5rem; }

      .hero-title { font-size: clamp(3rem, 13vw, 4.5rem); }

      .space-grid { grid-template-columns: 1fr; }
      .srv-grid { grid-template-columns: 1fr; }
      .results-grid { gap: 1rem; padding: 0.8rem 4vw 1.5rem; }
      .result-card { flex: 0 1 calc(50% - 0.5rem); min-width: 160px; max-width: unset; }
      .location-body { grid-template-columns: 1fr; }
      .location-info { padding: 2rem 6vw; }
      .location-map iframe { min-height: 45vh; }
      .hero-footnote { gap: .8rem; }
      .hero-fn-text { font-size: .62rem; }
    }

    @media (max-width: 480px) {
      .hero-btns { flex-direction: column; }
      .footer-links { flex-direction: column; align-items: center; gap: .55rem; }
      .footer-links a { font-size: .72rem; letter-spacing: .08em; }
      .footer-copy { font-size: .6rem; letter-spacing: .04em; }
      footer { padding-bottom: 5.5rem; }
      .result-card { flex: 0 1 100%; min-width: unset; }
      .about-story-text, .about-philosophy,
      .about-pillars, .space-header,
      .services-section, .services-hero,
      .results-header, .results-grid,
      .packages-header,
      .location-header, .location-info,
      footer { padding-left: 5vw; padding-right: 5vw; }
    }

    /* Page entry animation */
    .page.active { animation: pgIn .38s ease both; }
    @keyframes pgIn {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    /* ── DEV PREVIEW TOGGLE (localhost only) ── */
    #dev-preview-btn {
      position: fixed !important;
      top: 50% !important;
      right: 0 !important;
      bottom: auto !important;
      transform: translateY(-50%) rotate(-90deg);
      transform-origin: right center;
      z-index: 99999;
      background: #c4a76b;
      border: none;
      color: #0d1b2e;
      padding: .55rem 1.2rem;
      font-size: .75rem;
      letter-spacing: .12em;
      font-weight: 600;
      cursor: pointer;
      border-radius: .4rem .4rem 0 0;
      display: flex;
      align-items: center;
      gap: .4rem;
      box-shadow: -2px 0 16px rgba(0,0,0,.5);
      transition: background .2s;
      font-family: 'Noto Serif TC', serif;
      white-space: nowrap;
    }
    #dev-preview-btn:hover { background: #e8d4a8; }
    #dev-preview-btn svg { width: .9rem; height: .9rem; fill: currentColor; }


    /* ════════════════════════════════════
       GLOBAL REFINEMENTS
    ════════════════════════════════════ */

    /* 按鈕 — 更有份量的 hover */
    .btn-gold {
      padding: .88rem 2.5rem;
      letter-spacing: .2em;
      position: relative;
      overflow: hidden;
    }
    .btn-gold::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(58,90,60,.15) 0%, transparent 60%);
      opacity: 0;
      transition: opacity .3s;
    }
    .btn-gold:hover::before { opacity: 1; }
    .btn-outline { padding: .88rem 2.5rem; letter-spacing: .2em; }

    /* 手機按鈕全寬 */
    @media (max-width: 768px) {
      .btn-gold, .btn-outline { display: block; text-align: center; width: 100%; }
    }

    /* NAV — 淺色底、細線 */
    nav {
      background: rgba(245,240,232,0.97);
      border-bottom-color: rgba(58,90,60,.18);
    }

    /* 所有 LABEL 統一風格 */
    .label {
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: .38em;
      color: #2a4a2c;
    }

    /* ABOUT story — 左欄文字更清晰 */
    .about-story-text h1 {
      font-weight: 400;
      color: #2d3a2e;
    }
    .about-story-text p { color: rgba(45,58,46,.92); }

    /* ABOUT pillars — hover 金色光暈 */
    .pillar:hover {
      background: linear-gradient(145deg, rgba(58,90,60,.06) 0%, rgba(58,90,60,.3) 100%);
      box-shadow: inset 0 0 40px rgba(58,90,60,.04);
    }
    .pillar-desc { color: rgba(45,58,46,.65); }

    /* SERVICES — 卡片更有質感 */
    .srv-card {
      background: linear-gradient(160deg, #fff 0%, #fdfaf6 100%);
      box-shadow: 0 2px 16px rgba(58,90,60,.06);
    }
    .srv-card:hover {
      box-shadow: 0 14px 40px rgba(58,90,60,.13);
    }
    .srv-name { font-size: 1.05rem; }
    .srv-desc { color: rgba(22,15,6,.82); font-size: .83rem; }
    .services-section-head h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }

    /* RESULTS — badge 更清楚 */
    .result-info { padding: 1.1rem 1.3rem; }
    .result-badge { font-size: .75rem; letter-spacing: .18em; }

    /* LOCATION — info 區塊提亮 */
    .location-info { background: rgba(245,240,232,.98); }
    .loc-item-value { color: rgba(45,58,46,.9); font-size: 1rem; }
    .loc-contact-text { font-size: .92rem; color: rgba(45,58,46,.85); }

    /* FOOTER 質感 */
    footer {
      background: #eae4d8;
      border-top: 1px solid rgba(58,90,60,.12);
    }
    .footer-brand { font-size: .95rem; letter-spacing: .3em; color: #2d4a2e; }
    .footer-links a { color: rgba(45,58,46,.9); }
    .footer-copy { color: rgba(45,58,46,.72); }

    /* SPACE gallery */
    .space-gallery { margin-bottom: 0; }

    /* PACKAGES margin */
    .packages-grid { margin-bottom: 0; }

    /* 滾動條 */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: #080e1a; }
    ::-webkit-scrollbar-thumb { background: rgba(58,90,60,.4); border-radius: 2px; }

