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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: #0a0804;
  color: #c9a84c;
  font-family: "Noto Serif TC", serif;
  overflow-x: hidden;
  cursor: none;
}
body:hover #cursor-dot {
  opacity: 1;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes gridShift {
  0% {
    transform: translateY(0) translateX(0);
  }
  100% {
    transform: translateY(80px) translateX(80px);
  }
}
@keyframes orbSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.5)) drop-shadow(0 0 80px rgba(201, 168, 76, 0.2));
  }
  50% {
    transform: translateY(-14px) scale(1.02);
    filter: drop-shadow(0 0 60px rgba(201, 168, 76, 0.7)) drop-shadow(0 0 100px rgba(201, 168, 76, 0.35));
  }
}
@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes conicSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes floatPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes helmetPulse {
  0%, 100% {
    filter: drop-shadow(0 0 60px rgba(201, 168, 76, 0.4));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 100px rgba(201, 168, 76, 0.7)) drop-shadow(0 0 40px rgba(245, 228, 168, 0.3));
    transform: scale(1.04);
  }
}
@keyframes glowBreath {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
#cursor #cursor-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}
#cursor #cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease-out;
}

.btn-primary {
  padding: 14px 40px;
  background: linear-gradient(135deg, #c9a84c, #8b6914);
  color: #0a0804;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 600;
}
@media (max-width: 768px) {
  .btn-primary {
    letter-spacing: 2px;
  }
}
.btn-primary:hover {
  background: linear-gradient(135deg, #f5e4a8, #c9a84c);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.4);
}

.btn-ghost {
  padding: 13px 38px;
  background: transparent;
  color: #c9a84c;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 168, 76, 0.4);
  cursor: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.btn-ghost:hover {
  border-color: #c9a84c;
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

section {
  position: relative;
  z-index: 2;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 1024px) {
  .section-inner {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .section-inner {
    padding: 0 24px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 70px;
  }
}
@media (max-width: 576px) {
  .section-header {
    margin-bottom: 40px;
  }
}
.section-header .section-eyebrow {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: rgba(201, 168, 76, 0.45);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.section-header .section-title {
  font-family: "Noto Serif TC", serif;
  font-weight: 900;
  font-size: clamp(22px, 3.5vw, 52px);
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #f5e4a8, #c9a84c 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-link {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  z-index: 999;
  flex-direction: column;
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .cta-link {
    bottom: 1.5rem;
    right: 1rem;
  }
}
@media (max-width: 768px) {
  .cta-link {
    bottom: 1rem;
    right: 0.5rem;
  }
}
.cta-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 2rem;
  overflow: hidden;
}
.cta-link a.line {
  background: #39cd00;
}
.cta-link a.tel {
  background: #c9a84c;
}
.cta-link a.tel svg #background {
  fill: #c9a84c;
}
.cta-link a.tel svg #icon {
  fill: white;
  fill: #333;
}
.cta-link a .icon {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.cta-link a .icon svg {
  width: 60px;
}
.cta-link a .label {
  white-space: nowrap;
  overflow: hidden;
  color: white;
  opacity: 0;
  visibility: hidden;
  max-width: 0;
  margin-left: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, max-width 0.3s ease, margin-left 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s;
}
@media (max-width: 1024px) {
  nav {
    padding: 20px 40px;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }
}
nav.scrolled {
  background: rgba(10, 8, 4, 0.92);
  backdrop-filter: blur(20px);
  padding: 16px 60px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
@media (max-width: 1024px) {
  nav.scrolled {
    padding: 16px 40px;
  }
}
@media (max-width: 768px) {
  nav.scrolled {
    padding: 12px 24px;
  }
}
nav .nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 102;
}
nav .nav-logo .nav-logo-img {
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  nav .nav-logo .nav-logo-img {
    width: 160px;
  }
}
nav .nav-logo .nav-logo-text {
  font-family: "Cinzel", serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: #e8c96a;
}
nav .nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 102;
  padding: 4px;
  width: 32px;
}
@media (max-width: 1024px) {
  nav .nav-toggle {
    display: flex;
  }
}
nav .nav-toggle span {
  display: block;
  height: 1px;
  background-color: #e8c96a;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: auto;
  transform-origin: center;
}
nav .nav-toggle span:nth-child(1) {
  width: 28px;
}
nav .nav-toggle span:nth-child(2) {
  width: 18px;
}
nav .nav-toggle span:nth-child(3) {
  width: 24px;
}
nav .nav-toggle:hover span {
  width: 28px;
}
nav .nav-toggle.active span {
  width: 28px;
}
nav .nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
nav .nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}
nav .nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
nav .nav-menu {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  nav .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(16, 14, 8, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 101;
  }
  nav .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
nav .nav-links {
  display: flex;
  gap: 48px;
}
@media (min-width: 1025px) {
  nav .nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 1024px) {
  nav .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
nav .nav-links .nav-link {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(201, 168, 76, 0.45);
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s;
  position: relative;
}
@media (max-width: 1024px) {
  nav .nav-links .nav-link {
    font-size: 14px;
  }
}
nav .nav-links .nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: #c9a84c;
  transform: scaleX(0);
  transition: 0.3s;
}
nav .nav-links .nav-link:hover {
  color: #c9a84c;
}
nav .nav-links .nav-link:hover::after {
  transform: scaleX(1);
}
nav .nav-cta {
  font-family: "Cinzel", serif;
  font-size: 11.5px;
  letter-spacing: 0.25em;
  color: #0a0804;
  background: linear-gradient(135deg, #c9a84c, #8b6914);
  padding: 10px 28px;
  text-decoration: none;
  text-transform: uppercase;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: 0.3s;
}
@media (max-width: 1024px) {
  nav .nav-cta {
    font-size: 14px;
    padding: 14px 40px;
    margin-top: 16px;
  }
}
nav .nav-cta:hover {
  background: linear-gradient(135deg, #f5e4a8, #c9a84c);
}

.cover {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  transform: translateY(0);
  z-index: 10000;
  background: transparent;
}
.cover span {
  width: 100%;
  height: 100%;
  background: #100e08;
  border-left: none;
  position: relative;
  overflow: hidden;
}
.cover span:not(:first-child) {
  box-shadow: inset 18px 0 28px -24px rgba(139, 105, 20, 0.1);
}
.cover span::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(139, 105, 20, 0.08) 0%, transparent 18%, transparent 100%);
}
.cover span {
  /* 平板：只留 5 個 */
}
@media (max-width: 1024px) {
  .cover span:nth-child(n+6) {
    display: none;
  }
}
.cover span {
  /* 手機：只留 4 個 */
}
@media (max-width: 767px) {
  .cover span:nth-child(n+4) {
    display: none;
  }
}

#hero {
  position: relative;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 40%, #2a2010 0%, #100e08 50%, rgba(5, 4, 2, 0) 100%);
}
#hero .grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
#hero .grid-lines::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridShift 20s linear infinite;
}
#hero .ring-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
#hero .ring-container .orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.12);
  animation: orbSpin linear infinite;
}
#hero .ring-container .orbit-ring:nth-child(1) {
  width: 600px;
  height: 600px;
  animation-duration: 30s;
  border-color: rgba(201, 168, 76, 0.09);
}
#hero .ring-container .orbit-ring:nth-child(2) {
  width: 800px;
  height: 800px;
  animation-duration: 45s;
  animation-direction: reverse;
}
#hero .ring-container .orbit-ring:nth-child(3) {
  width: 1100px;
  height: 1100px;
  animation-duration: 60s;
}
#hero .ring-container .orbit-ring::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #e8c96a;
  border-radius: 50%;
  box-shadow: 0 0 12px #e8c96a, 0 0 24px #c9a84c;
}
#hero .hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
#hero .hero-content .logo-img {
  width: 160px;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.5)) drop-shadow(0 0 80px rgba(201, 168, 76, 0.2));
  animation: none;
}
#hero .hero-content .logo-img.is-floating {
  animation: logoFloat 6s ease-in-out infinite;
}
@media (max-width: 768px) {
  #hero .hero-content .logo-img {
    width: 100px;
    height: 100px;
  }
}
#hero .hero-content .hero-eyebrow {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.5em;
  color: rgba(201, 168, 76, 0.7);
  text-transform: uppercase;
}
#hero .hero-content .hero-title-zh {
  font-family: "Noto Serif TC", serif;
  font-weight: 900;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.1;
  letter-spacing: 0.12em;
  animation: none;
}
#hero .hero-content .hero-title-split {
  display: inline-block;
  color: #e8c96a;
  -webkit-text-fill-color: currentColor;
}
#hero .hero-content .hero-title-char {
  display: inline-block;
  color: #e8c96a;
  -webkit-text-fill-color: currentColor;
}
#hero .hero-content .hero-title-en {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 0.6em;
  color: rgba(201, 168, 76, 0.45);
}
#hero .hero-content .hero-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}
#hero .hero-content .hero-tagline {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245, 228, 168, 0.65);
  max-width: 420px;
  letter-spacing: 0.08em;
}
#hero .scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
}
#hero .scroll-indicator .scroll-text {
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 0.4em;
  color: rgba(201, 168, 76, 0.45);
}
#hero .scroll-indicator .scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(#f5e4a8, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.marquee-wrap {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  background: rgba(201, 168, 76, 0.07);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.marquee-wrap .marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}
.marquee-wrap .marquee-item {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 48px;
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: rgba(201, 168, 76, 0.45);
  text-transform: uppercase;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .marquee-wrap .marquee-item {
    font-size: 11px;
    padding: 0 32px;
    gap: 32px;
  }
}
.marquee-wrap .marquee-dot {
  width: 4px;
  height: 4px;
  background: #c9a84c;
  border-radius: 50%;
  flex-shrink: 0;
}

#about {
  padding: 160px 0;
  background: linear-gradient(180deg, #0a0804 0%, #1a1710 50%, #0a0804 100%);
  overflow: hidden;
}
@media (max-width: 576px) {
  #about {
    padding: 100px 0;
  }
}
#about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 576px) {
  #about .about-grid {
    gap: 40px;
    grid-template-columns: 1fr;
  }
}
#about .about-label {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: rgba(201, 168, 76, 0.45);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
#about .about-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #c9a84c;
}
#about .about-heading {
  font-family: "Noto Serif TC", serif;
  font-weight: 900;
  font-size: clamp(20px, 3.5vw, 48px);
  line-height: 1.3;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #f5e4a8, #c9a84c 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 576px) {
  #about .about-heading {
    font-weight: 700;
  }
}
#about .about-text {
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
  color: rgba(245, 228, 168, 0.6);
  letter-spacing: 0.08em;
  margin-bottom: 48px;
}
#about .stat-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  #about .stat-row {
    gap: 20px;
    justify-content: flex-start;
  }
}
#about .stat-row .stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#about .stat-row .stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  line-height: 1;
  background: linear-gradient(135deg, #f5e4a8, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 576px) {
  #about .stat-row .stat-num {
    font-size: 42px;
  }
}
#about .stat-row .stat-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(201, 168, 76, 0.45);
  font-family: "Cinzel", serif;
}
#about .about-visual {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 480px;
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
}
#about .about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../images/about/img-1.avif") center/cover no-repeat;
  z-index: -1;
  filter: brightness(0.65);
}
#about .about-visual .about-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), transparent);
  overflow: hidden;
  isolation: isolate;
}
#about .about-visual .about-frame::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(201, 168, 76, 0.15) 60deg, transparent 120deg, transparent 360deg);
  animation: conicSpin 8s linear infinite;
  z-index: -1;
  pointer-events: none;
}
#about .about-visual .corner-deco {
  position: absolute;
  width: 24px;
  height: 24px;
}
#about .about-visual .corner-deco.tl {
  top: 16px;
  left: 16px;
  border-top: 2px solid #c9a84c;
  border-left: 2px solid #c9a84c;
}
#about .about-visual .corner-deco.tr {
  top: 16px;
  right: 16px;
  border-top: 2px solid #c9a84c;
  border-right: 2px solid #c9a84c;
}
#about .about-visual .corner-deco.bl {
  bottom: 16px;
  left: 16px;
  border-bottom: 2px solid #c9a84c;
  border-left: 2px solid #c9a84c;
}
#about .about-visual .corner-deco.br {
  bottom: 16px;
  right: 16px;
  border-bottom: 2px solid #c9a84c;
  border-right: 2px solid #c9a84c;
}
#about .about-visual .about-inner-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  flex-direction: column;
  gap: 20px;
}
#about .about-visual .about-inner-text .shield-text {
  font-family: "Cinzel", serif;
  font-size: clamp(14px, 2vw, 22px);
  letter-spacing: 0.2em;
  color: rgba(201, 168, 76, 0.4);
  line-height: 1.6;
  font-weight: 400;
}
#about .about-visual .about-inner-text .shield-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(60px, 8vw, 100px);
  line-height: 1;
  background: linear-gradient(135deg, rgba(245, 228, 168, 0.3), rgba(201, 168, 76, 0.15));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.services-grid .service-card {
  position: relative;
  padding: 52px 40px;
  background: rgba(201, 168, 76, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: none;
}
@media (max-width: 1024px) {
  .services-grid .service-card {
    padding: 40px 32px;
  }
}
.services-grid .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.services-grid .service-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
}
.services-grid .service-card:hover::before {
  opacity: 1;
}
.services-grid .service-card:hover::after {
  transform: scaleX(1);
}
.services-grid .service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.services-grid .service-card .service-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 56px;
  line-height: 1;
  color: rgba(201, 168, 76, 0.1);
  margin-bottom: 24px;
  display: block;
}
.services-grid .service-card .service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  position: relative;
}
.services-grid .service-card .service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #c9a84c;
  stroke-width: 1.5;
}
.services-grid .service-card .service-name-zh {
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: #e8c96a;
}
.services-grid .service-card .service-name-en {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(201, 168, 76, 0.45);
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
}
.services-grid .service-card .service-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245, 228, 168, 0.5);
  letter-spacing: 0.06em;
}

#services {
  padding: 160px 0;
  background: #100e08;
}
@media (max-width: 768px) {
  #services {
    padding: 100px 0;
  }
}

#seo-geo {
  padding: 160px 0;
  background: linear-gradient(180deg, #0a0804 0%, #100e08 100%);
}
@media (max-width: 768px) {
  #seo-geo {
    padding: 100px 0;
  }
}
#seo-geo .section-desc {
  text-align: center;
  font-size: 15px;
  color: rgba(245, 228, 168, 0.6);
  margin-top: 1rem;
  letter-spacing: 0.1em;
  font-weight: 300;
}
#seo-geo .dual-engine-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1024px) {
  #seo-geo .dual-engine-container {
    flex-direction: column;
    gap: 60px;
  }
}
#seo-geo .engine-block {
  flex: 1;
  position: relative;
  padding: 56px 48px;
  background: rgba(201, 168, 76, 0.04);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
}
@media (max-width: 1024px) {
  #seo-geo .engine-block {
    padding: 40px 32px;
  }
}
#seo-geo .engine-block:hover {
  background: rgba(201, 168, 76, 0.04);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-6px);
}
#seo-geo .engine-block:hover .engine-bg {
  opacity: 1;
}
#seo-geo .engine-block:hover .engine-title {
  transform: translateZ(25px);
  border-color: rgba(201, 168, 76, 0.5);
  color: #e8c96a;
  box-shadow: -1px 1px 0 #8b6914, -2px 2px 0 #8b6914, -3px 3px 0 #8b6914, -4px 4px 0 #8b6914, -5px 5px 0 #8b6914, -6px 6px 0 #8b6914, -7px 7px 0 #8b6914, -8px 8px 0 #8b6914, -35px 35px 40px rgba(10, 8, 4, 0.9);
}
#seo-geo .seo-block {
  margin-right: 40px;
}
@media (max-width: 1024px) {
  #seo-geo .seo-block {
    margin-right: 0;
  }
}
#seo-geo .geo-block {
  margin-left: 40px;
}
@media (max-width: 1024px) {
  #seo-geo .geo-block {
    margin-left: 0;
  }
}
#seo-geo .engine-bg {
  position: absolute;
  inset: 0;
  transition: opacity 0.6s ease;
}
#seo-geo .seo-block .engine-bg {
  background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}
#seo-geo .geo-block .engine-bg {
  background: radial-gradient(circle at top left, rgba(232, 201, 106, 0.08) 0%, transparent 60%);
}
#seo-geo .engine-header {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  #seo-geo .engine-header {
    gap: 30px;
  }
}
#seo-geo .engine-title-stage {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotateX(60deg) rotateZ(-45deg);
  transform-style: preserve-3d;
}
@media (max-width: 768px) {
  #seo-geo .engine-title-stage {
    width: 100px;
    height: 100px;
  }
}
#seo-geo .engine-title {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 64px;
  line-height: 0.85;
  background-color: #1a1710;
  color: #f5e4a8;
  border: 1px solid rgba(201, 168, 76, 0.2);
  transform: translateZ(0);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s;
  box-shadow: -1px 1px 0 rgba(139, 105, 20, 0.6), -2px 2px 0 rgba(139, 105, 20, 0.6), -3px 3px 0 rgba(139, 105, 20, 0.6), -4px 4px 0 rgba(139, 105, 20, 0.6), -5px 5px 0 rgba(139, 105, 20, 0.6), -6px 6px 0 rgba(139, 105, 20, 0.6), -15px 15px 20px rgba(10, 8, 4, 0.3);
}
@media (max-width: 768px) {
  #seo-geo .engine-title {
    font-size: 45px;
  }
}
#seo-geo .engine-title:hover {
  transform: translateZ(25px);
  border-color: rgba(201, 168, 76, 0.5);
  color: #e8c96a;
  box-shadow: -1px 1px 0 rgba(139, 105, 20, 0.6), -2px 2px 0 rgba(139, 105, 20, 0.6), -3px 3px 0 rgba(139, 105, 20, 0.6), -4px 4px 0 rgba(139, 105, 20, 0.6), -5px 5px 0 rgba(139, 105, 20, 0.6), -6px 6px 0 rgba(139, 105, 20, 0.6), -25px 25px 30px rgba(10, 8, 4, 0.4);
}
#seo-geo .engine-subtitle {
  font-family: "Noto Serif TC", serif;
  font-size: 18px;
  font-weight: 700;
  color: #e8c96a;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  #seo-geo .engine-subtitle {
    font-size: 16px;
  }
}
#seo-geo .engine-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 228, 168, 0.7);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  letter-spacing: 0.06em;
}
#seo-geo .engine-features {
  list-style: none;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#seo-geo .engine-features li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 228, 168, 0.5);
  letter-spacing: 0.05em;
}
#seo-geo .engine-features li strong {
  color: #e8c96a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
#seo-geo .engine-features li strong::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #c9a84c;
  border-radius: 50%;
  display: inline-block;
}
#seo-geo .engine-features li code {
  font-family: monospace;
  background: rgba(201, 168, 76, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  color: #f5e4a8;
  font-size: 13px;
  margin: 0 4px;
}
#seo-geo .engine-connector {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
@media (max-width: 1024px) {
  #seo-geo .engine-connector {
    transform: translate(-50%, -50%) rotate(90deg);
  }
}
#seo-geo .engine-connector .connector-line {
  position: absolute;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0), #c9a84c, rgba(201, 168, 76, 0));
}
#seo-geo .engine-connector .connector-core {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #100e08;
  border: 1px solid rgba(201, 168, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(10, 8, 4, 0.8), inset 0 0 20px rgba(201, 168, 76, 0.1);
  position: relative;
}
#seo-geo .engine-connector .connector-core svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #c9a84c;
  stroke-width: 1.5;
}
#seo-geo .engine-connector .connector-core::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, 0.3);
  animation: orbSpin 12s linear infinite;
}

#pricing {
  padding: 160px 0;
  background: #100e08;
}
@media (max-width: 768px) {
  #pricing {
    padding: 100px 0;
  }
}
#pricing .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  #pricing .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  #pricing .pricing-grid {
    grid-template-columns: 1fr;
  }
}
#pricing .pricing-grid .pricing-card {
  background: rgba(201, 168, 76, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  #pricing .pricing-grid .pricing-card {
    padding: 30px 30px;
  }
}
#pricing .pricing-grid .pricing-card:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-8px);
}
#pricing .pricing-grid .pricing-card.special {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.4);
}
#pricing .pricing-grid .pricing-card .pricing-title {
  font-size: 22px;
  font-weight: 700;
  color: #e8c96a;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 24px;
}
#pricing .pricing-grid .pricing-card .pricing-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
  margin-bottom: 32px;
}
#pricing .pricing-grid .pricing-card .pricing-list {
  list-style: none;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#pricing .pricing-grid .pricing-card .pricing-list li {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: rgba(245, 228, 168, 0.7);
  letter-spacing: 0.05em;
  border-bottom: 1px dashed rgba(201, 168, 76, 0.15);
  padding-bottom: 12px;
}
#pricing .pricing-grid .pricing-card .pricing-list li.vip {
  color: #e8c96a;
  font-weight: 700;
}
#pricing .pricing-grid .pricing-card .pricing-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 228, 168, 0.6);
  text-align: center;
  flex-grow: 1;
}
#pricing .pricing-grid .pricing-card .pricing-btn {
  margin-top: 40px;
  justify-content: center;
  width: 100%;
}
@media (max-width: 768px) {
  #pricing .pricing-grid .pricing-card .pricing-btn {
    letter-spacing: 1px;
  }
}
@media (max-width: 768px) {
  #pricing .btn-primary {
    padding: 15px 20px;
  }
}
@media (max-width: 768px) {
  #pricing .btn-ghost {
    padding: 15px 20px;
  }
}

.floating-cta {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 990;
  background: linear-gradient(135deg, #c9a84c, #8b6914);
  color: #0a0804;
  padding: 16px 28px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.25);
  transition: all 0.3s ease;
  animation: floatPulse 3s infinite;
  cursor: none;
}
@media (max-width: 1024px) {
  .floating-cta {
    bottom: 32px;
    right: 32px;
  }
}
@media (max-width: 768px) {
  .floating-cta {
    bottom: 24px;
    right: 24px;
    padding: 12px 20px;
  }
  .floating-cta span {
    display: none;
  }
}
.floating-cta svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.floating-cta:hover {
  background: linear-gradient(135deg, #f5e4a8, #c9a84c);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}

#process {
  padding: 160px 0;
  background: #0a0804;
}
@media (max-width: 768px) {
  #process {
    padding: 100px 0;
  }
}
#process .process-track {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 1024px) {
  #process .process-track {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  #process .process-track {
    flex-direction: column;
    gap: 40px;
  }
  #process .process-track::before {
    display: none;
  }
}
#process .process-track::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3) 20%, rgba(201, 168, 76, 0.3) 80%, transparent);
  z-index: 0;
}
#process .process-track .process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
#process .process-track .process-step:hover .step-num {
  background: rgba(201, 168, 76, 0.1);
  border-color: #c9a84c;
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}
#process .process-track .process-step .step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: #c9a84c;
  background: #0a0804;
  margin-bottom: 28px;
  position: relative;
  transition: all 0.3s;
}
#process .process-track .process-step .step-num::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.1);
}
#process .process-track .process-step .step-title {
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  color: #e8c96a;
}
#process .process-track .process-step .step-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245, 228, 168, 0.5);
  letter-spacing: 0.05em;
}

#cases {
  padding: 160px 0;
  background: #1a1710;
}
@media (max-width: 768px) {
  #cases {
    padding: 100px 0;
  }
}
#cases .section-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 1024px) {
  #cases .section-inner {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  #cases .section-inner {
    padding: 0 24px;
  }
}
#cases .cases-swiper {
  width: 100%;
  padding-bottom: 60px;
  overflow: hidden;
}
#cases .cases-swiper .swiper-wrapper {
  align-items: center;
}
#cases .cases-swiper .swiper-slide {
  width: auto;
  height: 400px;
}
@media (max-width: 768px) {
  #cases .cases-swiper .swiper-slide {
    height: 300px;
  }
}
#cases .case-card {
  position: relative;
  width: auto;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  cursor: grab;
}
#cases .case-card:active {
  cursor: grabbing;
}
#cases .case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 4, 0.8) 0%, transparent 40%);
  pointer-events: none;
}
#cases .case-card img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  transition: transform 0.6s ease;
}
#cases .case-card:hover img {
  transform: scale(1.05);
}
#cases .case-card .case-category {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  color: #e8c96a;
  font-size: 14px;
  letter-spacing: 0.15em;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #c9a84c;
  font-size: 0.9rem;
  padding: 0.2rem 0.5rem;
  opacity: 0.8;
}
#cases .swiper-pagination-bullet {
  background: rgba(201, 168, 76, 0.4);
  opacity: 1;
}
#cases .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #c9a84c;
}
#cases .swiper-button-next,
#cases .swiper-button-prev {
  color: #c9a84c;
  transition: transform 0.3s;
}
#cases .swiper-button-next::after,
#cases .swiper-button-prev::after {
  font-size: 24px;
}
#cases .swiper-button-next:hover,
#cases .swiper-button-prev:hover {
  transform: scale(1.1);
}

#why {
  padding: 160px 0;
  background: #0a0804;
}
@media (max-width: 768px) {
  #why {
    padding: 100px 0;
  }
}
#why .why-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  #why .why-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  #why .why-inner {
    grid-template-columns: 1fr;
  }
}
#why .why-inner .why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
#why .why-inner .why-list .about-label {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: rgba(201, 168, 76, 0.45);
  text-transform: uppercase;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
#why .why-inner .why-list .about-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #c9a84c;
}
#why .why-inner .why-list .why-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: all 0.3s;
  cursor: none;
}
#why .why-inner .why-list .why-item:last-child {
  border-bottom: none;
}
#why .why-inner .why-list .why-item:hover {
  padding-left: 12px;
  border-bottom-color: rgba(201, 168, 76, 0.3);
}
#why .why-inner .why-list .why-item:hover .why-num {
  color: #c9a84c;
}
#why .why-inner .why-list .why-item .why-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  line-height: 1;
  color: rgba(201, 168, 76, 0.2);
  flex-shrink: 0;
  transition: 0.3s;
}
#why .why-inner .why-list .why-item .why-title {
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: #e8c96a;
}
#why .why-inner .why-list .why-item .why-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245, 228, 168, 0.5);
  letter-spacing: 0.05em;
}
#why .why-inner .why-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}
@media (max-width: 768px) {
  #why .why-inner .why-visual {
    height: 200px;
  }
}
#why .why-inner .why-visual .why-helmet {
  width: 260px;
  height: 260px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 60px rgba(201, 168, 76, 0.4));
  animation: helmetPulse 5s ease-in-out infinite;
}
@media (max-width: 768px) {
  #why .why-inner .why-visual .why-helmet {
    width: 180px;
    height: 180px;
  }
}
#why .why-inner .why-visual .why-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  animation: glowBreath 5s ease-in-out infinite;
}

#contact {
  padding: 160px 0;
  background: linear-gradient(180deg, #1a1710, #100e08);
  text-align: center;
}
@media (max-width: 768px) {
  #contact {
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  #contact .btn-primary {
    padding: 15px 20px;
  }
}
@media (max-width: 768px) {
  #contact .btn-ghost {
    padding: 15px 20px;
  }
}
#contact .contact-tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(14px, 2vw, 20px);
  color: rgba(245, 228, 168, 0.5);
  letter-spacing: 0.1em;
  margin-bottom: 60px;
  line-height: 1.8;
}
#contact .contact-big {
  font-family: "Noto Serif TC", serif;
  font-weight: 900;
  font-size: clamp(30px, 6vw, 80px);
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #f5e4a8 0%, #c9a84c 50%, #8b6914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#contact .contact-info {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 80px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  #contact .contact-info {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  #contact .contact-info {
    flex-direction: column;
    gap: 32px;
  }
}
#contact .contact-info .contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
#contact .contact-info .contact-block .contact-block-label {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.5em;
  color: rgba(201, 168, 76, 0.45);
  text-transform: uppercase;
}
#contact .contact-info .contact-block .contact-block-value {
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 228, 168, 0.7);
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
#contact .contact-info .contact-block .contact-block-value:is(a):hover {
  color: #c9a84c;
  transform: translateY(-2px);
}

footer {
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  background: #0a0804;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  footer {
    padding: 32px 40px;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 32px 24px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
footer .footer-brand .footer-logo {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.7;
}
footer .footer-brand .footer-name {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: rgba(201, 168, 76, 0.45);
}
footer .footer-copy {
  font-size: 11px;
  color: rgba(201, 168, 76, 0.25);
  letter-spacing: 0.15em;
  font-family: "Cinzel", serif;
}

#reviews {
  --radius: max(1300px, 100vw);
  --circ: calc(var(--radius) * 3.14);
  --segments-x: 37;
  --segments-y: 37;
  --sphere-rotation-y: 0;
  --sphere-rotation-x: 0;
  --rot-y: calc((360deg / var(--segments-x)) / 2);
  --rot-x: calc((360deg / var(--segments-y)) / 2);
  --item-bg: rgb(225, 225, 225);
  --gradient-center: rgba(235, 235, 235, 0);
  --gradient-edge: rgba(235, 235, 235, 0.5);
  --gradient: radial-gradient(
    var(--gradient-center) 65%,
    var(--gradient-edge) 100%
  );
  --gradient-blur: radial-gradient(
    var(--gradient-center) 70%,
    var(--gradient-edge) 90%
  );
  position: relative;
  display: flex;
  width: 100%;
  height: 80vh;
  min-height: 800px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #1a1710;
  background: #1a1710;
  touch-action: none;
}
#reviews * {
  box-sizing: border-box;
  transform-style: preserve-3d;
}
#reviews .stage {
  perspective: calc(var(--radius) * 2);
}
#reviews .sphere {
  transform: translateZ(calc(var(--radius) * -1)) rotateY(var(--sphere-rotation-y)) rotateX(var(--sphere-rotation-x));
}
#reviews .overlay {
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  background: rgba(16, 14, 8, 0.8);
  background: linear-gradient(to bottom, rgba(16, 14, 8, 0.8), rgba(16, 14, 8, 0.1));
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
#reviews .item {
  --offset-x: 0;
  --offset-y: 0;
  --item-size-x: 1;
  --item-size-y: 1;
  --item-width: calc((var(--circ) / var(--segments-x)));
  --item-height: calc((var(--circ) / var(--segments-y)));
  width: calc(var(--item-width) * var(--item-size-x));
  height: calc(var(--item-height) * var(--item-size-y));
  position: absolute;
  transform-origin: 50% 50%;
  top: -999px;
  bottom: -999px;
  left: -999px;
  right: -999px;
  margin: auto;
  backface-visibility: hidden;
  transform: rotateY(calc(var(--rot-y) * (var(--offset-x) + (var(--item-size-x) - 1) / 2))) rotateX(calc(var(--rot-x) * (var(--offset-y) - (var(--item-size-y) - 1) / 2))) translateZ(var(--radius));
}
#reviews .item__image {
  position: absolute;
  display: block;
  inset: 10px;
  border-radius: 12px;
  background-color: var(--item-bg);
  overflow: hidden;
  backface-visibility: hidden;
}
#reviews .item__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  pointer-events: none;
  backface-visibility: hidden;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero-cta {
    align-items: center;
  }
}

.h2-scramble-word {
  display: inline-block;
  will-change: transform, opacity;
}

.h2-scramble-line,
.h2-scramble-line * {
  display: inline-block;
  color: #e8c96a;
  -webkit-text-fill-color: currentColor;
  background: none;
  background-clip: initial;
}/*# sourceMappingURL=style.css.map */