﻿@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: 'Noto Sans TC', sans-serif;
  background: #F7F6F3;
  overflow-x: hidden;
  max-width: 100%;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ===== Go Top 按鈕 ===== */
#goTop {
  color: #999;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  animation: float 3s ease-in-out infinite;
  display: none;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
#goTop img {
  width: 40px;
  height: auto;
  display: block;
}
/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
/* ===== 各區塊 container 寬度定義 ===== */
.hero .container {
  max-width: 100%;
  padding: 0 40px;
}
.mission .container {
  max-width: 100%;
  padding: 0 40px;
}
.style .container, .style .style-header-wrap, .style .style-grid-wrap {
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}
.style-caption {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.style-caption-text h1 {
  color: #ED5845;
  font-family: "Noto Sans TC";
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}
.style-caption-text p {
  color: #212121;
  font-family: "Noto Sans TC";
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.5px;
}
.discover .container {
  max-width: 80vw;
  padding: 0 40px;
}
.cooperate .container {
  max-width: 80vw;
  padding: 0 100px;
}
.footer .container {
  max-width: 80vw;
  padding: 0 40px;
}
/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10), 0 1px 4px rgba(0, 0, 0, 0.06);
  height: 117px;
  display: flex;
  align-items: center;
  width: calc(100% - 40px);
  max-width: 1848px;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  max-width: 1848px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img-placeholder {
  height: 52px;
  display: flex;
  align-items: center;
}
.logo-img-placeholder img {
  width: auto;
  height: 52px;
  object-fit: contain;
  display: block;
}
.navbar-links {
  display: flex;
  gap: 40px;
  list-style: none;
  flex: 1;
  justify-content: flex-end;
  padding-right: 70px;
}
.navbar-links a {
  text-decoration: none;
  font-size: 20px;
  color: #212121;
  letter-spacing: 0.2px;
  font-weight: 500;
  font-family: "Noto Sans TC", sans-serif;
  white-space: nowrap;
}
.navbar-links a:hover {
  color: #ED5845;
}
.navbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar-cta {
  background-color: #ED5845;
  color: #fff;
  border: none;
  padding: 10px 18px;
  letter-spacing: 0.2px;
  font-size: 20px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  font-family: "Noto Sans TC", sans-serif;
  white-space: nowrap;
}
.navbar-cta:hover {
  background-color: #C42A1F;
}
.navbar-cta svg {
  flex-shrink: 0;
}
.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.navbar-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1A1A1A;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.navbar-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* ===== SIDE DRAWER MENU ===== */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 298;
}
.menu-overlay.open {
  display: block;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: white;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 299;
  padding: 24px 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  margin-bottom: 8px;
}
.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  color: #666;
  font-size: 22px;
  line-height: 1;
}
.mobile-menu-close:hover {
  color: #ED5845;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0 8px;
}
.mobile-menu ul li a {
  display: block;
  font-size: 20px;
  color: #212121;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 8px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu ul li a:hover {
  background: #F4F4F4;
}
.mobile-menu-footer {
  padding: 16px 24px 0;
  margin-top: 8px;
  border-top: 1px solid #F0F0F0;
}
.mobile-menu-footer .btn-primary {
  width: 100%;
  justify-content: center;
}
/* ===== HERO ===== */
.hero {
  background: #F7F6F3;
}
.hero .container {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 1.3fr);
  align-items: center;
  width: 95%;
  height: 100vh;
}
.hero-text-wrap {
  display: flex;
  justify-content: center;
}
.hero-text {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
.hero-image-area {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  width: 100%;
  aspect-ratio: 973 / 1031;
  max-height: 100vh;
  align-self: flex-start;
}
.hero-text-illus {
  max-width: 284px;
  height: auto;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.hero-text-illus img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.hero-text h1 {
  color: #ED5845;
  font-family: "Noto Sans TC";
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.5px;
}
.hero-subtitle {
  color: #ED5845;
  font-family: "Noto Sans TC";
  font-size: 24px;
  line-height: 2;
  letter-spacing: 0.5px;
}
.hero-image-area .hero-img-main {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-img-main img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ===== MISSION ===== */
.mission {
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 104vh;
  top: -7.5rem;
}
.mission-inner {
  position: relative;
  z-index: 10;
  padding: 4rem 0 12rem;
}
.mission h2 {
  font-family: 'Golos Text', sans-serif;
  font-size: clamp(42px, 5vw, 90px);
  font-weight: 700;
  color: #212121;
  line-height: 1.1;
}
.mission-zh {
  font-size: clamp(24px, 3vw, 40px);
  color: #212121;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 700;
}
.mission-stage {
  position: relative;
  height: 588px;
  width: 100%;
  overflow: visible;
}
.mission-illus-wrap {
  position: absolute;
  inset: 0;
  background: #D3D7ED;
  z-index: 1;
  overflow: hidden;
}
.mission-elf-outer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1105px, 90vw);
  height: 1014px;
  z-index: 2;
  pointer-events: none;
}
.mission-elf-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}
.mission-illus-objects {
  position: absolute;
  inset: 0;
  width: 80%;
  margin: 0 auto;
  z-index: 3;
  pointer-events: none;
}
.mission-elf-rocket {
  position: absolute;
  left: 3%;
  top: -36%;
  width: 16%;
  max-width: 237px;
}
.mission-elf-small {
  position: absolute;
  right: 20%;
  bottom: -16%;
  width: 10%;
}
.mission-star-left {
  position: absolute;
  left: 11%;
  top: 52%;
  width: 63px;
}
.mission-star-right {
  position: absolute;
  right: 10%;
  top: 38%;
  width: 89px;
}
.mission-desc {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 2.2;
  color: #fff;
  font-family: "Noto Sans TC", sans-serif;
  text-align: center;
  white-space: nowrap;
}
.mission-spacer {
  height: 426px;
  background: #F7F6F3;
}
/* ===== STYLE PROPOSALS ===== */
.style {
  padding-bottom: 10%;
}
.style-header-wrap {
  max-width: 80vw;
  margin: 0 auto;
  padding: 0 40px;
  margin-bottom: 48px;
}
.style-grid-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}
.style-section-title {
  color: #ED5845;
  font-family: "Golos Text";
  font-size: clamp(42px, 5vw, 90px);
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
.style-section-title .en {
  font-family: "Golos Text", sans-serif;
  font-size: clamp(42px, 5vw, 90px);
  font-weight: 900;
  color: #ED5845;
}
.style-section-title .zh-inline {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: #ED5845;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.section-header {
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  color: #212121;
}
.style-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.style-item-large {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  min-height: 480px;
  position: relative;
}
.style-item-large.text-left {
  flex-direction: row-reverse;
}
.style-img {
  width: 50%;
  flex-shrink: 0;
  flex-grow: 0;
  overflow: hidden;
  display: block;
  position: relative;
  min-height: 420px;
}
.style-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.style-content {
  width: 50%;
  flex-shrink: 0;
  flex-grow: 0;
  background: #FFFFFF;
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.style-content h3 {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 700;
  margin-bottom: 16px;
  color: #212121;
  line-height: 1.4;
  text-align: center;
}
.style-content p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 2;
  color: #212121;
  font-weight: 500;
  text-align: center;
}
.style-plate03 {
  position: absolute;
  bottom: 6%;
  right: 4%;
  width: 184px;
  height: 114px;
  margin: 0;
}
.style-plate03 img {
  object-fit: contain;
}
/* ===== DISCOVER ORIGINAL ===== */
.discover {
  padding: 120px 0 20px;
  overflow: visible;
  position: relative;
}
.discover h1 {
  color: #ED5845;
  font-family: "Noto Sans TC";
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.discover p {
  color: #212121;
  font-family: "Noto Sans TC";
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.5px;
}
.discover_grey {
  background: #EEEEF0;
  padding-bottom: 50px;
}
.discover-section-title .en {
  color: #ED5845;
  font-family: "Golos Text";
  font-size: clamp(42px, 5vw, 90px);
  font-weight: 900;
  text-transform: uppercase;
  display: block;
}
.discover-section-title .zh-sub {
  color: #ED5845;
  font-family: "Noto Sans TC";
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.5px;
  margin-bottom: 60px;
  display: block;
}
.discover .section-header h2 {
  color: #212121;
}
.discover .section-header .zh {
  color: #888;
}
.discover-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 32px 56px;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  padding-top: 60px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.discover-item {
  display: contents;
}
.discover-img-item {
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 50%;
  min-width: 0;
  overflow: hidden;
}
.discover-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
  max-width: 100%;
  overflow: hidden;
}
.discover-card-label {
  color: #D9D9D9;
  font-family: "Golos Text";
  font-size: clamp(64px, 5vw, 96px);
  font-weight: 700;
  line-height: normal;
  margin-bottom: 74px;
}
.discover-card h3 {
  color: #212121;
  font-family: "Noto Sans TC";
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}
.discover-card p {
  color: #212121;
  font-family: "Noto Sans TC";
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.5px;
  word-break: break-word;
  overflow-wrap: break-word;
  min-width: 0;
  max-width: 100%;
}
.discover-header-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  padding-top: 20px;
}
.discover-header-wrap .section-header {
  margin-bottom: 0;
  flex: 1;
}
.discover-header-illus {
  position: absolute;
  display: flex;
  justify-content: center;
  top: 0;
  right: 10rem;
  width: 335px;
  pointer-events: none;
  z-index: 5;
}
.discover-header-illus-placeholder {
  width: 335px;
}
.discover-header-illus-placeholder img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.discover-section-title {
  padding-right: 380px;
}
.mobile-br {
  display: none;
}
.mobile-br2 {
  display: none;
}
/* ===== HOW TO COOPERATE ===== */
.cooperate {
  padding: 100px 0;
}
.cooperate-hero {
  text-align: center;
  margin-bottom: 80px;
}
.cooperate-blob {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.cooperate-blob img {
  width: 770px;
  height: 599px;
  margin: 0 auto 24px;
  object-fit: contain;
}
.cooperate-hero h2 {
  color: #212121;
  font-family: "Golos Text";
  font-size: 90px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin-top: -5.2rem;
  position: relative;
  z-index: 1
}
.cooperate-hero .zh {
  color: #212121;
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.5px;
  margin-bottom: 42px;
}
.cooperate-hero p {
  color: #212121;
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.5px;
}
.coop-section-label {
  color: #ED5845;
  font-family: "Noto Sans TC";
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.5px;
  margin-bottom: 48px;
  text-align: left;
}
.coop-models {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}
.coop-model-card {
  border-radius: 24px;
  background: #ED5845;
  color: #fff;
  padding: 84px 50px;
  cursor: pointer;
  transition: background 0.2s;
}
.coop-model-card:hover {
  background: #C42A1F;
}
.coop-model-card h4 {
  color: #FFF;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.coop-model-card p {
  color: #FFF;
  font-family: "Noto Sans TC", sans-serif;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.5px;
}
/* ===== PROCESS LAYOUT ===== */
.process-layout {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(200px, 0.8fr) minmax(200px, 1fr);
  gap: 0;
  align-items: start;
}
.process-illus {
  position: sticky;
  top: 120px;
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.process-illus-placeholder {
  position: relative;
  display: block;
  width: 336px;
  height: 413px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-illus-placeholder:hover {
  transform: translateY(-8px);
}
.process-illus-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.img-default {
  opacity: 1;
}
.img-hover {
  opacity: 0;
}
.process-illus-placeholder:hover .img-hover {
  opacity: 1;
}
.process-illus-placeholder:hover .img-default {
  opacity: 0;
}
/* ===== PROCESS SVG STEPS ===== */
.process-svg-wrap {
  width: 100%;
  padding: 20px 0 40px;
}
.process-svg-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
/* ===== QUOTE-BLOCK ===== */
.quote-block {
  padding: 32px 24px;
  margin: 0 auto 5rem;
  text-align: center;
  max-width: 720px;
  width: 100%;
  border-radius: 8px;
  position: relative;
}
.quote-block p {
  color: #212121;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.5px;
  margin: 0;
}
.quote-block::before {
  content: "\201C";
  font-size: 48px;
  color: #787575;
  position: absolute;
  top: 36px;
  left: 78px;
  line-height: 1;
}
.quote-block::after {
  content: "\201D";
  font-size: 48px;
  color: #787575;
  position: absolute;
  bottom: 12px;
  right: 35px;
  line-height: 1;
}
/* ===== FOOTER CTA ===== */
.footer-cta {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.footer-cta-bg {
  position: absolute;
  inset: 0;
}
.footer-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.footer-cta-card {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  padding: 70px 43px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 722px;
  max-height: 290px;
}
.footer-cta-eyes {
  position: absolute;
  top: -28px;
  right: -20px;
  width: 120px;
  pointer-events: none;
}
.footer-cta-eyes img {
  width: 100%;
  height: auto;
  display: block;
}
.footer-cta-card-text {
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  top: -2rem;
}
.footer-cta-card-text h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  color: #1A1A1A;
  line-height: 1.3;
  letter-spacing: 0.5px;
  font-family: "Noto Sans TC", sans-serif;
}
.footer-cta-card-text p {
  color: #212121;
  font-family: "Noto Sans TC", sans-serif;
  font-size: clamp(16px, 0.8vw, 18px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.3px;
}
.btn-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ED5845;
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 13px 28px;
  cursor: pointer;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: background 0.2s;
}
.btn-cta:hover {
  background: #C42A1F;
}
/* ===== btn-primary ===== */
.btn-primary {
  border-radius: 9px;
  background: #ED5845;
  color: white;
  border: none;
  padding: 13px 28px;
  cursor: pointer;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-primary:hover {
  background: #C42A1F;
}
/* ===== FOOTER ===== */
.footer {
  background: url("../images/ft_bg.png");
  padding: 8rem 0;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 53px;
}
.footer-logo-img {
  display: flex;
  align-items: center;
  width: 252px;
}
.footer-logo-img img {
  object-fit: contain;
}
.footer-copy {
  color: #2C2C2C;
  font-family: "Noto Sans TC";
  font-size: 18px;
  font-weight: 400;
  line-height: 19.2px;
  letter-spacing: 0.5px;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 53px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.footer-contact a, .footer-contact p {
  color: #212121;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}.social-icon {
  display: inline-block;
  width: 33px;
  height: 33px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(0);
  transition: transform 0.4s ease-out, opacity 0.2s;
}
.social-icon:hover {
  transform: translateY(-1px);
  opacity: 0.8;
}

.social-ig {
  background-image: url('../images/Social-ig.png');
}
.social-ig:hover {
  background-image: url('../images/Social-ig_h.png');
}

.social-fb {
  background-image: url('../images/Social-fb.png');
}
.social-fb:hover {
  background-image: url('../images/Social-fb_h.png');
}

.social-line {
  display: inline-block;
  width: 106px;
  height: 33px;
  background-image: url('../images/Social-line.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(0);
  transition: transform 0.4s ease-out, opacity 0.2s;
}
.social-line:hover {
  background-image: url('../images/Social-line_h.png');
  transform: translateY(-1px);
  opacity: 0.8;
}
/* ========================================================================================================================
   RWD
   ======================================================================================================================== */
@media (max-width: 1680px) {
  .hero-text-illus {
    max-width: 220px;
  }
  .hero-image-area {
    align-self: auto;
  }
}
@media (max-width: 1440px) {
  .discover-header-illus {
    right: 5rem;
    width: 240px;
  }
  .process-layout {
    width: 100%;
  }
}
@media (max-width: 1180px) {
  .navbar-links {
    padding-right: 0;
  }
  .discover-header-illus {
    right: 5rem;
  }
  .coop-model-card {
    padding: 84px 30px;
  }
}
@media (max-width: 1024px) {
  .navbar-links {
    display: none;
  }
  .navbar-hamburger {
    display: flex;
  }
}
/* ── 990px ── */
@media (max-width: 990px) {
  .mobile-br {
    display: inline;
  }
  /* NAVBAR */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    height: 60px;
    overflow: visible;
    padding-left: 20px;
  }
  .navbar .container {
    max-width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo-img-placeholder img {
    height: 36px;
  }
  .navbar-cta {
    font-size: 14px;
    padding: 8px 12px;
  }
  .navbar-links {
    display: none;
  }
  .navbar-hamburger {
    display: flex;
    background: #F4F4F4;
    height: 60px;
    width: 60px;
    align-items: center;
    justify-content: center;
  }
  /* CONTAINERS */
  .container {
    padding: 0;
  }
  .hero .container, .mission .container {
    max-width: 100%;
    padding: 0 20px;
  }
  /* ★ 修正：style-header-wrap & style-grid-wrap RWD 覆寫 */
  .style .style-header-wrap {
    max-width: 100%;
    width: 100%;
    padding: 20px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 24px;
  }
  .style .style-grid-wrap {
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
    margin-left: 0;
    margin-right: 0;
  }
  /* ★ 修正：style-caption 在手機版改為垂直排列，確保文字可見 */
  .style-caption {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
  .style-section-title {
    width: 100%;
  }
  .style-caption-text {
    width: 100%;
    display: block;
  }
  .style-caption-text h1 {
    font-size: 18px;
    margin-bottom: 16px;
    display: block;
  }
  .style-caption-text p {
    font-size: 15px;
  }
  .discover .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .cooperate .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .footer .container {
    max-width: 100%;
    padding: 0 20px;
  }
  /* HERO */
  .hero {
    padding: 1rem;
  }
  .hero .container {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: auto;
    align-items: stretch;
    width: 100%;
    padding: 0;
  }
  .hero-image-area {
    order: 1;
    align-self: auto;
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: none;
    aspect-ratio: 354 / 406;
    overflow: hidden;
  }
  .hero-text-wrap {
    order: 2;
    width: 100%;
    margin-top: -8rem;
    position: relative;
    z-index: 2;
    justify-content: flex-start;
  }
  .hero-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: static;
    top: auto;
  }
  .hero-text-illus {
    position: relative;
    top: 5rem;
    z-index: 3;
    width: 160px;
    height: auto;
    margin-bottom: 0;
    margin-left: 0;
    flex-shrink: 0;
    align-self: flex-end;
  }
  .hero-text-illus img {
    width: 100%;
    height: auto;
    transform: scaleX(-1);
  }
  .hero-text-des {
    width: 100%;
    padding-left: 5px;
  }
  .hero-subtitle {
    font-size: 14px;
  }
  /* MISSION */
  .mission {
    overflow: hidden;
    height: 60vh;
    top: 0;
  }
  .mission-illus-wrap {
    overflow: hidden;
  }
  .mission-inner {
    padding: 4rem 20px 8rem;
  }
  .mission-stage {
    height: 400px;
  }
  .mission-elf-outer {
    width: min(800px, 92vw);
    height: 700px;
  }
  .mission-desc {
    font-size: 16px;
    white-space: normal;
    width: 80%;
    bottom: 12%;
  }
  .mission-spacer {
    height: 300px;
  }
  .mission-star-left {
    width: 40px;
  }
  .mission-star-right {
    width: 60px;
  }
  /* STYLE */
  .style {
    padding-bottom: 5%;
  }
  .section-header h2 {
    font-size: 36px;
  }
  .style-section-title .en {
    font-size: 40px;
  }
  .style-section-title .en:last-child {
    display: block;
  }
  .style-section-title .zh-inline {
    font-size: 24px;
  }
  .style-item-large, .style-item-large.text-left {
    flex-direction: column;
    min-height: auto;
    border-radius: 16px;
  }
  .style-img {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4/3;
    position: relative;
    order: -1;
  }
  .style-content {
    width: 100%;
    min-height: 400px;
    padding: 32px 28px;
    order: 1;
  }
  .style-plate03 {
    bottom: 4%;
    right: 4%;
    width: 140px;
    height: auto;
  }
  /* DISCOVER */
  .discover-header-wrap {
    flex-direction: column;
    position: relative;
  }
  .discover-section-title {
    padding-right: 0;
    width: 100%;
  }
  .discover-header-illus {
    position: absolute;
    top: 0;
    right: 1rem;
    width: 180px;
    pointer-events: none;
    margin-top: 0;
  }
  .discover-header-illus-placeholder {
    width: 180px;
  }
  .discover-card-label {
    font-size: 48px;
    margin-bottom: 16px;
  }
  .discover-card h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .discover-card p {
    font-size: 14px;
  }
  .discover-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    padding: 40px 20px 20px;
    margin: 0;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .discover-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
  }
  .discover-img-item {
    order: -1;
    flex: none;
    width: 100%;
    min-width: 0;
    aspect-ratio: 4/3;
    border-radius: 20px 20px 0 0;
    margin-top: 0;
  }
  .discover-card {
    order: 0;
    flex: none;
    width: 100%;
    padding: 24px 20px 32px;
  }
  /* COOPERATE */
  .cooperate {
    padding: 60px 0;
  }
  .cooperate-hero {
    margin-bottom: 48px;
  }
  .cooperate-blob img {
    width: 100%;
    height: auto;
  }
  .cooperate-hero h2 {}
  .cooperate-hero .zh {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .cooperate-hero p {
    font-size: 15px;
  }
  .coop-section-label {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .coop-models {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }
  .coop-model-card {
    padding: 48px 32px;
  }
  /* PROCESS */
  .process-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .process-svg-wrap {
    order: 1;
    width: 80%;
    margin: 0 auto;
  }
  .process-illus {
    width: 100%;
    order: 2;
    position: static;
    margin-top: 32px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
  }
  .process-illus-placeholder {
    width: 280px;
    height: auto;
    aspect-ratio: 336 / 413;
  }
  /* FOOTER CTA */
  .footer-cta {
    position: static;
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }
  .footer-cta-bg {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
    height: auto;
  }
  .footer-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 18% 50%;
  }
  .footer-cta-card {
    position: static;
    width: 100%;
    max-width: 100%;
    max-height: none;
    transform: none;
    margin: 0;
    padding: 48px 28px;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
  }
  .footer-cta-card-text {
    top: 0;
  }
  .footer-cta-eyes {
    display: none;
  }
  /* FOOTER */
  .footer {
    background: none;
    padding: 4rem 0;
  }
  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }
  .footer-right {
    align-items: flex-start;
  }
  .footer-contact {
    text-align: left;
  }
}
/* ── 500px ── */
@media (max-width: 500px) {
  .mobile-br2 {
    /*    display: inline;*/
  }
  .navbar-cta {
    font-size: 16px;
  }
  /* HERO */
  .hero-text-wrap {
    margin-top: -7rem;
  }
  .hero-text-illus {
    width: 110px;
  }
  .hero-text h1 {
    font-size: 16px;
  }
  .hero-subtitle {
    font-size: 13px;
  }
  /* MISSION */
  .mission {
    height: 70vh;
  }
  .mission-stage {
    height: 268px;
  }
  .mission-elf-outer {
    width: 92vw;
    height: 359px;
  }
  .mission-desc {
    font-size: 11px;
    line-height: 1.8;
    bottom: 8%;
  }
  .mission-spacer {
    height: 91px;
  }
  .mission-elf-rocket {
    width: 22%;
    top: -38%;
  }
  .mission-star-left {
    width: 25px;
    left: 5%;
  }
  .mission-star-right {
    width: 35px;
    right: 5%;
  }
  .mission-elf-small {
    right: 0%;
    bottom: -9%;
    width: 17%;
  }
  /* STYLE */
  .style-content {
    min-height: 280px;
  }
  .style-plate03 {
    width: 90px;
    bottom: 3%;
  }
  /* DISCOVER */
  .discover {
    padding-top: 85px;
  }
  .discover-section-title {}
  .discover-header-illus {
    right: 0;
    width: 120px;
    top: 3rem;
  }
  .discover-header-illus-placeholder {
    width: 120px;
  }
  .discover-grid {
    padding: 32px 16px 16px;
    gap: 32px;
  }
  .discover-section-title .zh-sub {
    margin-bottom: 0;
  }
  /* COOPERATE */
  .cooperate-hero h2 {
    font-size: 28px;
    margin-top: -3rem;
  }
  .coop-model-card {
    padding: 36px 24px;
  }
  .section-header h2 {
    font-size: 28px;
  }
  /* PROCESS */
  .process-svg-wrap {
    width: 100%;
  }
  .process-illus-placeholder {
    width: 100%;
    max-width: 240px;
  }
  /* QUOTE */
  .quote-block {
    padding: 32px 40px;
  }
  .quote-block p {
    font-size: 14px;
  }
  .quote-block::before {
    top: 34px;
    left: 10px;
    font-size: 36px;
  }
  .quote-block::after {
    bottom: 12px;
    right: 0;
    font-size: 36px;
  }
  /* FOOTER CTA */
  .footer-cta-bg {
    aspect-ratio: 4 / 3;
  }
  .footer-cta-bg img {
    object-position: 24% 50%;
  }
  .footer-cta-card {
    padding: 32px 20px 36px;
  }
  /* FOOTER */
  .footer-left {
    align-items: center;
  }
  .footer-right {
    gap: 24px;
  }
  .footer-copy {
    font-size: 16px;
    line-height: 1.6;
  }
  .footer-contact a, .footer-contact p {
    font-size: 16px;
  }
}