@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  background: #fff;
  font-family: "Noto Serif TC", serif;
  overflow-x: hidden;
  width: 100%; }
  body.menu-open {
    overflow: hidden; }

/* --- Header 導覽列 --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 2500;
  display: flex;
  align-items: center;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 100%); }
  .main-header .logo img {
    filter: brightness(30); }
  @media only screen and (max-width: 768px) {
    .main-header {
      height: 70px; } }
  .main-header.is-white {
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); }
    .main-header.is-white .logo img {
      filter: brightness(1); }
    .main-header.is-white .nav-link {
      color: #333 !important; }
    .main-header.is-white .arrow {
      border-color: #333 !important;
      border-right-color: #333 !important;
      border-bottom-color: #333 !important; }
    .main-header.is-white .line {
      background-color: #333 !important; }
    @media only screen and (max-width: 768px) {
      .main-header.is-white {
        height: 70px; } }
  .main-header .nav-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media only screen and (max-width: 768px) {
      .main-header .nav-container {
        padding: 0 25px; } }
  .main-header .logo {
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5em;
    font-size: 1.1rem;
    transition: color 0.3s; }

/* --- 電腦版選單 --- */
@media only screen and (max-width: 768px) {
  .desktop-nav {
    display: none; } }
.desktop-nav .nav-menu {
  display: flex;
  list-style: none;
  gap: 60px;
  align-items: center; }
  .desktop-nav .nav-menu .nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s; }
  .desktop-nav .nav-menu .arrow {
    width: 6px;
    height: 6px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    margin-top: -4px; }
  .desktop-nav .nav-menu .has-dropdown {
    position: relative;
    padding: 10px 0; }
    .desktop-nav .nav-menu .has-dropdown:hover .submenu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0); }
    .desktop-nav .nav-menu .has-dropdown:hover .arrow {
      transform: rotate(-135deg);
      margin-top: 2px; }
.desktop-nav .submenu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 180px;
  background: #fff;
  list-style: none;
  padding: 20px 0;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1); }
  .desktop-nav .submenu li a {
    display: block;
    padding: 10px 25px;
    color: #333;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1px;
    transition: 0.3s; }
    .desktop-nav .submenu li a:hover {
      color: #a89166;
      padding-left: 30px; }
    .desktop-nav .submenu li a.active {
      color: #a89166;
      font-weight: 600; }

/* --- 手機版選單元件 --- */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  z-index: 2600;
  cursor: pointer; }
  @media only screen and (max-width: 768px) {
    .mobile-toggle {
      display: flex; } }
  .mobile-toggle .line {
    width: 24px;
    height: 1.5px;
    background: #fff;
    transition: 0.3s; }
  .mobile-toggle.active .line {
    background-color: #333 !important; }
  .mobile-toggle.active .line:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg); }
  .mobile-toggle.active .line:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg); }

.mobile-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  z-index: 1900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1); }
  .mobile-mask.active {
    opacity: 1;
    visibility: visible; }

.mobile-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  left: 5%;
  width: 90%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  max-height: 0;
  overflow: hidden;
  z-index: 2100;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1); }
  @media only screen and (min-width: 767.8px) {
    .mobile-dropdown {
      display: none; } }
  .mobile-dropdown.active {
    max-height: 600px;
    padding: 20px 0; }
  .mobile-dropdown .mobile-nav-list {
    list-style: none;
    padding: 20px 30px; }
    .mobile-dropdown .mobile-nav-list li {
      margin: 20px 0; }
      .mobile-dropdown .mobile-nav-list li a {
        text-decoration: none;
        color: #333;
        font-size: 1.2rem;
        font-weight: normal;
        display: block; }
    .mobile-dropdown .mobile-nav-list .m-nav-item {
      display: flex;
      justify-content: space-between;
      align-items: center; }
    .mobile-dropdown .mobile-nav-list .m-arrow {
      width: 10px;
      height: 10px;
      border-right: 2px solid #333;
      border-bottom: 2px solid #333;
      transform: rotate(45deg);
      transition: 0.3s; }
      .mobile-dropdown .mobile-nav-list .m-arrow.open {
        transform: rotate(-135deg); }
    .mobile-dropdown .mobile-nav-list .m-submenu {
      list-style: none;
      max-height: 0;
      overflow: hidden;
      transition: 0.4s ease; }
      .mobile-dropdown .mobile-nav-list .m-submenu.open {
        max-height: 200px;
        margin-top: 20px;
        padding-left: 15px; }
      .mobile-dropdown .mobile-nav-list .m-submenu li {
        margin: 12px 0 !important; }
        .mobile-dropdown .mobile-nav-list .m-submenu li a {
          font-size: 1rem !important;
          color: #777 !important;
          font-weight: 400 !important; }
          .mobile-dropdown .mobile-nav-list .m-submenu li a.active {
            color: #a89166 !important;
            font-weight: 600 !important; }

/* --- Hero Section & Swiper --- */
.hero-section {
  height: 200vh;
  position: relative; }
  .hero-section .sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden; }
  .hero-section .zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
  .hero-section .img-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    will-change: width, height, border-radius; }
    .hero-section .img-container .swiper {
      width: 100%;
      height: 100%; }
    .hero-section .img-container img {
      width: 100%;
      height: 100%;
      object-fit: cover; }

/* --- 進度條 Footer --- */
.hero-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 6%;
  pointer-events: none; }
  @media only screen and (max-width: 768px) {
    .hero-footer {
      height: 80px;
      padding: 0 30px; } }
  .hero-footer .footer-content {
    width: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    mix-blend-mode: difference; }
  .hero-footer .slide-num {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    min-width: 60px; }
  .hero-footer .progress-bar-wrap {
    flex-grow: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-left: 40px;
    position: relative; }
    @media only screen and (max-width: 768px) {
      .hero-footer .progress-bar-wrap {
        margin-left: 20px; } }
    .hero-footer .progress-bar-wrap .progress-line {
      position: absolute;
      left: 0;
      top: 0;
      width: 0%;
      height: 100%;
      background: #fff; }

/* --- 浮動過渡圖片 --- */
.case-transition-media {
  position: fixed;
  left: 6vw;
  bottom: 12vh;
  width: 30vw;
  z-index: 1500;
  pointer-events: none;
  opacity: 0.6; }
  @media only screen and (max-width: 768px) {
    .case-transition-media {
      width: 35vw;
      bottom: 10vh;
      left: 30px; } }
  .case-transition-media img {
    width: 100%; }

/* --- 內容區塊 --- */
.content-section {
  padding: 60px 0;
  background: #fff;
  position: relative;
  z-index: 10; }
  .content-section .container {
    max-width: 1280px;
    margin: 0 auto; }
    @media only screen and (max-width: 768px) {
      .content-section .container {
        padding: 0 30px; } }
  .content-section .label {
    font-size: 11px;
    letter-spacing: 5px;
    color: #a89166;
    font-weight: 700;
    margin-bottom: 20px; }
  .content-section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2; }
    @media only screen and (max-width: 768px) {
      .content-section h2 {
        font-size: 2.2rem; } }
  .content-section p {
    font-size: 1.1rem;
    color: #666;
    line-height: 2;
    font-weight: 300; }

a {
  text-decoration: none !important; }

body {
  letter-spacing: 2px; }

.box-intro {
  display: flex;
  align-items: center;
  position: relative; }
  @media only screen and (max-width: 768px) {
    .box-intro {
      flex-direction: column; } }
  .box-intro .l {
    width: 50%;
    padding-right: 60px; }
    @media only screen and (max-width: 768px) {
      .box-intro .l {
        width: 100%;
        padding-right: 0; } }
    .box-intro .l h6 {
      font-size: 16px;
      font-weight: normal;
      line-height: 2.2;
      color: #555;
      letter-spacing: 1px; }
      .box-intro .l h6 span {
        font-size: 1.8em;
        color: #2d5a3d;
        font-weight: 500;
        margin-left: -5px; }
    .box-intro .l .about-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 40px;
      color: #2d5a3d;
      text-decoration: none;
      font-size: 14px;
      letter-spacing: 2px;
      transition: all 0.3s ease;
      padding: 12px 0;
      border-bottom: 1px solid transparent; }
      .box-intro .l .about-link:hover {
        border-bottom-color: #2d5a3d; }
        .box-intro .l .about-link:hover .arrow-right {
          transform: translateX(5px); }
      .box-intro .l .about-link .arrow-right {
        width: 20px;
        height: 1px;
        background: #2d5a3d;
        position: relative;
        transition: transform 0.3s ease; }
        .box-intro .l .about-link .arrow-right::after {
          content: '';
          position: absolute;
          right: 0;
          top: -3px;
          width: 8px;
          height: 8px;
          border-right: 1px solid #2d5a3d;
          border-top: 1px solid #2d5a3d;
          transform: rotate(45deg); }
  .box-intro .r {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42%;
    overflow: hidden;
    border-radius: 4px; }
    @media only screen and (max-width: 768px) {
      .box-intro .r {
        width: 100%;
        margin-top: 50px;
        position: relative;
        top: auto;
        transform: none; } }
    .box-intro .r img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1); }
    .box-intro .r:hover img {
      transform: scale(1.03); }

#sectionTwo,
.about-section {
  margin-top: 10vh;
  align-content: center;
  min-height: 50vh;
  margin-bottom: 15vh;
  padding: 80px 0; }
  @media only screen and (max-width: 768px) {
    #sectionTwo,
    .about-section {
      margin-top: 0;
      margin-bottom: 5vh;
      padding: 60px 0; } }

.content-section .container {
  padding: 0 60px; }
  @media only screen and (max-width: 768px) {
    .content-section .container {
      padding: 0 25px; } }

.cases-section {
  padding: 100px 0 120px;
  background: #fff;
  position: relative;
  z-index: 10; }
  @media only screen and (max-width: 768px) {
    .cases-section {
      padding: 60px 0 80px; } }

.cases-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px; }
  @media only screen and (max-width: 768px) {
    .cases-container {
      padding: 0 25px; } }

.section-header {
  text-align: center;
  margin-bottom: 80px; }
  @media only screen and (max-width: 768px) {
    .section-header {
      margin-bottom: 50px; } }
  .section-header .section-title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 8px;
    color: #333;
    margin-bottom: 20px;
    font-family: "Noto Serif TC", serif; }
    @media only screen and (max-width: 768px) {
      .section-header .section-title {
        font-size: 1.5rem;
        letter-spacing: 5px; } }
  .section-header .title-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2d5a3d, transparent);
    margin: 0 auto; }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; }
  @media only screen and (max-width: 768px) {
    .cases-grid {
      grid-template-columns: 1fr;
      gap: 40px; } }

.case-card {
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px); }
  .case-card.visible {
    opacity: 1;
    transform: translateY(0); }
  .case-card .case-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: 4px; }
    @media only screen and (max-width: 768px) {
      .case-card .case-image-wrap {
        aspect-ratio: 4 / 3; } }
    .case-card .case-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1); }
    .case-card .case-image-wrap .case-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.7) 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 30px;
      opacity: 0;
      transition: opacity 0.5s ease; }
      @media only screen and (max-width: 768px) {
        .case-card .case-image-wrap .case-overlay {
          opacity: 1;
          background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.6) 100%); } }
    .case-card .case-image-wrap .case-tag {
      position: absolute;
      top: 20px;
      left: 20px;
      background: rgba(255, 255, 255, 0.95);
      color: #333;
      font-size: 11px;
      padding: 6px 14px;
      letter-spacing: 2px;
      border-radius: 2px; }
    .case-card .case-image-wrap .case-title {
      color: #fff;
      font-size: 1.3rem;
      font-weight: 400;
      letter-spacing: 3px;
      margin-bottom: 12px;
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.5s ease 0.1s; }
      @media only screen and (max-width: 768px) {
        .case-card .case-image-wrap .case-title {
          transform: translateY(0);
          opacity: 1; } }
    .case-card .case-image-wrap .case-desc {
      color: rgba(255, 255, 255, 0.85);
      font-size: 13px;
      line-height: 1.8;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: all 0.5s ease 0.2s; }
      @media only screen and (max-width: 768px) {
        .case-card .case-image-wrap .case-desc {
          display: none; } }
  .case-card:hover .case-image-wrap img {
    transform: scale(1.08); }
  .case-card:hover .case-image-wrap .case-overlay {
    opacity: 1; }
  .case-card:hover .case-image-wrap .case-title {
    transform: translateY(0);
    opacity: 1; }
  .case-card:hover .case-image-wrap .case-desc {
    max-height: 100px;
    opacity: 1; }
  .case-card .case-info {
    padding: 20px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .case-card .case-info .case-location {
      font-size: 15px;
      font-weight: 500;
      color: #333;
      letter-spacing: 1px; }
    .case-card .case-info .case-type {
      font-size: 11px;
      color: #999;
      letter-spacing: 1px;
      text-transform: uppercase; }

.cases-more {
  text-align: center;
  margin-top: 60px; }
  .cases-more .btn-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    border: 1px solid #2d5a3d;
    color: #2d5a3d;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 3px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden; }
    .cases-more .btn-more::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: #2d5a3d;
      transition: left 0.4s ease;
      z-index: -1; }
    .cases-more .btn-more:hover {
      color: #fff; }
      .cases-more .btn-more:hover::before {
        left: 0; }
      .cases-more .btn-more:hover .btn-arrow {
        border-color: #fff;
        transform: translateX(5px); }
    .cases-more .btn-more .btn-arrow {
      width: 8px;
      height: 8px;
      border-right: 1.5px solid #2d5a3d;
      border-bottom: 1.5px solid #2d5a3d;
      transform: rotate(-45deg);
      transition: all 0.4s ease; }

.cases-page {
  padding-top: 80px;
  background: #fff;
  min-height: 100vh; }

.page-cases .case-transition-media {
  display: none; }

.cases-filter-section {
  padding: 40px 0;
  background: #fff;
  position: sticky;
  top: 60px;
  z-index: 100; }
  @media only screen and (max-width: 768px) {
    .cases-filter-section {
      padding: 25px 0;
      top: 70px; } }

.filter-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px; }
  @media only screen and (max-width: 768px) {
    .filter-container {
      padding: 0 25px; } }

.filter-tabs {
  display: flex;
  gap: 40px;
  justify-content: center; }
  @media only screen and (max-width: 768px) {
    .filter-tabs {
      gap: 20px;
      flex-wrap: wrap; } }
  .filter-tabs .filter-tab {
    background: none;
    border: none;
    font-size: 13px;
    letter-spacing: 2px;
    color: #999;
    cursor: pointer;
    padding: 10px 5px;
    position: relative;
    transition: color 0.3s ease;
    font-family: "Noto Sans TC", sans-serif; }
    .filter-tabs .filter-tab::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: #2d5a3d;
      transition: width 0.4s ease; }
    .filter-tabs .filter-tab:hover {
      color: #2d5a3d; }
    .filter-tabs .filter-tab.active {
      color: #2d5a3d;
      font-weight: 500; }
      .filter-tabs .filter-tab.active::after {
        width: 100%; }

.featured-case {
  padding: 0 60px 80px;
  max-width: 1520px;
  margin: 0 auto; }
  @media only screen and (max-width: 768px) {
    .featured-case {
      padding: 0 25px 50px; } }
  .featured-case .featured-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px; }
    @media only screen and (max-width: 768px) {
      .featured-case .featured-image-wrap {
        aspect-ratio: 4 / 3; } }
    .featured-case .featured-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1); }
    .featured-case .featured-image-wrap:hover img {
      transform: scale(1.03); }
    .featured-case .featured-image-wrap .featured-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
      display: flex;
      align-items: center;
      padding: 60px; }
      @media only screen and (max-width: 768px) {
        .featured-case .featured-image-wrap .featured-overlay {
          padding: 30px;
          background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
          align-items: flex-end; } }
    .featured-case .featured-image-wrap .featured-content {
      max-width: 500px;
      color: #fff; }
      @media only screen and (max-width: 768px) {
        .featured-case .featured-image-wrap .featured-content {
          max-width: 100%; } }
    .featured-case .featured-image-wrap .featured-title {
      font-size: 2.5rem;
      font-weight: 500;
      letter-spacing: 4px;
      margin-bottom: 10px; }
      @media only screen and (max-width: 768px) {
        .featured-case .featured-image-wrap .featured-title {
          font-size: 1.5rem; } }
    .featured-case .featured-image-wrap .featured-type {
      font-size: 13px;
      letter-spacing: 2px;
      opacity: 0.8;
      display: block;
      margin-bottom: 25px; }
      @media only screen and (max-width: 768px) {
        .featured-case .featured-image-wrap .featured-type {
          margin-bottom: 15px; } }
    .featured-case .featured-image-wrap .featured-desc {
      font-size: 14px;
      line-height: 2;
      opacity: 0.9; }
      @media only screen and (max-width: 768px) {
        .featured-case .featured-image-wrap .featured-desc {
          display: none; } }

.cases-grid-section {
  padding: 0 0 100px; }
  @media only screen and (max-width: 768px) {
    .cases-grid-section {
      padding: 0 0 60px; } }

.cases-grid-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0px; }
  @media only screen and (max-width: 768px) {
    .cases-grid-container {
      padding: 0 25px; } }

.cases-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; }
  @media only screen and (max-width: 768px) {
    .cases-portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px; } }

.portfolio-card {
  opacity: 0;
  transform: translateY(30px); }
  .portfolio-card.visible {
    opacity: 1;
    transform: translateY(0); }
  .portfolio-card.hidden {
    display: none; }
  .portfolio-card .card-link {
    text-decoration: none;
    display: block; }
  .portfolio-card .card-image-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px; }
    .portfolio-card .card-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1); }
    .portfolio-card .card-image-wrap .card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.75) 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 30px;
      opacity: 0;
      transition: opacity 0.5s ease; }
      @media only screen and (max-width: 768px) {
        .portfolio-card .card-image-wrap .card-overlay {
          opacity: 1;
          padding: 20px; } }
    .portfolio-card .card-image-wrap .card-category {
      position: absolute;
      top: 20px;
      left: 20px;
      background: rgba(255, 255, 255, 0.95);
      color: #333;
      font-size: 10px;
      padding: 6px 12px;
      letter-spacing: 2px;
      border-radius: 2px;
      opacity: 0;
      transform: translateY(-10px);
      transition: all 0.4s ease; }
      @media only screen and (max-width: 768px) {
        .portfolio-card .card-image-wrap .card-category {
          opacity: 1;
          transform: translateY(0);
          font-size: 9px;
          padding: 4px 8px;
          top: 12px;
          left: 12px; } }
    .portfolio-card .card-image-wrap .card-content {
      color: #fff; }
    .portfolio-card .card-image-wrap .card-title {
      font-size: 1.2rem;
      font-weight: 400;
      letter-spacing: 2px;
      margin-bottom: 8px;
      transform: translateY(15px);
      opacity: 0;
      transition: all 0.5s ease 0.1s; }
      @media only screen and (max-width: 768px) {
        .portfolio-card .card-image-wrap .card-title {
          font-size: 0.9rem;
          transform: translateY(0);
          opacity: 1;
          letter-spacing: 1px; } }
    .portfolio-card .card-image-wrap .card-desc {
      font-size: 12px;
      line-height: 1.7;
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      transition: all 0.5s ease 0.15s;
      color: rgba(255, 255, 255, 0.85); }
      @media only screen and (max-width: 768px) {
        .portfolio-card .card-image-wrap .card-desc {
          display: none; } }
    .portfolio-card .card-image-wrap .card-view {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 15px;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.4s ease 0.2s; }
      .portfolio-card .card-image-wrap .card-view .view-text {
        font-size: 11px;
        letter-spacing: 2px;
        color: rgba(255, 255, 255, 0.9); }
      .portfolio-card .card-image-wrap .card-view .view-arrow {
        width: 20px;
        height: 1px;
        background: rgba(255, 255, 255, 0.7);
        position: relative; }
        .portfolio-card .card-image-wrap .card-view .view-arrow::after {
          content: '';
          position: absolute;
          right: 0;
          top: -3px;
          width: 6px;
          height: 6px;
          border-right: 1px solid rgba(255, 255, 255, 0.7);
          border-bottom: 1px solid rgba(255, 255, 255, 0.7);
          transform: rotate(-45deg); }
      @media only screen and (max-width: 768px) {
        .portfolio-card .card-image-wrap .card-view {
          display: none; } }
  .portfolio-card:hover .card-image-wrap img {
    transform: scale(1.08); }
  .portfolio-card:hover .card-image-wrap .card-overlay {
    opacity: 1; }
  .portfolio-card:hover .card-image-wrap .card-category {
    opacity: 1;
    transform: translateY(0); }
  .portfolio-card:hover .card-image-wrap .card-title {
    transform: translateY(0);
    opacity: 1; }
  .portfolio-card:hover .card-image-wrap .card-desc {
    opacity: 1;
    max-height: 60px; }
  .portfolio-card:hover .card-image-wrap .card-view {
    opacity: 1;
    transform: translateY(0); }

.case-detail-page {
  padding-top: 60px;
  background: #fff; }
  .case-detail-page ~ .case-transition-media {
    display: none; }

.case-hero .hero-image {
  width: 100%;
  height: 70vh;
  overflow: hidden; }
  @media only screen and (max-width: 768px) {
    .case-hero .hero-image {
      height: 50vh; } }
  .case-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.case-info {
  padding: 60px 0; }
  @media only screen and (max-width: 768px) {
    .case-info {
      padding: 40px 0; } }
  .case-info .info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px; }
    @media only screen and (max-width: 768px) {
      .case-info .info-container {
        padding: 0 25px; } }
  .case-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 60px; }
    @media only screen and (max-width: 768px) {
      .case-info .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px; } }
  .case-info .info-item .info-label {
    display: block;
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 8px; }
  .case-info .info-item .info-value {
    font-size: 14px;
    color: #333;
    line-height: 1.8; }

.case-intro {
  padding: 0 0 60px; }
  .case-intro .intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px; }
    @media only screen and (max-width: 768px) {
      .case-intro .intro-container {
        padding: 0 25px; } }
    .case-intro .intro-container p {
      font-size: 15px;
      line-height: 2.2;
      color: #555;
      text-align: justify; }

.case-modules .module {
  margin-bottom: 60px; }
  @media only screen and (max-width: 768px) {
    .case-modules .module {
      margin-bottom: 40px; } }

.module-single-image {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px; }
  @media only screen and (max-width: 768px) {
    .module-single-image {
      padding: 0 25px; } }
  .module-single-image.fullwidth {
    max-width: 100%;
    padding: 0; }
  .module-single-image .image-wrap img {
    width: 100%;
    height: auto;
    display: block; }

.module-multi-image {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px; }
  @media only screen and (max-width: 768px) {
    .module-multi-image {
      padding: 0 25px; } }
  .module-multi-image .multi-image-grid {
    display: grid;
    gap: 20px; }
  .module-multi-image.grid-2 .multi-image-grid {
    grid-template-columns: repeat(2, 1fr); }
    @media only screen and (max-width: 768px) {
      .module-multi-image.grid-2 .multi-image-grid {
        grid-template-columns: 1fr; } }
  .module-multi-image.grid-3 .multi-image-grid {
    grid-template-columns: repeat(3, 1fr); }
    @media only screen and (max-width: 768px) {
      .module-multi-image.grid-3 .multi-image-grid {
        grid-template-columns: 1fr; } }
  .module-multi-image.grid-4 .multi-image-grid {
    grid-template-columns: repeat(4, 1fr); }
    @media only screen and (max-width: 768px) {
      .module-multi-image.grid-4 .multi-image-grid {
        grid-template-columns: repeat(2, 1fr); } }
  .module-multi-image .grid-item {
    cursor: pointer;
    overflow: hidden; }
    .module-multi-image .grid-item img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease; }
    .module-multi-image .grid-item:hover img {
      transform: scale(1.05); }
    .module-multi-image .grid-item .image-caption {
      font-size: 12px;
      color: #999;
      margin-top: 10px;
      text-align: center; }

.module-image-text {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px; }
  @media only screen and (max-width: 768px) {
    .module-image-text {
      padding: 0 25px; } }
  .module-image-text .image-text-wrap {
    display: flex;
    gap: 60px;
    align-items: center; }
    @media only screen and (max-width: 768px) {
      .module-image-text .image-text-wrap {
        flex-direction: column;
        gap: 30px; } }
  .module-image-text .image-side {
    flex: 1; }
    .module-image-text .image-side img {
      width: 100%;
      height: auto; }
  .module-image-text .text-side {
    flex: 1; }
    .module-image-text .text-side p {
      font-size: 14px;
      line-height: 2;
      color: #555; }
  .module-image-text.layout-right .image-text-wrap {
    flex-direction: row-reverse; }
    @media only screen and (max-width: 768px) {
      .module-image-text.layout-right .image-text-wrap {
        flex-direction: column; } }

.module-image-overlay {
  position: relative; }
  .module-image-overlay .overlay-wrap {
    position: relative;
    width: 100%;
    min-height: 500px; }
    @media only screen and (max-width: 768px) {
      .module-image-overlay .overlay-wrap {
        min-height: 350px; } }
    .module-image-overlay .overlay-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0; }
    .module-image-overlay .overlay-wrap .overlay-text {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px;
      background: rgba(0, 0, 0, 0.3); }
      .module-image-overlay .overlay-wrap .overlay-text p {
        color: #fff;
        font-size: 18px;
        line-height: 2;
        text-align: center;
        max-width: 700px; }
  .module-image-overlay.text-left .overlay-text {
    justify-content: flex-start; }
    .module-image-overlay.text-left .overlay-text p {
      text-align: left; }
  .module-image-overlay.text-right .overlay-text {
    justify-content: flex-end; }
    .module-image-overlay.text-right .overlay-text p {
      text-align: right; }

.module-text {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px; }
  @media only screen and (max-width: 768px) {
    .module-text {
      padding: 0 25px; } }
  .module-text .text-container {
    font-size: 15px;
    line-height: 2.2;
    color: #555;
    text-align: justify; }

.module-video {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px; }
  @media only screen and (max-width: 768px) {
    .module-video {
      padding: 0 25px; } }
  .module-video .video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden; }
    .module-video .video-wrap iframe, .module-video .video-wrap video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }

.case-nav {
  padding: 60px 0 100px;
  border-top: 1px solid #eee; }
  @media only screen and (max-width: 768px) {
    .case-nav {
      padding: 40px 0 60px; } }
  .case-nav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: center; }
    @media only screen and (max-width: 768px) {
      .case-nav .nav-container {
        padding: 0 25px; } }
  .case-nav .back-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease; }
    .case-nav .back-link:hover {
      color: #2d5a3d; }
    .case-nav .back-link .icon {
      font-size: 18px; }

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease; }
  .lightbox.active {
    opacity: 1;
    visibility: visible; }
  .lightbox .lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10;
    font-family: 'Noto Serif TC';
    font-weight: lighter; }
    @media only screen and (max-width: 768px) {
      .lightbox .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 30px; } }
  .lightbox #lightboxImg {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain; }
  .lightbox .lightbox-caption {
    color: #fff;
    font-size: 14px;
    margin-top: 20px;
    text-align: center;
    padding: 0 20px; }

.related-cases {
  padding: 80px 0;
  background: #f8f7f5; }
  @media only screen and (max-width: 768px) {
    .related-cases {
      padding: 50px 0; } }
  .related-cases .related-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px; }
    @media only screen and (max-width: 768px) {
      .related-cases .related-container {
        padding: 0 25px; } }
  .related-cases .related-title {
    font-family: 'Noto Serif TC', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.1em; }
    @media only screen and (max-width: 768px) {
      .related-cases .related-title {
        font-size: 1.3rem;
        margin-bottom: 30px; } }
  .related-cases .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; }
    @media only screen and (max-width: 768px) {
      .related-cases .related-grid {
        grid-template-columns: 1fr;
        gap: 25px; } }
  .related-cases .related-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease; }
    .related-cases .related-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1); }
      .related-cases .related-card:hover .related-image img {
        transform: scale(1.05); }
  .related-cases .related-link {
    display: block;
    text-decoration: none;
    color: inherit; }
  .related-cases .related-image {
    aspect-ratio: 16/10;
    overflow: hidden; }
    .related-cases .related-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease; }
    .related-cases .related-image .placeholder-image {
      width: 100%;
      height: 100%;
      background: #eee; }
  .related-cases .related-content {
    padding: 20px; }
  .related-cases .related-category {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: #2d5a3d;
    margin-bottom: 8px;
    font-weight: 600; }
  .related-cases .related-card-title {
    font-family: 'Noto Serif TC', serif;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .related-cases .related-date,
  .related-cases .related-info {
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 0.05em; }

.process-hero {
  background: linear-gradient(135deg, #2d5a3d 0%, #1c3826 100%);
  padding: 160px 0 100px;
  text-align: center;
  color: #fff; }
  .process-hero .hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px; }
    .process-hero .hero-content h1 {
      font-family: "Noto Serif TC", serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 500;
      margin-bottom: 20px;
      letter-spacing: 0.1em; }
    .process-hero .hero-content p {
      font-size: 1.1rem;
      opacity: 0.9;
      letter-spacing: 0.05em; }

.process-section {
  padding: 100px 0; }
  .process-section.construction-process {
    background: #f8f7f5; }
  .process-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; }
  .process-section .section-header {
    text-align: center;
    margin-bottom: 80px; }
    .process-section .section-header .section-label {
      display: inline-block;
      font-size: 0.85rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #a89166;
      margin-bottom: 15px; }
    .process-section .section-header h2 {
      font-family: "Noto Serif TC", serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 500;
      color: #333;
      margin-bottom: 15px;
      letter-spacing: 0.1em; }
    .process-section .section-header p {
      font-size: 1rem;
      color: #666;
      max-width: 500px;
      margin: 0 auto; }

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0; }

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #2d5a3d, #a89166);
  transform: translateX(-50%); }
  @media (max-width: 768px) {
    .timeline-line {
      left: 30px; } }

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 60px; }
  .timeline-item:last-child {
    margin-bottom: 0; }
  @media (max-width: 768px) {
    .timeline-item {
      grid-template-columns: 60px 1fr;
      gap: 20px; }
      .timeline-item .timeline-content.left,
      .timeline-item .timeline-image.left {
        display: none; }
      .timeline-item .timeline-content.right,
      .timeline-item .timeline-image.right {
        grid-column: 2; }
      .timeline-item .timeline-dot {
        grid-column: 1;
        grid-row: 1; } }

.timeline-dot {
  width: 20px;
  height: 20px;
  background: #2d5a3d;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  justify-self: center;
  box-shadow: 0 0 0 6px rgba(45, 90, 61, 0.2); }
  .timeline-dot::before {
    content: '';
    position: absolute;
    inset: 4px;
    background: #fff;
    border-radius: 50%; }

.timeline-content {
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12); }
  .timeline-content.left {
    text-align: right; }
    .timeline-content.left .step-number {
      margin-left: auto; }
  .timeline-content .step-number {
    display: inline-block;
    font-family: "Noto Serif TC", serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #a89166;
    line-height: 1;
    margin-bottom: 15px; }
  .timeline-content h3 {
    font-family: "Noto Serif TC", serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
    letter-spacing: 0.05em; }
  .timeline-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8; }
  .construction-process .timeline-content {
    background: #fff; }

.timeline-image .image-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45, 90, 61, 0.1), rgba(168, 145, 102, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.3s ease; }
  .timeline-image .image-placeholder:hover {
    transform: scale(1.05); }
  .timeline-image .image-placeholder svg {
    width: 48px;
    height: 48px;
    color: #2d5a3d; }
.timeline-image.left .image-placeholder {
  margin-right: 0;
  margin-left: auto; }
@media (max-width: 768px) {
  .timeline-image {
    display: none; } }

.process-cta {
  background: linear-gradient(135deg, #2d5a3d 0%, #1f3f2b 100%);
  padding: 100px 0;
  text-align: center; }
  .process-cta .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px; }
  .process-cta .cta-content {
    color: #fff; }
    .process-cta .cta-content h2 {
      font-family: "Noto Serif TC", serif;
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      font-weight: 500;
      margin-bottom: 15px;
      letter-spacing: 0.1em; }
    .process-cta .cta-content p {
      font-size: 1.1rem;
      opacity: 0.9;
      margin-bottom: 40px; }
    .process-cta .cta-content .btn-primary {
      display: inline-block;
      padding: 18px 50px;
      background: #fff;
      color: #2d5a3d;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-decoration: none;
      border-radius: 50px;
      transition: all 0.3s ease; }
      .process-cta .cta-content .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }

@media (max-width: 768px) {
  .process-hero {
    padding: 140px 0 80px; }

  .process-section {
    padding: 60px 0; }
    .process-section .section-header {
      margin-bottom: 50px; }

  .timeline-content {
    padding: 25px; }
    .timeline-content.left {
      text-align: left; }
      .timeline-content.left .step-number {
        margin-left: 0; }
    .timeline-content .step-number {
      font-size: 2rem; }
    .timeline-content h3 {
      font-size: 1.15rem; }

  .timeline-item {
    margin-bottom: 40px; }

  .process-cta {
    padding: 60px 0; }
    .process-cta .cta-content .btn-primary {
      padding: 16px 40px; } }
.articles-page {
  padding-top: 60px; }

.page-hero {
  background: linear-gradient(135deg, #2d5a3d 0%, #1c3826 100%);
  padding: 80px 0 60px;
  color: #fff; }
  .page-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; }
  .page-hero .page-title {
    font-family: 'Noto Serif TC', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.1em; }
  .page-hero .page-subtitle {
    font-size: 1rem;
    opacity: 0.85;
    letter-spacing: 0.05em; }

.category-filter {
  background: #f8f7f5;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5; }
  .category-filter .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; }
  .category-filter .filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px; }
  .category-filter .filter-tag {
    padding: 8px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 30px;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease; }
    .category-filter .filter-tag:hover {
      border-color: #2d5a3d;
      color: #2d5a3d; }
    .category-filter .filter-tag.active {
      background: #2d5a3d;
      border-color: #2d5a3d;
      color: #fff; }

.articles-editorial {
  padding: 80px 0 120px;
  background: #fff; }
  .articles-editorial .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px; }
    @media (max-width: 768px) {
      .articles-editorial .container {
        padding: 0 25px; } }

.editorial-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; }
  @media (max-width: 992px) {
    .editorial-layout {
      grid-template-columns: 1fr;
      gap: 60px; } }

.featured-article .featured-link {
  display: block;
  text-decoration: none;
  color: inherit; }
.featured-article .featured-image {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
  margin-bottom: 30px; }
  .featured-article .featured-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease; }
  .featured-article .featured-image .placeholder-image {
    position: absolute;
    inset: 0;
    background: #f0f0f0; }
.featured-article:hover .featured-image img {
  transform: scale(1.03); }
.featured-article .featured-content {
  padding-right: 20px; }
.featured-article .featured-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 15px;
  font-weight: 500; }
.featured-article .featured-title {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: #333;
  line-height: 1.5;
  margin-bottom: 15px;
  transition: color 0.3s ease; }
.featured-article:hover .featured-title {
  color: #2d5a3d; }
.featured-article .featured-excerpt {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8; }

.articles-list {
  border-top: 1px solid #eee; }
  .articles-list .no-more-articles {
    padding: 40px 0;
    color: #888;
    font-size: 0.9rem; }

.article-row {
  border-bottom: 1px solid #eee; }
  .article-row .article-row-link {
    display: flex;
    gap: 30px;
    padding: 35px 0;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s ease; }
    @media (max-width: 600px) {
      .article-row .article-row-link {
        flex-direction: column;
        gap: 15px; } }
  .article-row:hover .article-row-title {
    color: #2d5a3d; }
  .article-row:hover .article-date-block .date-main {
    color: #2d5a3d; }

.article-date-block {
  flex-shrink: 0;
  min-width: 100px; }
  .article-date-block .date-year {
    display: block;
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 0.1em;
    margin-bottom: 2px; }
  .article-date-block .date-main {
    display: flex;
    align-items: baseline;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 300;
    transition: color 0.3s ease; }
  .article-date-block .date-month,
  .article-date-block .date-day {
    font-size: 1.8rem;
    color: #333;
    line-height: 1; }
  .article-date-block .date-slash {
    font-size: 1.5rem;
    color: #ccc;
    margin: 0 2px; }
  .article-date-block .date-dow {
    font-size: 0.75rem;
    color: #999;
    margin-left: 6px;
    text-transform: lowercase; }

.article-row-content {
  flex: 1; }
  .article-row-content .article-row-category {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2d5a3d;
    margin-bottom: 8px;
    font-weight: 600; }
  .article-row-content .article-row-title {
    font-family: 'Noto Serif TC', serif;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    margin-bottom: 8px;
    transition: color 0.3s ease; }
  .article-row-content .article-row-excerpt {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }

.articles-grid-section {
  padding: 60px 0 100px;
  background: #fff; }
  .articles-grid-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; }
  @media (max-width: 992px) {
    .articles-grid {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) {
    .articles-grid {
      grid-template-columns: 1fr; } }

.article-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12); }
  .article-card .article-link {
    display: block;
    text-decoration: none;
    color: inherit; }
  .article-card .article-image {
    position: relative;
    padding-top: 66%;
    overflow: hidden; }
    .article-card .article-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease; }
    .article-card .article-image .placeholder-image {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #f0f0f0, #e0e0e0); }
  .article-card:hover .article-image img {
    transform: scale(1.05); }
  .article-card .article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: #2d5a3d;
    color: #fff;
    font-size: 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.05em; }
  .article-card .article-content {
    padding: 25px; }
  .article-card .article-title {
    font-family: 'Noto Serif TC', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .article-card .article-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px; }
  .article-card .article-meta {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #999; }
  .article-card .article-date {
    display: flex;
    align-items: center;
    gap: 6px; }

.no-articles {
  text-align: center;
  padding: 80px 20px;
  color: #666; }
  .no-articles p {
    font-size: 1.1rem; }

.article-detail-page {
  padding-top: 60px;
  background: #fff; }

.article-container {
  max-width: 1200px;
  margin: 0 auto; }

.article-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 40vh;
  min-height: 320px;
  max-height: 500px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #2d5a3d 0%, #14271a 100%);
  overflow: hidden; }
  .article-hero.has-cover .hero-content {
    position: relative;
    z-index: 2; }
  .article-hero .hero-cover {
    position: absolute;
    inset: 0; }
    .article-hero .hero-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
    .article-hero .hero-cover .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.1) 100%); }
  .article-hero .hero-content {
    width: 100%;
    padding: 40px 0; }
  .article-hero .hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px; }
    @media (max-width: 768px) {
      .article-hero .hero-inner {
        padding: 0 24px; } }
  .article-hero .article-category-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    border-radius: 2px;
    text-decoration: none;
    margin-bottom: 16px;
    transition: all 0.3s ease; }
    .article-hero .article-category-tag:hover {
      background: rgba(255, 255, 255, 0.25);
      border-color: rgba(255, 255, 255, 0.5); }
  .article-hero .article-title {
    font-family: 'Noto Serif TC', serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3); }
  .article-hero .article-meta {
    display: flex;
    align-items: center;
    gap: 16px; }
  .article-hero .article-date-styled {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    letter-spacing: 0.05em; }
    .article-hero .article-date-styled .date-text {
      font-weight: 300; }

.article-hero:not(.has-cover) {
  background: linear-gradient(135deg, #2d5a3d 0%, #193121 100%); }
  .article-hero:not(.has-cover) .article-category-tag {
    background: rgba(255, 255, 255, 0.2); }

.article-body-wrapper {
  padding-bottom: 80px;
  padding-top: 6vh; }
  .article-body-wrapper .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px; }

.article-layout {
  display: flex;
  gap: 60px; }
  @media (max-width: 900px) {
    .article-layout {
      flex-direction: column;
      gap: 40px; } }
  .article-layout.no-toc {
    justify-content: center; }
    .article-layout.no-toc .article-content {
      max-width: 800px; }

.article-toc {
  flex-shrink: 0;
  width: 220px; }
  @media (max-width: 900px) {
    .article-toc {
      width: 100%;
      order: -1; } }
  .article-toc .toc-sticky {
    position: sticky;
    top: 100px; }
    @media (max-width: 900px) {
      .article-toc .toc-sticky {
        position: static; } }
  .article-toc .toc-title {
    font-family: 'Noto Serif TC', serif;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2d5a3d; }
  .article-toc .toc-nav {
    display: flex;
    flex-direction: column; }
  .article-toc .toc-link {
    display: block;
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 8px 0;
    padding-left: 12px;
    border-left: 2px solid transparent;
    transition: all 0.3s ease; }
    .article-toc .toc-link:hover, .article-toc .toc-link.active {
      color: #2d5a3d;
      border-left-color: #2d5a3d; }
    .article-toc .toc-link.toc-h3 {
      padding-left: 24px;
      font-size: 0.8rem; }
    .article-toc .toc-link.toc-h4 {
      padding-left: 36px;
      font-size: 0.75rem; }

.article-content {
  flex: 1;
  min-width: 0;
  max-width: 800px; }

.content-block {
  margin-bottom: 30px; }

.richtext-block {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333; }
  .richtext-block p {
    margin-bottom: 1.5em; }
  .richtext-block h2, .richtext-block h3, .richtext-block h4 {
    font-family: 'Noto Serif TC', serif;
    margin-top: 2em;
    margin-bottom: 0.8em; }
  .richtext-block ul, .richtext-block ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em; }
  .richtext-block blockquote {
    border-left: 4px solid #2d5a3d;
    padding-left: 20px;
    margin: 2em 0;
    font-style: italic;
    color: #666; }

.content-heading {
  font-family: 'Noto Serif TC', serif;
  color: #333;
  margin-top: 40px;
  margin-bottom: 20px;
  scroll-margin-top: 100px; }
  .content-heading:first-child {
    margin-top: 0; }

h2.content-heading {
  font-size: 1.8rem;
  font-weight: 500;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee; }

h3.content-heading {
  font-size: 1.4rem;
  font-weight: 500; }

h4.content-heading {
  font-size: 1.2rem;
  font-weight: 500; }

.image-block {
  margin: 30px 0; }
  .image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px; }
  .image-block figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 12px; }

.multi-image-block {
  margin: 30px 0; }
  .multi-image-block .image-grid {
    display: grid;
    gap: 15px; }
    .multi-image-block .image-grid.cols-2 {
      grid-template-columns: repeat(2, 1fr); }
    .multi-image-block .image-grid.cols-3 {
      grid-template-columns: repeat(3, 1fr); }
    @media (max-width: 600px) {
      .multi-image-block .image-grid {
        grid-template-columns: 1fr !important; } }
  .multi-image-block figure {
    margin: 0; }
  .multi-image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px; }
  .multi-image-block figcaption {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 8px; }

.quote-block {
  background: #f8f7f5;
  padding: 40px;
  margin: 40px 0;
  border-radius: 12px;
  text-align: center;
  border: none; }
  .quote-block .quote-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px; }
    .quote-block .quote-decoration.quote-bottom {
      margin-top: 20px;
      margin-bottom: 0; }
    .quote-block .quote-decoration .quote-line {
      flex: 1;
      max-width: 60px;
      height: 1px;
      background: #ddd; }
    .quote-block .quote-decoration .quote-mark {
      font-family: 'Noto Serif TC', serif;
      font-size: 2rem;
      color: #a89166;
      line-height: 1; }
  .quote-block .quote-text {
    font-family: 'Noto Serif TC', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin: 0; }
  .quote-block .quote-author {
    display: block;
    font-size: 0.9rem;
    color: #888;
    font-style: normal;
    margin-top: 15px; }

.article-share {
  padding: 50px 0;
  border-top: 1px solid #eee; }
  .article-share .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px; }
  .article-share .share-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px; }
    @media (max-width: 480px) {
      .article-share .share-wrapper {
        flex-direction: column;
        gap: 16px; } }
  .article-share .share-label {
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 0.1em;
    text-transform: uppercase; }
  .article-share .share-buttons {
    display: flex;
    gap: 12px; }
  .article-share .share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer; }
    .article-share .share-btn svg {
      width: 18px;
      height: 18px; }
    .article-share .share-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
    .article-share .share-btn.share-facebook:hover {
      background: #1877F2;
      color: #fff; }
    .article-share .share-btn.share-twitter:hover {
      background: #000;
      color: #fff; }
    .article-share .share-btn.share-line:hover {
      background: #06C755;
      color: #fff; }
    .article-share .share-btn.share-copy:hover {
      background: #2d5a3d;
      color: #fff; }
    .article-share .share-btn.share-copy.copied {
      background: #2d5a3d;
      color: #fff; }

.related-articles {
  padding: 80px 0;
  background: #f9f9f8; }
  .related-articles .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px; }
  .related-articles .related-title {
    font-family: 'Noto Serif TC', serif;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 50px;
    color: #333; }
    .related-articles .related-title::after {
      content: '';
      display: block;
      width: 40px;
      height: 2px;
      background: #a89166;
      margin: 16px auto 0; }
  .related-articles .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; }
    @media (max-width: 900px) {
      .related-articles .related-grid {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) {
      .related-articles .related-grid {
        grid-template-columns: 1fr;
        gap: 24px; } }
  .related-articles .related-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease; }
    .related-articles .related-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); }
      .related-articles .related-card:hover .related-image img {
        transform: scale(1.05); }
  .related-articles .related-image {
    position: relative;
    padding-top: 65%;
    overflow: hidden; }
    .related-articles .related-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease; }
    .related-articles .related-image .related-placeholder {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%); }
  .related-articles .related-content {
    padding: 20px; }
  .related-articles .related-category {
    display: inline-block;
    font-size: 0.7rem;
    color: #2d5a3d;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px; }
  .related-articles .related-card-title {
    font-family: 'Noto Serif TC', serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #333;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }

.article-footer {
  padding: 40px 0 80px;
  border-top: 1px solid #eee; }
  .article-footer .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px; }
  .article-footer .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2d5a3d;
    text-decoration: none;
    font-size: 0.95rem;
    transition: gap 0.3s ease; }
    .article-footer .back-link:hover {
      gap: 12px; }

.contact-page {
  padding-top: 60px;
  background: #f8f7f5; }

.contact-hero {
  background: linear-gradient(135deg, #2d5a3d 0%, #193121 100%);
  padding: 70px 0 50px;
  color: #fff;
  text-align: center; }
  .contact-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; }
  .contact-hero .hero-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    opacity: 0.7;
    margin-bottom: 12px; }
  .contact-hero h1 {
    font-family: 'Noto Serif TC', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.15em; }
  .contact-hero .hero-subtitle {
    font-size: 0.95rem;
    opacity: 0.8;
    letter-spacing: 0.05em; }

.form-steps-bar {
  background: #fff;
  border-bottom: 1px solid #eee; }
  .form-steps-bar .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px; }
  .form-steps-bar .steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0;
    gap: 20px; }
    @media (max-width: 600px) {
      .form-steps-bar .steps-wrapper {
        gap: 10px; } }
  .form-steps-bar .step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bbb;
    transition: all 0.3s ease; }
    @media (max-width: 600px) {
      .form-steps-bar .step-item {
        flex-direction: column;
        gap: 4px; } }
    .form-steps-bar .step-item .step-number {
      font-family: 'Noto Serif TC', serif;
      font-size: 1.1rem;
      font-weight: 600; }
      @media (max-width: 600px) {
        .form-steps-bar .step-item .step-number {
          font-size: 0.9rem; } }
    .form-steps-bar .step-item .step-text {
      font-size: 0.9rem;
      letter-spacing: 0.02em; }
      @media (max-width: 600px) {
        .form-steps-bar .step-item .step-text {
          font-size: 0.75rem; } }
    .form-steps-bar .step-item.active {
      color: #2d5a3d; }
      .form-steps-bar .step-item.active .step-number {
        color: #2d5a3d; }
    .form-steps-bar .step-item.completed {
      color: #a89166; }
  .form-steps-bar .step-divider {
    width: 40px;
    height: 1px;
    background: #ddd; }
    @media (max-width: 600px) {
      .form-steps-bar .step-divider {
        width: 20px; } }

.contact-form-section {
  padding: 50px 0 100px; }
  .contact-form-section .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px; }

.form-error-message {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #dc2626;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  font-size: 0.95rem; }

.form-card {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
  overflow: hidden; }
  .form-card.conditional-card {
    animation: fadeIn 0.3s ease; }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 28px;
  background: linear-gradient(135deg, #2d5a3d 0%, #1f3f2b 100%); }
  .card-header .card-number {
    font-family: 'Noto Serif TC', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4); }
  .card-header h3 {
    color: #fff;
    font-family: 'Noto Serif TC', serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.08em; }

.card-body {
  padding: 28px; }

.section-hint {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 20px; }

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px; }
  @media (max-width: 600px) {
    .form-row {
      grid-template-columns: 1fr; } }
  .form-row:last-child {
    margin-bottom: 0; }

.form-group {
  margin-bottom: 22px; }
  .form-group:last-child {
    margin-bottom: 0; }

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px; }
  .form-label .required {
    color: #e53935;
    margin-left: 2px; }

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fafafa;
  transition: all 0.3s ease; }
  .form-input:focus,
  .form-textarea:focus {
    outline: none;
    border-color: #2d5a3d;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(45, 90, 61, 0.08); }
  .form-input::placeholder,
  .form-textarea::placeholder {
    color: #aaa; }

.form-textarea {
  min-height: 100px;
  resize: vertical; }

.radio-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; }
  .radio-pills.compact {
    gap: 8px; }

.pill-item {
  position: relative; }
  .pill-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0; }
  .pill-item > span {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 0.88rem;
    color: #666;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fff; }
  .pill-item input:checked + span {
    background: #2d5a3d;
    border-color: #2d5a3d;
    color: #fff; }
  .pill-item:hover > span {
    border-color: #2d5a3d; }
  .pill-item.has-input {
    display: flex;
    align-items: center;
    gap: 8px; }
    .pill-item.has-input .pill-input {
      width: 100px;
      padding: 8px 12px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 0.85rem;
      opacity: 0.5;
      transition: all 0.3s ease; }
      .pill-item.has-input .pill-input:focus {
        opacity: 1;
        border-color: #2d5a3d;
        outline: none; }
    .pill-item.has-input input[type="radio"]:checked ~ .pill-input {
      opacity: 1; }

.toggle-group {
  display: flex;
  gap: 0;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  width: fit-content; }

.toggle-item {
  position: relative; }
  .toggle-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0; }
  .toggle-item span {
    display: block;
    padding: 12px 28px;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fff; }
  .toggle-item input:checked + span {
    background: #2d5a3d;
    color: #fff; }
  .toggle-item:not(:last-child) span {
    border-right: 1px solid #ddd; }

.type-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px; }
  @media (max-width: 700px) {
    .type-cards {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 450px) {
    .type-cards {
      grid-template-columns: 1fr; } }

.type-card {
  position: relative;
  cursor: pointer; }
  .type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0; }
  .type-card .type-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #fafafa;
    transition: all 0.3s ease;
    text-align: center; }
  .type-card .type-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px; }
  .type-card .type-desc {
    font-size: 0.75rem;
    color: #999; }
  .type-card input:checked + .type-content {
    border-color: #2d5a3d;
    background: rgba(45, 90, 61, 0.05);
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1); }
    .type-card input:checked + .type-content .type-title {
      color: #2d5a3d; }
  .type-card:hover .type-content {
    border-color: #2d5a3d; }

.family-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden; }

.family-row {
  display: flex;
  align-items: center;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid #eee; }
  .family-row:last-child {
    border-bottom: none; }
  .family-row:nth-child(even) {
    background: #fafafa; }

.family-label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 130px;
  padding: 16px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  background: #f5f5f5;
  border-right: 1px solid #eee; }
  @media (max-width: 500px) {
    .family-label {
      width: 100px;
      padding: 12px 15px;
      font-size: 0.82rem; } }
  .family-label .label-icon {
    width: 26px; }

.family-options {
  display: flex;
  flex: 1;
  justify-content: space-around;
  padding: 12px 10px; }

.count-option {
  position: relative;
  cursor: pointer; }
  .count-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0; }
  .count-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    font-size: 0.9rem;
    color: #666;
    background: #fff;
    transition: all 0.25s ease; }
    @media (max-width: 500px) {
      .count-option span {
        width: 34px;
        height: 34px;
        font-size: 0.8rem; } }
  .count-option input:checked + span {
    background: #2d5a3d;
    border-color: #2d5a3d;
    color: #fff; }
  .count-option:hover span {
    border-color: #2d5a3d; }

.style-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; }

.style-chip {
  position: relative; }
  .style-chip input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0; }
  .style-chip > span {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 0.88rem;
    color: #666;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fff; }
  .style-chip input:checked + span {
    background: #2d5a3d;
    border-color: #2d5a3d;
    color: #fff; }
  .style-chip:hover > span {
    border-color: #2d5a3d; }
  .style-chip.has-input {
    display: flex;
    align-items: center;
    gap: 8px; }
    .style-chip.has-input .chip-input {
      width: 100px;
      padding: 8px 12px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 0.85rem;
      opacity: 0.5;
      transition: all 0.3s ease; }
      .style-chip.has-input .chip-input:focus {
        opacity: 1;
        border-color: #2d5a3d;
        outline: none; }
    .style-chip.has-input input[type="checkbox"]:checked ~ .chip-input {
      opacity: 1; }

.form-submit-section {
  text-align: center;
  padding: 20px 0 0; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 50px;
  background: linear-gradient(135deg, #2d5a3d 0%, #1f3f2b 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(45, 90, 61, 0.25); }
  .btn-submit svg {
    transition: transform 0.3s ease; }
  .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 90, 61, 0.35); }
    .btn-submit:hover svg {
      transform: translateX(4px); }

.contact-success {
  padding: 80px 0 120px; }
  .contact-success .container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px; }
  .contact-success .success-card {
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06); }
  .contact-success .success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d5a3d 0%, #1c3826 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px; }
  .contact-success h2 {
    font-family: 'Noto Serif TC', serif;
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 12px;
    letter-spacing: 0.05em; }
  .contact-success p {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 35px;
    line-height: 1.7; }
  .contact-success .btn-back {
    display: inline-block;
    padding: 14px 40px;
    background: #2d5a3d;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease; }
    .contact-success .btn-back:hover {
      background: #1f3f2b;
      transform: translateY(-2px); }

.site-footer {
  background: #f8f7f5;
  padding: 80px 0 0;
  position: relative;
  z-index: 10; }
  @media only screen and (max-width: 768px) {
    .site-footer {
      padding: 60px 0 0; } }

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
  @media only screen and (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 0 25px 40px;
      gap: 40px; } }

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 30px; }
  .footer-left .footer-logo img {
    height: 60px;
    width: auto; }
  .footer-left .footer-info p {
    font-size: 13px;
    color: #666;
    line-height: 2;
    letter-spacing: 0.5px; }
    .footer-left .footer-info p a {
      color: #666;
      text-decoration: none;
      transition: color 0.3s ease; }
      .footer-left .footer-info p a:hover {
        color: #2d5a3d; }

.footer-right .footer-social {
  display: flex;
  gap: 40px; }
  @media only screen and (max-width: 768px) {
    .footer-right .footer-social {
      gap: 30px; } }
  .footer-right .footer-social .social-link {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease; }
    .footer-right .footer-social .social-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: #2d5a3d;
      transition: width 0.3s ease; }
    .footer-right .footer-social .social-link:hover {
      color: #2d5a3d; }
      .footer-right .footer-social .social-link:hover::after {
        width: 100%; }

.footer-bottom {
  padding: 25px 60px;
  text-align: center; }
  @media only screen and (max-width: 768px) {
    .footer-bottom {
      padding: 20px 25px; } }
  .footer-bottom p {
    font-size: 11px;
    color: #999;
    letter-spacing: 1px; }

/*# sourceMappingURL=style.css.map */
