    @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap');
    
    /* 香檳奶油 */
    :root {
      --bg: #fffaf4;
      --bg-soft: #fff2ea;
      --bg-ivory: #fffdf9;
      --white: #ffffff;

      --text: #3a312c;
      --text-light: #7d6f66;
      --line: rgba(107, 83, 71, 0.14);
      --serif: "Noto Serif TC", serif;
      --sans: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;

      --gold: #d8b06a;
      --gold-dark: #be8f42;

      --sage: #91a88d;
      --sage-dark: #6f856a;

      --peach: #f3d7cc;
      --rose: #e7c2be;
      --blush: #f9e6df;

      --hero-overlay: rgba(70, 45, 32, 0.28);
      --hero-overlay-soft: rgba(70, 45, 32, 0.08);

      --shadow-sm: 0 10px 24px rgba(181, 145, 118, 0.10);
      --shadow-md: 0 18px 46px rgba(181, 145, 118, 0.12);
      --shadow-lg: 0 24px 60px rgba(181, 145, 118, 0.15);

      --container: 1240px;

      --transition: all 0.35s ease;


      --card: rgba(255,255,255,0.82);
      --card-strong: #fffdf9;

      --muted: #7e7168;

      --gold-deep: #af8f54;
      --cream: #fffaf3;
      --accent: #eadfce;
      --shadow: 0 16px 40px rgba(77, 58, 40, 0.08);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --radius-md: 14px;



    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--sans);
      background:
        radial-gradient(circle at top right, rgba(243, 215, 204, 0.35), transparent 22%),
        linear-gradient(180deg, #fffdf9 0%, #fffaf4 100%);
      color: var(--text);
      line-height: 1.78;
      letter-spacing: 0.02em;
    }

    main{
      padding-bottom: 50px;
    }

    img {
      display: block;
      width: 100%;
      height: auto;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    h1,
    h2,
    h3,
    h4 {
      margin: 0 0 12px;
      line-height: 1.18;
      font-family: var(--serif);
      font-weight: 900;
      letter-spacing: 0.02em;
      color: #382d27;
    }

    p {
      margin: 0 0 12px;
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin: 0 auto;
    }

    .section {
      padding: 98px 0;
    }

    .soft-bg {
      background:
        linear-gradient(180deg, rgba(255, 244, 238, 0.92), rgba(255, 248, 241, 0.92));
    }

    .glow-bg {
      background:
        radial-gradient(circle at left top, rgba(243, 215, 204, 0.38), transparent 24%),
        linear-gradient(180deg, #fffaf4 0%, #fff6ef 100%);
    }

    .section-label {
      display: inline-block;
      margin-bottom: 14px;
      color: var(--sage-dark);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .section-label.light {
      color: rgba(255, 255, 255, 0.88);
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 24px;
      margin-bottom: 38px;
      flex-wrap: wrap;
    }

    .section-head.center {
      justify-content: center;
      text-align: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 0 24px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 700;
      font-size: 0.96rem;
      transition: var(--transition);
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #dfba75 0%, #c9984e 100%);
      color: #fff;
      box-shadow: 0 12px 30px rgba(216, 176, 106, 0.32);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(216, 176, 106, 0.38);
    }

    .btn-outline-dark {
      border-color: rgba(184, 145, 105, 0.36);
      color: var(--text);
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(8px);
    }

    .btn-outline-dark:hover {
      border-color: var(--gold);
      color: var(--gold-dark);
      background: #fff;
    }

    .btn-outline-light {
      border-color: rgba(255, 255, 255, 0.42);
      color: #fff;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(10px);
    }

    .btn-outline-light:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--gold-dark);
      font-weight: 700;
    }

    .text-link:hover {
      color: var(--sage-dark);
    }

    /* Header */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255, 250, 244, 0.72);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(216, 176, 106, 0.14);
      box-shadow: 0 6px 20px rgba(181, 145, 118, 0.06);
    }

    .header-inner {
      min-height: 84px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 28px;
    }

    .logo {
      display: inline-flex;
      flex-direction: column;
      white-space: nowrap;
    }

    .logo-main {
      font-family: var(--serif);
      font-size: 1.8rem;
      font-weight: 900;
      letter-spacing: 0.04em;
      color: #5c4638;
    }

    .logo-sub {
      margin-top: 2px;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #9a7d68;
    }

    .main-nav ul {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
    }

    .main-nav a {
      color: #6c5445;
      font-size: 1.15rem;
      letter-spacing: 0.1em;
      font-weight: 800;
      font-family: var(--serif);
    }

    .main-nav a:hover,
    .main-nav a.active {
      color: var(--gold-dark);
    }

    .main-nav .nav-cta {
      padding: 12px 18px;
      border-radius: 999px;
      background: linear-gradient(135deg, #dfba75 0%, #cb9d55 100%);
      color: #fff;
      box-shadow: 0 10px 24px rgba(216, 176, 106, 0.24);
    }

    .main-nav .nav-cta:hover {
      color: #fff;
      transform: translateY(-1px);
    }

    .menuBtn{
      display: block;
      width: 50px;
      height: 50px;
      /* border:1px solid red; */
      position:absolute;
      top: 18px;
      right:20px;
      display: none;
      z-index: 99;
    }
    .menuBtn div{
      background-color: rgb(206, 156, 8);
      height: 6px;
      width: calc(100% - 6px);
      margin: 7px 3px;
      transition: transform 0.5s;
    }

    .menuBtn.active div:nth-of-type(1){
      /* background-color: red; */
      transform: translate(0,13px) rotate(405deg);
    }
    .menuBtn.active div:nth-of-type(2){
      transform: scaleX(0);
    }
    .menuBtn.active div:nth-of-type(3){
      /* background-color: blue; */
      transform: translate(0,-13px) rotate(-405deg);
    }



/* Hero */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: url("../images/banner.png") center center / cover no-repeat;
      padding: 50px 0;
    }

    .hero.pages{
      min-height: 50vh;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(78, 54, 40, 0.42) 0%, rgba(78, 54, 40, 0.18) 44%, rgba(78, 54, 40, 0.06) 100%),
        linear-gradient(to top, rgba(78, 54, 40, 0.16), transparent 38%);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto auto -90px -70px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(255, 245, 237, 0.22);
      filter: blur(10px);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding-top: 86px;
      color: #fff;
    }

    .hero-badge {
      display: inline-block;
      margin-bottom: 22px;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.22);
      border: 1px solid rgba(255, 255, 255, 0.26);
      font-size: 0.92rem;
      font-weight: 700;
      backdrop-filter: blur(12px);
      color: #fff;
    }

    .hero h1 {
      max-width: 960px;
      font-size: clamp(2.8rem, 5vw, 5.4rem);
      margin-bottom: 18px;
      color: #fff;
      text-shadow: 0 8px 26px rgba(55, 33, 19, 0.14);

    }
    .hero h2 {
      font-size:clamp(1.65rem, 2.6vw, 5rem);
      color: white;
      line-height: 1.3em;
      border:1px solid white;
      background-color: rgba(255, 255, 255, 0.1);
      text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
      padding: 20px;
      border-radius: 12px;
      backdrop-filter: blur(10px);
      max-width:80%;
    }

    .hero-text {
      max-width: 700px;
      font-size: 1.06rem;
      color: rgba(255, 255, 255, 0.96);
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      margin-top: 34px;
      flex-wrap: wrap;
    }


    .breadcrumb-wrap{
      padding: 22px 0 0;
    }

    .breadcrumb{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      font-size:.92rem;
      color:var(--text-light);
    }

    .breadcrumb a{
      color:var(--text-light);
    }

    .breadcrumb a:hover{
      color:var(--gold-dark);
    }

    

    /* Footer */
    .site-footer {
      background: linear-gradient(180deg, #fff7ef 0%, #fdf0e5 100%);
      border-top: 1px solid rgba(233, 194, 164, 0.24);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr;
      gap: 24px;
      padding: 54px 0 34px;
    }

    .footer-grid h3,
    .footer-grid h4 {
      margin-bottom: 12px;
      color: #5d473c;
    }

    .footer-grid p,
    .footer-grid li {
      color: var(--text-light);
    }

    .footer-grid li + li {
      margin-top: 8px;
    }

    .footer-grid a:hover {
      color: var(--gold-dark);
    }

    .copyright {
      border-top: 1px solid rgba(233, 194, 164, 0.22);
      padding: 18px 0;
    }

    .copyright p {
      margin: 0;
      color: var(--text-light);
      font-size: 0.92rem;
    }


    footer .icon{
      width: 32px;
      height: 32px;
    }


    /* Responsive */
    @media (max-width: 1180px) {

    }

    @media (max-width: 980px) {
      .header-inner {
        min-height: auto;
        padding: 10px 0;
        flex-direction: column;
        /* align-items: flex-start; */
        gap:5px;
      }
      .logo{
        text-align: center;
        margin: 0 auto;
      }

      .main-nav ul {
        gap: 14px 18px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {

      
      .main-nav{
          width: 100%;
          height: 100vh;

      }

      .main-nav ul {
        display: block;
      }

      .main-nav ul li{
        text-align: center;
        margin: 12px;
      }

      .menuBtn{
        display: block;
      }

      .section {
        padding: 74px 0;
      }

      .hero {
        min-height: 92vh;
      }

      .hero-content {
        padding-top: 130px;
      }

      .container{
        width:min(calc(100% - 24px), 1180px);
      }


    }

    @media (max-width: 560px) {



      .container {
        /* width: min(calc(100% - 28px), var(--container)); */
        gap:5px;
      }

      .hero h1 {
        font-size: 2.35rem;
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
        width: 100%;
      }

      .btn {
        width: 100%;
      }

      .cta-box {
        padding: 34px 22px;
      }

    }