/* ==========================================================================
   HUB AXISCORE ADVISORY - DESERT GLASS DESIGN THEME
   Palette: Sun-bleached cream, Terracotta, Dusty Orange, Muted Teal, Dark Brown
   Aesthetics: Wind-shaped glass, frosted translucent surfaces, optical heat-shimmer
   ========================================================================== */

:root {
  /* Color Palette */
  --color-sand-light: #faf6f0;
  --color-sand-base: #f4eee3;
  --color-sand-deep: #e8ded0;
  --color-glass-surface: rgba(255, 255, 255, 0.65);
  --color-glass-tint: rgba(244, 238, 227, 0.78);
  --color-glass-border: rgba(200, 90, 50, 0.16);
  --color-glass-border-hover: rgba(200, 90, 50, 0.35);
  --color-glass-specular: rgba(255, 255, 255, 0.9);

  --color-terracotta: #c85a32;
  --color-terracotta-dark: #a94522;
  --color-terracotta-soft: rgba(200, 90, 50, 0.08);

  --color-dusty-orange: #d97443;
  --color-dusty-orange-soft: rgba(217, 116, 67, 0.12);

  --color-muted-teal: #3d7068;
  --color-muted-teal-dark: #2c544e;
  --color-muted-teal-soft: rgba(61, 112, 104, 0.1);

  --color-dark-brown: #241a14;
  --color-dark-brown-soft: #4a3b32;
  --color-muted-text: #6b5d53;

  /* Typography */
  --font-display: "Space Grotesk", "Cinzel", "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  --font-body: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Warped & Frosted Shadows */
  --shadow-glass: 0 16px 36px -12px rgba(36, 26, 20, 0.08), 0 2px 6px rgba(36, 26, 20, 0.04), inset 0 1px 0 var(--color-glass-specular);
  --shadow-glass-hover: 0 24px 48px -12px rgba(200, 90, 50, 0.16), 0 4px 12px rgba(36, 26, 20, 0.06), inset 0 1px 0 #ffffff;
  --shadow-shimmer: 0 0 24px rgba(217, 116, 67, 0.35);

  /* Warped Organic Radii */
  --radius-warped-lg: 28px 14px 32px 18px;
  --radius-warped-md: 20px 10px 22px 12px;
  --radius-warped-sm: 14px 8px 16px 10px;
  --radius-pill: 9999px;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 880px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.75rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  --spacing-xxl: 7.5rem;

  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-shimmer: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Base Styles & Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-dark-brown);
  background-color: var(--color-sand-base);
  background-image:
    radial-gradient(ellipse at 15% 10%, rgba(217, 116, 67, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 60%, rgba(61, 112, 104, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 90%, rgba(200, 90, 50, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-terracotta);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--color-terracotta-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-dark-brown);
  letter-spacing: 0.02em;
}

p {
  margin-bottom: 1.25rem;
  color: var(--color-dark-brown-soft);
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-dark-brown-soft);
}

li {
  margin-bottom: 0.5rem;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* Section Spacing */
.section {
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  position: relative;
}

.section-lg {
  padding-top: var(--spacing-xxl);
  padding-bottom: var(--spacing-xxl);
}

/* Desert Glass Components */
.glass-panel {
  background: var(--color-glass-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-warped-md);
  box-shadow: var(--shadow-glass);
  padding: 2.25rem;
  position: relative;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: var(--color-glass-border-hover);
  box-shadow: var(--shadow-glass-hover);
}

.glass-panel-warm {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(244, 238, 227, 0.85) 100%);
  border: 1px solid rgba(217, 116, 67, 0.22);
}

.glass-panel-teal {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(235, 243, 241, 0.88) 100%);
  border: 1px solid rgba(61, 112, 104, 0.22);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(244, 238, 227, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-glass-border);
  transition: var(--transition-smooth);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--color-dark-brown);
  text-decoration: none;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px 6px 14px 8px;
  box-shadow: 0 4px 12px rgba(200, 90, 50, 0.2);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name-en {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark-brown);
  line-height: 1.15;
}

.brand-name-zh {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--color-terracotta);
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-dark-brown);
  padding: 0.5rem 0.25rem;
  position: relative;
  letter-spacing: 0.03em;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-terracotta);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-terracotta);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-dark-brown);
}

/* Heat-Shimmer Desert Glass Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-warped-sm);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: var(--transition-shimmer);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-dusty-orange) 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px -6px rgba(200, 90, 50, 0.45);
}

.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(200, 90, 50, 0.5), var(--shadow-shimmer);
  filter: brightness(1.05);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-dark-brown);
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-glass);
}

.btn-secondary:hover {
  color: var(--color-terracotta);
  border-color: var(--color-terracotta);
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

.btn-teal {
  background: linear-gradient(135deg, var(--color-muted-teal) 0%, #4a8279 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px -6px rgba(61, 112, 104, 0.4);
}

.btn-teal:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(61, 112, 104, 0.5);
  filter: brightness(1.06);
}

/* Heat shimmer pseudo animation */
.btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.btn:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--color-terracotta-soft);
  color: var(--color-terracotta);
  border: 1px solid rgba(200, 90, 50, 0.2);
}

.badge-teal {
  background: var(--color-muted-teal-soft);
  color: var(--color-muted-teal);
  border-color: rgba(61, 112, 104, 0.25);
}

.badge-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-dark-brown-soft);
  border-color: rgba(36, 26, 20, 0.1);
}

/* Section Headers */
.section-header {
  margin-bottom: var(--spacing-lg);
}

.section-header.centered {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-terracotta);
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-muted-text);
  line-height: 1.7;
}

/* Hero Section */
.hero-desert {
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-title span.highlight {
  color: var(--color-terracotta);
  position: relative;
  display: inline-block;
}

.hero-lead {
  font-size: 1.18rem;
  color: var(--color-dark-brown-soft);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-assurance {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-glass-border);
  font-size: 0.85rem;
  color: var(--color-muted-text);
}

.hero-assurance-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-assurance-item svg {
  color: var(--color-muted-teal);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-warped-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(36, 26, 20, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

.hero-float-glass {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-radius: var(--radius-warped-sm);
  border: 1px solid rgba(200, 90, 50, 0.25);
  box-shadow: var(--shadow-glass);
  max-width: 280px;
}

.hero-float-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-terracotta);
  margin-bottom: 0.35rem;
}

.hero-float-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark-brown);
  line-height: 1.4;
}

/* Cards & Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Service Card */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card-image {
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-warped-sm);
  margin-bottom: 1.5rem;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.service-card-summary {
  font-size: 0.92rem;
  color: var(--color-muted-text);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-glass-border);
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-dark-brown-soft);
}

.service-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card-footer {
  margin-top: auto;
}

/* Flagship Highlight Card */
.flagship-banner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 237, 225, 0.9) 100%);
  border: 2px solid rgba(200, 90, 50, 0.3);
  border-radius: var(--radius-warped-lg);
  padding: 3rem;
  box-shadow: var(--shadow-glass-hover);
  margin-bottom: 3.5rem;
}

.flagship-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

/* Framework / Advisory Process Steps */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
}

.process-step-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.75rem;
  align-items: flex-start;
}

.process-step-num {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-dusty-orange) 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-warped-sm);
  box-shadow: 0 8px 18px rgba(200, 90, 50, 0.3);
}

.process-step-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.process-step-content p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Testimonials */
.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-dark-brown-soft);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: normal;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-glass-border);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-terracotta);
}

.author-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark-brown);
}

.author-meta {
  font-size: 0.78rem;
  color: var(--color-muted-text);
  line-height: 1.3;
}

/* Pricing Cards */
.pricing-card {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.pricing-card.featured {
  border: 2px solid var(--color-terracotta);
  box-shadow: var(--shadow-glass-hover);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 237, 225, 0.95) 100%);
  transform: translateY(-8px);
}

.pricing-badge-pos {
  position: absolute;
  top: -12px;
  right: 24px;
}

.pricing-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-glass-border);
}

.pricing-name {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.pricing-sub {
  font-size: 0.88rem;
  color: var(--color-muted-text);
  margin-bottom: 1.25rem;
}

.pricing-price-box {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.pricing-currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-terracotta);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark-brown);
  line-height: 1;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--color-muted-text);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  color: var(--color-dark-brown-soft);
}

.pricing-feature-item svg {
  color: var(--color-muted-teal);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Blog / Journal Cards */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-img {
  height: 220px;
  border-radius: var(--radius-warped-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}

.blog-meta-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.8rem;
  color: var(--color-muted-text);
  margin-bottom: 0.65rem;
}

.blog-title {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.blog-summary {
  font-size: 0.9rem;
  color: var(--color-dark-brown-soft);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* FAQ Accordion / Item */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.faq-item {
  padding: 1.75rem;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark-brown);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.faq-answer {
  font-size: 0.92rem;
  color: var(--color-dark-brown-soft);
  line-height: 1.75;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark-brown);
  margin-bottom: 0.5rem;
}

.form-label .required {
  color: var(--color-terracotta);
  margin-left: 0.25rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark-brown);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-warped-sm);
  outline: none;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(200, 90, 50, 0.15);
  background: #ffffff;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  font-size: 0.8rem;
  color: #b91c1c;
  margin-top: 0.35rem;
  display: none;
}

.form-control.is-invalid {
  border-color: #b91c1c;
  background-color: #fef2f2;
}

.form-control.is-invalid + .form-error {
  display: block;
}

.form-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-warped-sm);
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  display: none;
}

.form-alert.alert-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-alert.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Contact Details Card */
.contact-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--color-glass-border);
}

.contact-detail-item:last-child {
  border-bottom: none;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-warped-sm);
  background: var(--color-terracotta-soft);
  color: var(--color-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted-text);
  margin-bottom: 0.25rem;
}

.contact-detail-val {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-dark-brown);
}

/* Article / Long-form Layout */
.article-header {
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--color-dark-brown);
}

.article-body h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-body h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.85rem;
}

.article-body ul, .article-body ol {
  margin-bottom: 1.75rem;
}

.article-body li {
  margin-bottom: 0.75rem;
}

.article-body strong {
  color: var(--color-dark-brown);
  font-weight: 700;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: rgba(36, 26, 20, 0.96);
  color: #e8ded0;
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-lg);
  border-top: 2px solid var(--color-terracotta);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.footer-brand-zh {
  font-size: 0.85rem;
  color: var(--color-dusty-orange);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: #c4b6a8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: #c4b6a8;
  font-size: 0.88rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--color-dusty-orange);
  padding-left: 4px;
}

.footer-contact-info {
  font-size: 0.85rem;
  color: #c4b6a8;
  line-height: 1.7;
}

.footer-contact-info p {
  color: #c4b6a8;
  margin-bottom: 0.65rem;
}

.footer-contact-info strong {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #9d8e82;
}

/* Cookie Banner Island */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 440px;
  z-index: 9999;
  background: rgba(36, 26, 20, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #f4eee3;
  border: 1px solid rgba(217, 116, 67, 0.35);
  border-radius: var(--radius-warped-md);
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  display: none;
  animation: slideUpFade 0.4s ease forwards;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-banner-text {
  font-size: 0.85rem;
  color: #d1c4b7;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.cookie-banner-text a {
  color: var(--color-dusty-orange);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
}

.btn-cookie-accept {
  background: var(--color-terracotta);
  color: #ffffff;
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-warped-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-cookie-accept:hover {
  background: var(--color-dusty-orange);
}

.btn-cookie-reject {
  background: rgba(255, 255, 255, 0.12);
  color: #e8ded0;
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-warped-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-cookie-reject:hover {
  background: rgba(255, 255, 255, 0.22);
}

.cookie-status-msg {
  font-size: 0.75rem;
  color: #9d8e82;
  margin-top: 0.5rem;
}

/* Legal Table */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0;
  font-size: 0.9rem;
}

.legal-table th, .legal-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border: 1px solid var(--color-glass-border);
}

.legal-table th {
  background: rgba(200, 90, 50, 0.08);
  font-weight: 700;
  color: var(--color-dark-brown);
}

.legal-table td {
  background: rgba(255, 255, 255, 0.6);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .flagship-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(244, 238, 227, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--color-glass-border);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  }

  .site-nav.is-open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .grid-3, .grid-2, .grid-4, .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-step-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-float-glass {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}
