﻿    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    /* 照片保護 */
    img {
      -webkit-user-drag: none;
      user-drag: none;
      pointer-events: none;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      user-select: none;
    }

    :root {
      --bronze: #C5A059;
      --bronze-lt: #D4B06A;
      --forest: #0d1a0e;
      --deep: #060d06;
      --mist: #9EA89C;
      --pearl: #F0ECE4;
    }

    html { scroll-behavior: smooth; }

    body {
      background-color: #060d06;
      color: #F0ECE4;
      overflow-x: hidden;
      font-family: 'Noto Serif TC', serif;
    }

    /* ── Scrollbar ── */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: #060d06; }
    ::-webkit-scrollbar-thumb { background: var(--bronze); border-radius: 3px; }

    /* ── Canvas overlay ── */
    #mist-canvas {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9998;
      width: 100%;
      height: 100%;
    }

    /* ── Gold shimmer text ── */
    .gold-shimmer {
      background: linear-gradient(90deg, #C5A059 0%, #E8D5A3 40%, #C5A059 60%, #D4B06A 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer 5s linear infinite;
    }

    @keyframes shimmer {
      0%   { background-position: -200% center; }
      100% { background-position:  200% center; }
    }

    /* ── Scroll reveal ── */
    .reveal        { opacity: 0; transform: translateY(48px);  transition: opacity 1.1s cubic-bezier(.16,1,.3,1), transform 1.1s cubic-bezier(.16,1,.3,1); }
    .reveal-left   { opacity: 0; transform: translateX(-60px); transition: opacity 1.1s cubic-bezier(.16,1,.3,1), transform 1.1s cubic-bezier(.16,1,.3,1); }
    .reveal-right  { opacity: 0; transform: translateX(60px);  transition: opacity 1.1s cubic-bezier(.16,1,.3,1), transform 1.1s cubic-bezier(.16,1,.3,1); }
    .reveal-scale  { opacity: 0; transform: scale(0.92);       transition: opacity 1s ease, transform 1s ease; }
    .reveal.vis, .reveal-left.vis, .reveal-right.vis, .reveal-scale.vis { opacity: 1; transform: none; }

    .delay-1 { transition-delay: 0.15s; }
    .delay-2 { transition-delay: 0.3s; }
    .delay-3 { transition-delay: 0.45s; }
    .delay-4 { transition-delay: 0.6s; }

    /* ── Gold divider ── */
    .gold-line {
      display: block;
      width: 64px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--bronze), transparent);
      margin: 28px auto;
    }
    .gold-line-left {
      display: block;
      width: 64px;
      height: 1px;
      background: linear-gradient(90deg, var(--bronze), transparent);
      margin: 24px 0;
    }

    /* ── Marquee ── */
    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 28s linear infinite;
    }
    @keyframes marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ── Hero parallax bg ── */
    .hero-bg {
      background-image:
        linear-gradient(180deg, rgba(6,13,6,0.35) 0%, rgba(6,13,6,0.62) 60%, rgba(6,13,6,1) 100%),
        url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1920&q=85');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }

    /* ── Floating particles (CSS) ── */
    @keyframes floatUp {
      0%   { opacity: 0; transform: translateY(0) scale(1);   }
      20%  { opacity: 1; }
      80%  { opacity: 0.5; }
      100% { opacity: 0; transform: translateY(-120px) scale(0.4); }
    }
    .orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      animation: floatUp linear infinite;
    }

    /* ── Service card hover ── */
    .svc-card {
      transition: transform 0.5s cubic-bezier(.16,1,.3,1), box-shadow 0.5s ease;
      border: 1px solid rgba(197,160,89,0.18);
    }
    .svc-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 70px rgba(197,160,89,0.12), 0 0 0 1px rgba(197,160,89,0.35);
    }
    .svc-card:hover .svc-img { transform: scale(1.06); }
    .svc-img { transition: transform 0.7s cubic-bezier(.16,1,.3,1); }

    /* ── Ingredient circle ── */
    .ing-circle {
      border: 1px solid rgba(197,160,89,0.25);
      transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
    }
    .ing-circle:hover {
      border-color: rgba(197,160,89,0.7);
      box-shadow: 0 0 28px rgba(197,160,89,0.2);
      transform: translateY(-6px) scale(1.04);
    }

    /* ── Testimonial card ── */
    .testi-card {
      border: 1px solid rgba(197,160,89,0.15);
      transition: border-color 0.4s, box-shadow 0.4s;
    }
    .testi-card:hover {
      border-color: rgba(197,160,89,0.4);
      box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    }

    /* ── CTA button ── */
    .btn-gold {
      border: 1px solid var(--bronze);
      color: var(--bronze);
      background: transparent;
      font-family: 'Cinzel', serif;
      letter-spacing: 0.25em;
      font-size: 16px;
      padding: 14px 36px;
      cursor: pointer;
      transition: background 0.35s, color 0.35s, box-shadow 0.35s;
      position: relative;
      overflow: hidden;
    }
    .btn-gold::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--bronze);
      transform: translateX(-101%);
      transition: transform 0.4s cubic-bezier(.16,1,.3,1);
    }
    .btn-gold:hover::after { transform: translateX(0); }
    .btn-gold span { position: relative; z-index: 1; }
    .btn-gold:hover span { color: #060d06; }

    /* ── Nav link underline ── */
    .nav-link::after {
      content: '';
      display: block;
      height: 1px;
      background: var(--bronze);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }
    .nav-link:hover::after { transform: scaleX(1); }

    /* ── Scroll indicator ── */
    @keyframes scrollBounce {
      0%, 100% { transform: translateY(0);   opacity: 0.5; }
      50%       { transform: translateY(8px); opacity: 1;   }
    }
    .scroll-dot { animation: scrollBounce 2s ease-in-out infinite; }

    /* ── Mist overlay ── */
    .mist-layer {
      background: radial-gradient(ellipse 120% 60% at 50% 100%, rgba(45,74,48,0.18) 0%, transparent 70%);
      animation: mistPulse 8s ease-in-out infinite;
    }
    @keyframes mistPulse {
      0%, 100% { opacity: 0.6; }
      50%       { opacity: 1;   }
    }

    /* ── Noise texture overlay ── */
    .noise::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
    }

    /* ── Section bg gradient ── */
    .sec-dark {
      background: linear-gradient(180deg, #060d06 0%, #0a1509 50%, #060d06 100%);
    }
    .sec-forest {
      background: linear-gradient(180deg, #0a1509 0%, #0d1a0e 60%, #0a1509 100%);
    }

    /* ── Horizontal service card image ── */
    .svc-card-h img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(.16,1,.3,1);
      filter: brightness(0.72) saturate(0.75);
    }
    .svc-card:hover .svc-card-h img { transform: scale(1.06); }

    /* ── Mobile hamburger button ── */
    .mobile-menu-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      cursor: pointer;
      padding: 8px;
      background: transparent;
      border: none;
      z-index: 1001;
    }
    .mobile-menu-btn span {
      display: block;
      width: 26px;
      height: 2px;
      background: #C5A059;
      transition: transform 0.35s ease, opacity 0.35s ease;
      transform-origin: center;
    }

    /* ── Mobile nav drawer ── */
    .mobile-nav-drawer {
      display: flex;
      flex-direction: column;
      padding: 20px 24px 28px;
      gap: 0;
      background: rgba(6,13,6,0.97);
      border-bottom: 1px solid rgba(197,160,89,0.22);
      backdrop-filter: blur(16px);
    }
    .mobile-nav-link {
      font-family: "Noto Serif TC", serif;
      font-size: 17px;
      letter-spacing: 0.06em;
      color: #C8D0C4;
      text-decoration: none;
      padding: 14px 0;
      border-bottom: 1px solid rgba(197,160,89,0.1);
      transition: color 0.25s;
    }
    .mobile-nav-link:last-of-type { border-bottom: none; }
    .mobile-nav-link.active { color: #C5A059; }

    /* ── Responsive nav ── */
    @media (max-width: 1100px) {
      .nav-links { gap: 14px !important; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none !important; }
      .mobile-menu-btn { display: flex !important; }
      .hero-h1 { font-size: clamp(2.4rem, 9vw, 4rem) !important; }

      /* Fix iOS Safari fixed background */
      .hero-bg {
        background-attachment: scroll !important;
      }

      /* ── Section padding ── */
      section { padding-left: 0 !important; padding-right: 0 !important; }
      .sec-dark, .sec-forest { padding: 80px 0 !important; }

      /* ── Inner content containers ── */
      section > div,
      footer > div { padding-left: 20px !important; padding-right: 20px !important; }

      /* ── Hero section ── */
      .hero-inner {
        padding: 0 20px !important;
        padding-top: 100px !important;
      }

      /* ── Hero stats row ── */
      .hero-stats {
        gap: 28px !important;
        flex-wrap: wrap !important;
      }

      /* ── Footer ── */
      footer {
        padding: 52px 20px 32px !important;
      }
      footer > div > div:first-child {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
      }
      footer .footer-bottom {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
      }
      footer .footer-legal-links {
        gap: 16px !important;
      }

      /* ── Section overview 3-col → 1-col ── */
      .overview-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
      }
      /* Last card horizontal layout → vertical */
      .overview-last-card {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 28px 20px !important;
        align-items: flex-start !important;
      }
      .overview-last-card > div:last-child {
        display: none !important;
      }

      /* ── 2-col grids → 1-col ── */
      .two-col-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
      }

      /* ── 3-col partner/team grids → 1-col ── */
      .three-col-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
      }

      /* ── Founder story right image offset ── */
      .founder-img-offset {
        top: 0 !important;
        right: 0 !important;
        display: none;
      }

      /* ── Stats row in founder / hair / recruit ── */
      .stats-row {
        gap: 20px !important;
        flex-wrap: wrap !important;
      }

      /* ── Card inner padding ── */
      .svc-card-body { padding: 28px 20px 32px !important; }

      /* ── 2-col grid: remove any large top padding offsets when stacked ── */
      .two-col-grid > div { padding-top: 0 !important; }

      /* ── Carousel arrows position on narrow screen ── */
      .carousel-btn-left  { left: 6px !important; }
      .carousel-btn-right { right: 6px !important; }

      /* ── 3-col beauty treatments last 2 cards ── */
      .three-col-grid { margin-bottom: 16px !important; }

      /* ── Section inner container padding ── */
      section > div[style*="48px"],
      section > div[style*="padding"] {
        padding-left: 20px !important;
        padding-right: 20px !important;
      }

      /* ── Reduce large section padding ── */
      section[style*="140px"] {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
      }
      section[style*="100px"] {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
      }

      /* ── Recruit 5-step grid → 2-col ── */
      .recruit-steps-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
      }

      /* ── Footer bottom bar stack ── */
      footer > div > div:last-child {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
      }
      footer > div > div:last-child > div {
        flex-wrap: wrap !important;
        gap: 16px !important;
      }

      /* ── General font size reductions ── */
      h1 { font-size: clamp(2.2rem, 8vw, 3.5rem) !important; }
      h2 { font-size: clamp(1.6rem, 5.5vw, 2.4rem) !important; }

      /* ── Buttons full-width on mobile ── */
      .btn-gold-block { width: 100% !important; }

      /* ── Letter spacing tighten for Chinese on small screens ── */
      p, a, span { letter-spacing: 0.04em; }

      /* ── Hide decorative large watermark text ── */
      .watermark-text { display: none !important; }
    }

    /* ── Tablet breakpoint ── */
    @media (min-width: 769px) and (max-width: 1024px) {
      .nav-links { gap: 12px !important; }
      .nav-links a { font-size: 15px !important; }
      .three-col-grid { grid-template-columns: repeat(2, 1fr) !important; }
      footer > div > div:first-child {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px !important;
      }
    }
