/* ============================================
   新东方魅力KTV（格莱美）KTV - 深色奢华主题样式系统
   Dark Luxury Theme for Baidu SEO
   ============================================ */

/* CSS Variables - 豪华深色主题变量 */
:root {
  /* 核心色彩 */
  --bg-primary: #070a12;
  --bg-secondary: #0e1320;
  --bg-tertiary: #141c2e;
  --bg-card: #1a2440;
  --bg-card-hover: #222e50;

  /* 青金石系（主色调） */
  --sapphire-primary: #0ea5e9;
  --sapphire-light: #38bdf8;
  --sapphire-dark: #0284c7;
  --sapphire-gradient: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 50%, #0ea5e9 100%);
  --text-sapphire: #38bdf8;
  --border-sapphire: rgba(14, 165, 233, 0.35);
  --shadow-sapphire: 0 4px 30px rgba(14, 165, 233, 0.12);

  /* 铂金银系（装饰点缀） */
  --gold-primary: #d4af37;
  --gold-light: #e8c95a;
  --gold-dark: #b8941f;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #e8c95a 50%, #d4af37 100%);

  /* 文字颜色 */
  --text-primary: #f8fafc;
  --text-secondary: #cdd5e0;
  --text-muted: #9badc2;
  --text-gold: #e8c95a;

  /* 边框与分割线 */
  --border-subtle: rgba(14, 165, 233, 0.12);
  --border-light: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(212, 175, 55, 0.35);

  /* 阴影系统 */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.12);
  --shadow-sapphire: 0 4px 30px rgba(14, 165, 233, 0.12);
  
  /* 字体 */
  --font-primary: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
  --font-display: "Noto Serif SC", "Songti SC", "SimSun", serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  
  /* 间距 */
  --container-max: 1200px;
  --section-padding: 72px 0;
  --header-height: 80px;
  
  /* 过渡动画 */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* style3 补充变量 */
  --bg: #0d0f11;
  --bg-soft: #111518;
  --surface: #15191d;
  --surface-2: #1c2226;
  --surface-3: #20272c;
  --text: #f8fafc;
  --muted: #cdd5e0;
  --subtle: #9badc2;
  --accent: #0ea5e9;
  --accent-2: #38bdf8;
  --green: #10b981;
  --green-2: #34d399;
  --line: rgba(248, 250, 252, .13);
  --line-strong: rgba(248, 250, 252, .24);
  --max: 1180px;
  --radius-sm: 4px;
  --radius-md: 8px;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* 背景纹理叠加 */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(ellipse at 20% 20%, rgba(14, 165, 233, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(14, 165, 233, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

a {
  color: var(--sapphire-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--sapphire-light);
}

a[href],
button,
[role="button"],
summary {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

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

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.text-gold {
  color: var(--text-gold);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ============================================
   Container & Layout
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section {
  /* padding: var(--section-padding); */
      padding-top:14px;
      padding-right: 0px;
      padding-bottom: 14px;
      padding-left: 0px;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 18px;
  position: relative;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 16px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--sapphire-gradient);
  border-radius: 2px;
}

.section-title p {
  margin-top: 16px;
  font-size: 1.05rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid System */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 10px 0; }
}

/* Flex Utilities */
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-wrap {
  flex-wrap: wrap;
}
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 40px; }

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-normal);
  background: rgba(8, 8, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.header.scrolled {
  background: rgba(8, 8, 16, 0.95);
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--sapphire-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--bg-primary);
  font-weight: bold;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 18px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--sapphire-primary);
  background: rgba(14, 165, 233, 0.08);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--sapphire-primary);
  border-radius: 1px;
}

.nav-contact {
  padding: 10px 22px;
  background: var(--sapphire-gradient);
  color: var(--bg-primary) !important;
  font-weight: 600;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.nav-contact:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sapphire);
  color: var(--bg-primary) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-fast);
  border-radius: 1px;
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    transform: translateY(-110%);
    opacity: 0;
    transition: var(--transition-normal);
    border-bottom: 1px solid var(--border-subtle);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-link,
  .nav-contact {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
}

/* ============================================
    Hero Section
    ============================================ */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
}

.hero__photo,
.hero__photo img,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__photo {
  z-index: 0;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: brightness(.8) saturate(1);
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 8, 16, .35) 0, rgba(8, 8, 16, .25) 40%, rgba(8, 8, 16, .65) 100%),
    linear-gradient(90deg, rgba(8, 8, 16, .35) 0, transparent 40%, rgba(8, 8, 16, .3) 100%);
}

.hero__inner {
  display: grid;
  align-content: center;
  width: min(var(--container-max), calc(100% - 48px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 128px 0 190px;
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero__content h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: 0;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .75), 0 26px 70px rgba(0, 0, 0, .5);
}

.hero__lead {
  max-width: 720px;
  margin: 26px auto 0;
  color: rgba(255,255,255,.85);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.hero__location {
  max-width: 900px;
  margin: 160px auto 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero__qr {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.hero__qr img {
  display: block;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hl-address {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.hl-phone {
color: #38bdf8;
  font-size: 24px;
  font-weight: 800;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

/* Button — hero CTA (index1-style) */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.button--primary {
  border-color: var(--sapphire-primary);
  background: var(--sapphire-gradient);
  color: var(--bg-primary);
  box-shadow: 0 20px 48px rgba(14, 165, 233, .28);
}

.button--ghost {
  border-color: var(--border-gold);
  background: rgba(8, 8, 16, .62);
  color: var(--text-primary);
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary:hover {
  color: var(--bg-primary);
  box-shadow: 0 24px 56px rgba(14, 165, 233, .38);
}

.button--ghost:hover {
  border-color: var(--sapphire-primary);
  color: var(--sapphire-primary);
}

/* Arrival Board — horizontal 3-col at hero bottom (index1 style) */
.arrival-board {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 960px;
  width: calc(100% - 48px);
  margin: 0 auto;
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  background: rgba(13, 15, 17, .88);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .36);
  overflow: hidden;
}

.arrival-board article {
  min-width: 0;
  padding: 20px 24px;
  border-right: 1px solid var(--border-subtle);
}

.arrival-board article:last-child {
  border-right: 0;
}

.arrival-board span {
  display: block;
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.arrival-board strong {
  display: block;
  margin-top: 5px;
  font-size: 1.08rem;
  color: var(--text-primary);
}

.arrival-tel {
  color: var(--sapphire-primary);
  text-decoration: none;
}

.arrival-tel:hover {
  color: var(--sapphire-light);
}

@media (max-width: 768px) {
  .hero__inner {
    width: calc(100% - 32px);
    align-content: center;
    min-height: 100vh;
    min-height: 100svh;
    padding: 60px 0 100px;
  }

  .hero__content {
    text-align: center;
  }

  .hero__content h1 {
    font-size: clamp(1.65rem, 8vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: .02em;
  }

  .hero__lead {
    margin-top: 12px;
    font-size: .88rem;
    line-height: 1.6;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,.8);
  }

  .hero__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    align-items: center;
  }

  .hero__actions .button {
    width: 220px;
    min-height: 48px;
    padding: 12px 24px;
    font-size: .95rem;
    letter-spacing: .03em;
  }

  .hero__location {
    margin-top: 32px;
    font-size: 13px;
    line-height: 1.75;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,.65);
  }
  .hl-address {
    font-size: 15px;
  }
  .hl-phone {
    font-size: 15px;
  }

  .arrival-board {
    bottom: calc(88px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr;
  }

  .arrival-board article {
    display: grid;
    grid-template-columns: 86px 1fr;
    align-items: center;
    padding: 11px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .arrival-board article:last-child {
    border-bottom: 0;
  }

  .arrival-board strong {
    margin-top: 0;
    font-size: .98rem;
  }

  .music-size {
    font-size: 35px;
  }
}

@media (max-width: 768px) and (min-height: 840px) {
  .hero__inner {
    padding-top: clamp(238px, 30svh, 280px);
  }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-primary);
}

.btn-primary {
  background: var(--sapphire-gradient);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.35);
  color: var(--bg-primary);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: var(--sapphire-primary);
  color: var(--sapphire-primary);
  background: rgba(14, 165, 233, 0.06);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.87rem;
}

/* ============================================
   Cards
   ============================================ */
.card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
  position: relative;
}

.card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.card-body {
  padding: 24px;
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(14, 165, 233, 0.12);
  color: var(--sapphire-primary);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 10px;
}

/* ============================================
   Image Gallery / Showcase
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-caption h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.gallery-caption p {
  color: var(--sapphire-primary);
  font-size: 0.85rem;
}

/* ============================================
   Features / Services
   ============================================ */
.feature-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}

.feature-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sapphire);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--sapphire-primary);
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ============================================
   Pricing Table
   ============================================ */
.pricing-card {
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: var(--transition-normal);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--sapphire-primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.pricing-card.featured::before {
  content: '热门推荐';
  position: absolute;
  top: 18px;
  right: -30px;
  background: var(--sapphire-gradient);
  color: var(--bg-primary);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 40px;
  transform: rotate(45deg);
}

.pricing-header {
  padding: 36px 28px;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-header h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--sapphire-primary);
  margin: 16px 0;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: normal;
}

.pricing-body {
  padding: 28px;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.93rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-list li::before {
  content: '\2713';
  color: var(--sapphire-primary);
  font-weight: bold;
  font-size: 0.85rem;
}

.pricing-footer {
  padding: 0 28px 28px;
}

/* ============================================
   Contact Info
   ============================================ */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 28px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}

.contact-item:hover {
  border-color: var(--border-gold);
}

.contact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--sapphire-primary);
}

.contact-detail h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.contact-detail p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.phone-highlight {
  font-size: 1.3rem !important;
  color: var(--sapphire-primary) !important;
  font-weight: 700;
  font-family: var(--font-mono);
}

/* QR Code Section */
.qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 36px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
}

.qr-code {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}

.qr-code img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: center;
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-primary);
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--sapphire-primary);
}

.faq-icon {
  font-size: 1.2rem;
  transition: var(--transition-fast);
  color: var(--sapphire-primary);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.94rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ============================================
   Recruitment / Job Card
   ============================================ */
.job-card {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  padding: 32px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--sapphire-gradient);
}

.job-card:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.job-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.job-tag {
  padding: 5px 14px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--sapphire-primary);
}

.job-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.job-salary {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sapphire-primary);
  font-family: var(--font-display);
}

/* ============================================
   About / Brand Story
   ============================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--border-gold);
  border-radius: 20px;
  opacity: 0.3;
  pointer-events: none;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--sapphire-primary);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .stat-number {
    font-size: 1.5rem;
  }
}

/* ============================================
   Promotion Banner
   ============================================ */
.promo-banner {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.05) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.promo-banner h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--sapphire-primary);
}

.promo-banner p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

/* ============================================
   Footer - Three Column Layout
   ============================================ */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 44px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, .72fr) minmax(190px, .56fr);
  align-items: start;
  gap: clamp(28px, 4vw, 64px);
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 32px 24px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}

.footer-top > div {
  min-width: 0;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--sapphire-primary);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
}

.footer-main > p {
  max-width: 560px;
  line-height: 1.8;
  font-size: 0.9rem;
}

.footer-info,
.footer-qr {
  padding-top: 4px;
}

.footer-info-title {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-info p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px 18px;
  margin-top: 14px;
}

.footer-nav a {
  color: var(--text-secondary);
  font-size: 0.93rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--sapphire-primary);
}

.footer-phone {
  display: inline-flex;
  margin-top: 12px;
  color: var(--sapphire-primary);
  font-size: 1.08rem;
  font-weight: 700;
}

.footer-qr {
  display: grid;
  width: 100%;
  max-width: 190px;
  justify-items: center;
  justify-self: center;
  align-content: start;
  gap: 10px;
  text-align: center;
}

.footer-qr-img {
  width: 128px;
  height: 128px;
  padding: 8px;
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
}

.footer-qr-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-qr p {
  max-width: 180px;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-qr a {
  color: var(--sapphire-primary);
  font-weight: 700;
}

.copyright {
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto;
  padding: 16px 24px 20px;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.65;
  text-align: center;
}

.copyright a {
  color: var(--text-secondary);
}

.copyright a:hover {
  color: var(--sapphire-primary);
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 28px 20px 18px;
  }
  .footer-qr {
    grid-column: span 2;
    justify-self: center;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-qr {
    grid-column: span 1;
  }
  .footer-main > p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   Page Header (Sub Pages)
   ============================================ */
.page-hero {
  padding: 160px 0 40px;
  position: relative;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.08) 0%, transparent 100%);
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.page-breadcrumb a:hover {
  color: var(--sapphire-primary);
}

.page-breadcrumb span {
  color: var(--sapphire-primary);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.3); }
  50% { box-shadow: 0 0 20px 5px rgba(14, 165, 233, 0.1); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

.shimmer-text {
  background: linear-gradient(90deg, var(--sapphire-primary) 0%, var(--sapphire-light) 50%, var(--sapphire-primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Utility Classes
   ============================================ */
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 36px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 56px; }
.py-sm { padding-top: 16px; padding-bottom: 16px; }
.py-md { padding-top: 32px; padding-bottom: 32px; }
.py-lg { padding-top: 56px; padding-bottom: 56px; }

.gold-border {
  border: 1px solid var(--border-gold);
}

.bg-card {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
}

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
  margin: 40px auto;
  max-width: 400px;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--sapphire-dark);
}

/* Selection */
::selection {
  background: rgba(14, 165, 233, 0.3);
  color: #fff;
}

/* ============================================
   Phone Contact Button & Modal
   ============================================ */
.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  background: var(--sapphire-dark);
  border: 1px solid rgba(14, 165, 233, 0.4);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
  user-select: none;
}

.phone-btn:hover {
  background: var(--sapphire-primary);
  border-color: rgba(14, 165, 233, 0.6);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
  transform: translateY(-1px);
}

.phone-btn .phone-icon {
  width: 18px;
  height: 18px;
  fill: var(--sapphire-primary);
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .phone-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 10px;
    font-size: 0.95rem;
    gap: 6px;
  }
  .phone-btn:hover {
    transform: translateY(-50%) translateX(2px) !important;
  }
}

/* Modal Overlay */
.phone-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.phone-modal-overlay.show {
  display: flex;
  opacity: 1;
}

.phone-modal {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 24px 20px 20px;
  max-width: 300px;
  width: 90%;
  text-align: center;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 10000;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}

.phone-modal-overlay.show .phone-modal {
  transform: scale(1) translateY(0);
}

.phone-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--sapphire-gradient);
}

.phone-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.phone-modal-close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.phone-modal-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(14, 165, 233, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-modal-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--sapphire-primary);
}

.phone-modal-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.phone-modal-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

.phone-modal-number-wrap {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.03));
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.phone-modal-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.phone-modal-number {
  font-family: var(--font-mono);
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  font-weight: 700;
  color: var(--sapphire-primary);
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.phone-modal-number:hover {
  opacity: 0.8;
}

/* ============================================
   Floating Phone Button (FAB)
   ============================================ */
.floating-phone {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--sapphire-gradient);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(14, 165, 233, 0.4), 0 0 0 0 rgba(14, 165, 233, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  animation: fab-pulse 2.5s ease-in-out infinite;
}

.floating-phone:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(14, 165, 233, 0.55);
  animation: none;
}

.floating-phone svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  flex-shrink: 0;
}

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(14, 165, 233, 0.4), 0 0 0 0 rgba(14, 165, 233, 0.35); }
  50% { box-shadow: 0 4px 24px rgba(14, 165, 233, 0.4), 0 0 0 12px rgba(14, 165, 233, 0); }
}

@media (min-width: 769px) {
  .floating-phone {
    display: none;
  }
}

@media (max-width: 768px) {
  .floating-phone {
    bottom: 80px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .floating-phone svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================================
   Home Page - Section Tag
   ============================================ */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--sapphire-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 6px 16px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
}

/* ============================================
   Home Page - Features (2x2 Icon + Text Grid)
   ============================================ */
.home-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.home-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 28px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}

.home-feature-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sapphire-primary);
  background: rgba(14, 165, 233, 0.08);
  border-radius: 12px;
}

.home-feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  color: var(--sapphire-primary);
}

.home-feature-icon svg {
  width: 100%;
  height: 100%;
}

.home-feature-text h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.home-feature-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (hover: hover) {
  .home-feature-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(14, 165, 233, 0.08);
  }
}

/* ============================================
   Home Page - Gallery (Asymmetric Grid)
   ============================================ */
.home-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.home-gallery-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 420px;
  cursor: pointer;
}

.home-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.home-gallery-main:hover img {
  transform: scale(1.05);
}

.home-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

.gallery-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--sapphire-primary);
  color: var(--bg-primary);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.home-gallery-overlay h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.home-gallery-overlay p {
  color: var(--sapphire-primary);
  font-size: 0.88rem;
}

.home-gallery-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.home-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.home-gallery-item:hover img {
  transform: scale(1.08);
}

.home-gallery-item .home-gallery-overlay h3 {
  font-size: 1rem;
}

.home-gallery-item .home-gallery-overlay p {
  font-size: 0.8rem;
}

.home-gallery-item .home-gallery-overlay {
  padding: 20px 16px 16px;
}

/* ============================================
   Home Page - Stats (Horizontal)
   ============================================ */
.home-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 48px 0;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14, 165, 233, 0.06) 50%, var(--bg-card) 100%);
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.home-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sapphire-primary), transparent);
  opacity: 0.3;
}

.home-stat-item {
  flex: 1;
  text-align: center;
  padding: 20px 32px;
}

.home-stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--sapphire-primary);
  line-height: 1.1;
  margin-bottom: 8px;
}

.home-stat-number span {
  font-size: 0.5em;
  color: var(--text-muted);
  font-weight: 400;
}

.home-stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.home-stat-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.home-stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--border-gold), transparent);
}

/* ============================================
   Home Page - Brand Story
   ============================================ */
.home-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 48px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.03) 0%, var(--bg-card) 100%);
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
}

.home-story-text h2 {
  margin-bottom: 20px;
}

.home-story-text p {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.home-story-highlights {
  display: flex;
  gap: 32px;
  margin-top: 28px;
}

.story-highlight-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.highlight-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sapphire-primary);
}

.highlight-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.story-img-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  height: 100%;
  min-height: 420px;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ============================================
   Home Page - CTA Section
   ============================================ */
.home-cta {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  text-align: center;
}

.home-cta-bg {
  position: absolute;
  inset: 0;
}

.home-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: blur(3px) saturate(0.7);
  transform: scale(1.1);
}

.home-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 8, 16, 0.94) 0%, rgba(8, 8, 16, 0.8) 50%, rgba(8, 8, 16, 0.94) 100%);
}

.home-cta-content {
  position: relative;
  z-index: 1;
}

.home-cta-content h2 {
  margin-bottom: 16px;
}

.home-cta-content p {
  max-width: 550px;
  margin: 0 auto 24px;
  font-size: 1.05rem;
}

.home-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Home Page - Responsive
   ============================================ */
@media (max-width: 992px) {
  .home-features {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .home-feature-card {
    padding: 24px 18px;
    gap: 14px;
  }
  .home-feature-num {
    font-size: 1.8rem;
  }

  .home-gallery {
    grid-template-columns: 1fr;
  }

  .home-gallery-main {
    min-height: 220px;
  }

  .home-gallery-side {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-story-images {
    order: -1;
  }

  .home-stats {
    flex-direction: column;
    gap: 0;
  }

  .home-stat-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
  }
}

@media (max-width: 768px) {
  .home-features {
    grid-template-columns: 1fr;
  }
  .home-feature-card {
    padding: 18px 14px;
    flex-wrap: wrap;
  }
  .home-feature-card h3 {
    width: auto;
    margin-bottom: 4px;
    font-size: .98rem;
  }
  .home-feature-card p {
    width: 100%;
    font-size: .85rem;
    line-height: 1.6;
  }
  .home-feature-num {
    flex-shrink: 0;
    font-size: 1.5rem;
  }

  .home-gallery-side {
    grid-template-columns: 1fr 1fr;
  }

  .story-img-grid {
    min-height: 220px;
  }

  .home-story {
    padding: 24px 16px;
    gap: 24px;
  }
  .home-story h2 {
    font-size: 1.3rem;
  }
  .home-story p {
    font-size: .9rem;
    line-height: 1.7;
  }

  .home-story-highlights {
    flex-wrap: wrap;
    gap: 16px;
  }

  .home-stat-item {
    padding: 14px 20px;
  }

  .home-stat-number {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .home-gallery-side {
    grid-template-columns: 1fr;
  }

  .home-gallery-item {
    aspect-ratio: 16/9;
  }
}

/* ============================================
   Accessibility & Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .animate-fade-in-up {
    opacity: 1;
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Button tactile feedback */
.btn:active,
.phone-btn:active,
.nav-link:active {
  transform: scale(0.98);
}

.btn-primary:active {
  transform: scale(0.98) translateY(0);
}

/* Focus visible for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--sapphire-primary);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--sapphire-primary);
  outline-offset: 2px;
}

/* ============================================
   Visual Diversity - Feature Cards
   ============================================ */
.home-feature-card:nth-child(1) {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14, 165, 233, 0.06) 100%);
}

.home-feature-card:nth-child(2) {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14, 165, 233, 0.04) 100%);
}

.home-feature-card:nth-child(3) {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14, 165, 233, 0.08) 100%);
}

.home-feature-card:nth-child(4) {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14, 165, 233, 0.03) 100%);
}

/* ============================================
   Style3 Merged Rules
   ============================================ */
.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: #f2eee8;
  color: #0d0f11;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 10px;
}

.page-hero,
.content-band,
.room-showcase,
.gallery-strip,
.footer { max-width: var(--max); margin: 0 auto; padding-left: 20px; padding-right: 20px; }

.page-hero h1,
.band-head h2,
.split-section h2,
.article-shell h1,
.sitemap-panel h1,
.address-stage h2,
.gallery-head h2,
.visit-stage h2,
.news-head h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.8vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.page-hero p,
.band-head p,
.split-section p,
.article-shell p,
.sitemap-panel p,
.address-stage p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
}

.page-hero {
  display: grid;
  gap: 34px;
  align-items: end;
  padding-top: 142px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.page-hero > div { max-width: 860px; }
.page-hero h1 { max-width: 880px; }
.page-hero p { max-width: 720px; font-size: 1.05rem; }

.hero-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.hero-panel__item { display: flex; flex-direction: column; gap: 2px; }
.hero-panel__item:last-child { border-bottom: none; padding-bottom: 0; }
.hero-panel__item span { font-size: .75rem; letter-spacing: .08em; color: var(--subtle); text-transform: uppercase; }
.hero-panel__item strong { font-size: .95rem; font-weight: 500; }

.room-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .72fr);
  gap: 18px;
  padding-bottom: 66px;
}

.room-showcase figure {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface);
}

.room-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 1px solid rgba(255, 255, 255, .08);
  outline-offset: -1px;
}

.room-showcase__stack { display: grid; gap: 18px; }
.room-showcase__stack img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-md);
  outline: 1px solid rgba(255, 255, 255, .08);
  outline-offset: -1px;
}

.room-showcase figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 22px;
  background: linear-gradient(transparent, rgba(13,15,17,.88));
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.room-showcase span {
  font-size: .78rem;
  letter-spacing: .08em;
  color: var(--accent-2);
  flex-shrink: 0;
}

.room-showcase strong { font-weight: 500; font-size: .95rem; }

.band-head { margin-bottom: 36px; }

.feature-grid h3,
.info-list h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 600;
}

.feature-grid p,
.info-list p { margin: 0; font-size: .88rem; color: var(--muted); }

.feature-grid,
.info-list { display: grid; gap: 28px; }

.info-list article { border-left: 2px solid var(--accent); padding-left: 16px; }
.feature-grid article { padding: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); }
.feature-grid h3 { color: var(--accent-2); }

.content-band { padding: 56px 20px;}
.content-band:first-of-type { border-top: none; }

.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 10px 0 82px;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-md);
  outline: 1px solid rgba(255, 255, 255, .08);
  outline-offset: -1px;
}

.room-carousel {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 18px;
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.carousel-track {
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}

.carousel-slide { flex: 0 0 100%; position: relative; }

.carousel-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  outline: 1px solid rgba(255,255,255,.08);
  outline-offset: -1px;
  display: block;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 40px 16px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.carousel-caption span {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-2);
  flex-shrink: 0;
}

.carousel-caption strong { font-weight: 500; font-size: .95rem; color: var(--text); }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(21,25,29,.82);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s;
}

.carousel-btn:hover { background: rgba(28,34,38,.9); border-color: var(--muted); }
.carousel-btn--prev { left: 12px; }
.carousel-btn--next { right: 12px; }

.carousel-dots { display: flex; justify-content: center; gap: 10px; padding-top: 18px; }

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  transition: background .25s, border-color .25s;
}

.carousel-dot.active { background: var(--accent-2); border-color: var(--accent-2); }

.room-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.room-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease;
  cursor: pointer;
}

.room-card:hover,
.room-card:active {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,.2), 0 0 0 1px var(--sapphire-primary);
  border-color: var(--sapphire-primary);
}

.room-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.22,1,.36,1), filter .5s ease;
}

.room-card:hover img,
.room-card:active img {
  transform: scale(1.03);
  filter: brightness(1.05) saturate(1.05);
}

.room-card__text {
  padding: 16px 18px 20px;
  text-align: center;
  transition: background .35s ease;
}

.room-card:hover .room-card__text,
.room-card:active .room-card__text {
  background: linear-gradient(180deg, rgba(196,163,90,.06) 0%, transparent 100%);
}

.room-card__text strong {
  display: block;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: 6px;
}

.room-card__text span { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ---- Room Gallery Mixed Layout ---- */
.room-gallery--mixed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ---- Split Grid (Check + Arrive) ---- */
.content-band--split {
  padding: 64px 20px 72px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.split-left .band-head,
.split-right .band-head {
  text-align: left;
}

.split-left .band-head h2,
.split-right .band-head h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
}

.split-right {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

.split-right .band-head {
  margin-bottom: 28px;
}

.split-cta-wrap {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.split-cta {
  display: inline-flex;
}

/* ---- Check Items (Icon style) ---- */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: background .25s ease;
}

.check-intro {
  margin-bottom: 24px;
  padding: 16px 20px;
  background: rgba(14, 165, 233,.06);
  border-left: 3px solid var(--sapphire-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.check-intro p {
  margin: 0;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}

.check-item:hover {
  background: var(--surface);
}

.check-item__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14, 165, 233,.1);
  color: var(--sapphire-primary);
}

.check-item__icon svg {
  width: 20px;
  height: 20px;
}

.check-item__body h3 {
  margin: 0 0 4px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
}

.check-item__body p {
  margin: 0;
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- Check Items (Number style) ---- */
.check-list--compact .check-item {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.check-list--compact .check-item:last-child {
  border-bottom: none;
}

.check-item__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent-2);
  border: 2px solid var(--accent-2);
  border-radius: 50%;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(320px, 1.14fr);
  gap: 34px;
  align-items: stretch;
  padding: 28px 0 78px;
}

.footer {
  padding-top: 50px;
  padding-bottom: 36px;
}

.footer__brand { font-weight: 700; font-size: 1.1rem; }
.footer__phone a { font-weight: 600; color: var(--accent-2); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.footer__nav a { font-size: .85rem; color: var(--muted); padding: 4px 10px; border-radius: 14px; background: var(--surface); }
.footer__nav a:hover { color: var(--text); }

.footer-contact { text-align: center; }
.footer-contact img { width: 120px; height: auto; margin: 0 auto 10px; border-radius: var(--radius-sm); }

.mobile-bottom-nav,
.float-phone { display: none; }

.float-phone {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 40;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: #f2eee8;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.35);
}
.float-phone svg { width: 22px; height: 22px; fill: currentColor; }

.page-hero--room h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
.page-hero--room { border-bottom: none; padding: 90px 20px 28px; }
.page-hero--room p,
.page-hero--room h1 { text-align: center; }
.page-hero--room > div { margin: 0 auto; max-width: 800px; }

.room-intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 28px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.72;
  text-align: center;
}

.room-intro .hl-address {
  color: #fff;
  font-size: 1.15em;
  font-weight: 700;
}

.band-head h2 { font-size: clamp(1.55rem, 3.2vw, 2.1rem); }
.band-head { text-align: center; }

[aria-labelledby="room-check-title"] .band-head,
[aria-labelledby="arrival-room-title"] .band-head {
  text-align: left;
}

/* ---- Style3 Responsive ---- */
@media (max-width: 920px) {
  .page-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 108px;
    padding-bottom: 40px;
  }

  .page-hero h1,
  .band-head h2,
  .split-section h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  .room-showcase {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .room-showcase figure { min-height: 340px; }

  .feature-grid,
  .info-list { grid-template-columns: 1fr; gap: 18px; }

  .room-gallery--mixed {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .room-card--featured {
    grid-row: auto;
  }

  .room-card--featured img {
    min-height: auto;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-right {
    padding: 24px;
  }

  .gallery-strip { grid-template-columns: 1fr 1fr; }

  .content-band { padding: 28px 16px; }
  .content-band--split { padding: 28px 16px 36px; }

  .split-section { grid-template-columns: 1fr; gap: 24px; }

  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(13,15,17,.94);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    justify-content: space-around;
    padding: 6px 0 env(safe-area-inset-bottom, 8px);
  }

  .mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 10px;
    font-size: .68rem;
    color: var(--subtle);
  }

  .mobile-bottom-nav a[aria-current="page"] { color: var(--accent-2); }
  .mobile-bottom-nav svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }

  .float-phone { display: flex; }

  .hero-panel { padding: 18px; }

  .room-gallery { grid-template-columns: 1fr; gap: 18px; }

  .room-intro { font-size: .95rem; padding: 0 16px 22px; }

  .room-carousel { padding: 0 16px 14px; }

  .carousel-btn--prev { left: 10px; }
  .carousel-btn--next { right: 10px; }
}

@media (max-width: 720px) {
  .page-hero { padding: 80px 16px 28px; }

  .room-showcase figure { min-height: 260px; }
  .room-showcase figcaption { padding: 18px 14px 14px; }

  .gallery-strip { grid-template-columns: 1fr; }

  .footer { padding-top: 34px; padding-bottom: 70px; }

  .room-carousel { padding: 0 12px 14px; }
  .carousel-btn { width: 34px; height: 34px; font-size: .9rem; }
  .carousel-btn--prev { left: 8px; }
  .carousel-btn--next { right: 8px; }
  .carousel-caption { flex-direction: column; gap: 2px; padding-top: 8px; }
  .carousel-caption strong { font-size: .88rem; }

  .room-card__text { padding: 12px 14px 16px; }

  .split-right { padding: 20px 16px; }
  .check-item { padding: 12px; }
  .check-intro { padding: 14px 16px; }
}

@media (max-width: 720px) and (min-height: 840px) {
  .hero__inner { padding-top: clamp(238px, 30svh, 280px); }
}

/* ============================================
   Responsive Merged Rules
   ============================================ */
@media (max-width: 992px) {
  :root {
    --section-padding: 70px 0;
    --header-height: 68px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 50px 0;
  }

  .container { padding: 0 16px; }

  .btn-lg {
    padding: 13px 28px;
    font-size: 0.95rem;
  }

  .card-body {
    padding: 18px;
  }

  .feature-card {
    padding: 28px 20px;
  }

  .pricing-header {
    padding: 26px 20px;
  }

  .pricing-price {
    font-size: 2.2rem;
  }

  .contact-item {
    padding: 20px;
  }

  .job-card {
    padding: 24px 20px;
  }

  .promo-banner {
    padding: 32px 24px;
  }

  .page-hero {
    padding-top: 130px;
    padding-bottom: 60px;
  }

  .footer {
    padding: 40px 0 24px;
  }

  .qr-code {
    width: 160px;
    height: 160px;
  }

  .home-story {
    padding: 24px 16px;
    gap: 24px;
  }

  .home-story-text h2 {
    font-size: 1.4rem;
  }

  .home-stats {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 15px;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .home-story-images {
    order: -1;
  }
}

@media (max-width: 768px) {
  .logo {
    gap: 6px;
  }

  .logo span {
    font-size: 0.78rem;
  }

  .menu-toggle {
    display: none !important;
  }

  .nav-menu {
    display: none !important;
  }

  body {
    padding-bottom: 68px;
  }

  .footer {
    padding-bottom: 80px;
  }

  .mobile-tabbar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(8, 8, 16, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .tabbar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    color: #b0bed0;
    font-size: 0.70rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
    padding: 6px 0;
    -webkit-tap-highlight-color: transparent;
  }

  .tabbar-item:active {
    opacity: 0.7;
  }

  .tabbar-item svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  .tabbar-item.active {
    color: var(--sapphire-primary);
  }
}

@media (min-width: 769px) {
  .mobile-tabbar {
    display: none;
  }
}

@media print {
  body {
    background: #fff;
    color: #000;
  }

  .header,
  .footer,
  .menu-toggle {
    display: none;
  }

  h1, h2, h3 {
    color: #000;
    -webkit-text-fill-color: #000;
  }

  .card,
  .feature-card,
  .pricing-card,
  .job-card {
    border: 1px solid #ddd;
    box-shadow: none;
    page-break-inside: avoid;
  }
}

/* ============================================
   Recruitment Page
   ============================================ */
.recruit-hero {
  min-height: 42dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 48px;
}
.recruit-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: saturate(0.7) brightness(0.6);
}
.recruit-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,16,0.7) 0%, rgba(8,8,16,0.4) 40%, rgba(8,8,16,0.95) 100%);
}
.recruit-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}
.recruit-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.recruit-hero-left h1 {
  margin-bottom: 0;
  background: linear-gradient(180deg, #fff 0%, #6b8fc5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
}
.recruit-hero-right p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 28px;
}
.recruit-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 1.1rem;
  color: var(--sapphire-primary);
  margin-bottom: 24px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.recruit-hero-eyebrow .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--sapphire-primary);
  border-radius: 50%;
  animation: pulse-gold 2s infinite;
}
.recruit-hero h1 {
  margin-bottom: 0;
  background: linear-gradient(180deg, #fff 0%, #6b8fc5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
}
.recruit-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.recruit-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .recruit-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .recruit-hero-right p { margin-bottom: 20px; }
  .recruit-hero-actions { flex-direction: column; }
}

/* Culture Split Section */
.culture-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.culture-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.culture-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.culture-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--border-gold);
  border-radius: 20px;
  opacity: 0.2;
  pointer-events: none;
}
.culture-visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px 20px;
  background: rgba(8, 8, 16, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  color: var(--sapphire-primary);
  font-size: 0.88rem;
  font-weight: 600;
}
.culture-text h2 { margin-bottom: 20px; }
.culture-text p { font-size: 1rem; line-height: 1.9; margin-bottom: 16px; }
.culture-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.culture-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}
.culture-perk:hover { border-color: var(--border-gold); }
.culture-perk-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.culture-perk-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.4; }
.culture-perk-text strong { display: block; color: var(--text-primary); font-size: 0.95rem; margin-bottom: 2px; }

/* Job Cards */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.job-card-premium {
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  padding: 24px 24px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.job-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--sapphire-gradient);
  border-radius: 0 2px 2px 0;
}
.job-card-premium:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(14, 165, 233, 0.06);
}
.job-card-premium.featured {
  border-color: var(--border-gold);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14, 165, 233, 0.05) 100%);
}
.job-card-premium.featured::before { width: 5px; }
.job-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.job-card-header h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 8px; }
.job-salary-display {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sapphire-primary);
  white-space: nowrap;
}
.job-salary-display span { font-size: 0.55em; color: var(--text-muted); font-weight: 400; }
.job-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.job-tag-item {
  padding: 5px 14px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--sapphire-primary);
  font-weight: 500;
}
.job-desc-group { margin-bottom: 16px; }
.job-desc-group h4 {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.job-desc-list { padding: 0; margin: 0; list-style: none; }
.job-desc-list li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.job-desc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--sapphire-primary);
  border-radius: 50%;
  opacity: 0.6;
}

/* Benefits Bento */
.benefits-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-tile {
  padding: 32px 28px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.benefit-tile:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.benefit-tile-icon {
  width: 52px;
  height: 52px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.benefit-tile h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text-primary); }
.benefit-tile p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* CTA Premium */
.recruit-cta {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14, 165, 233, 0.08) 50%, var(--bg-card) 100%);
  border: 1px solid var(--border-gold);
}
.recruit-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.recruit-cta h2 { margin-bottom: 16px; position: relative; }
.recruit-cta p { max-width: 500px; margin: 0 auto 32px; font-size: 1.05rem; position: relative; }
.recruit-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.recruit-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; position: relative; }
.recruit-cta-text { flex: 1; text-align: left; }
.recruit-cta-qr { display: flex; flex-direction: column; align-items: center; gap: 12px; flex-shrink: 0; }
.recruit-qr-wrap {
  width: 180px;
  height: 180px;
  padding: 10px;
  background: #fff;
  border-radius: 14px;
  border: 2px solid var(--border-gold);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.15);
}
.recruit-qr-wrap img { width: 100%; height: 100%; object-fit: contain; display: block; }
.recruit-qr-label { font-size: 0.88rem; color: var(--sapphire-primary); font-weight: 600; letter-spacing: 0.04em; }

/* Recruitment Responsive */
@media (max-width: 992px) {
  .culture-split { grid-template-columns: 1fr; gap: 40px; }
  .culture-visual { order: -1; }
  .jobs-grid { grid-template-columns: 1fr 1fr; }
  .benefits-bento { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .recruit-hero { min-height: 36dvh; padding-top: calc(var(--header-height) + 24px); padding-bottom: 32px; }
  .recruit-hero-eyebrow { font-size: 0.75rem; padding: 6px 14px; }
  .culture-perks { grid-template-columns: 1fr; }
  .benefits-bento { grid-template-columns: 1fr; }
  .recruit-cta { padding: 48px 24px; }
  .recruit-cta-inner { flex-direction: column; gap: 32px; }
  .recruit-cta-text { text-align: center; }
  .job-card-premium { padding: 28px 24px; }
  .jobs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .recruit-hero-actions { flex-direction: column; }
  .recruit-hero-actions .btn { width: 100%; }
}

/* ============================================
   Contact Page
   ============================================ */
.page-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: end;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 142px 0 56px;
}
.page-hero > div { max-width: 860px; margin: 0 auto; text-align: center; }
.page-hero .eyebrow { margin: 0 0 14px; color: var(--sapphire-primary); font-size: .82rem; font-weight: 950; }
.page-hero h1 { margin: 0; font-size: clamp(2.1rem, 4.8vw, 4.5rem); line-height: 1.05; letter-spacing: 0; text-align: center; }
.page-hero > div > p { max-width: 720px; margin: 10px 0 0; font-size: 1.05rem; color: var(--text-secondary); }
.page-hero > div > p .hl-address { color: #fff; font-size: 1.5em; font-weight: 800; }
.page-hero > div > p .hl-phone { color: #38bdf8; font-size: 1.5em; font-weight: 800; }
.hero-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(14, 165, 233, .14), transparent 48%), rgba(255, 255, 255, .035);
}
.hero-panel__item { display: grid; gap: 3px; padding-bottom: 14px; border-bottom: 1px solid var(--border-light); }
.hero-panel__item:last-child { padding-bottom: 0; border-bottom: 0; }
.hero-panel__item span { color: var(--text-muted); font-size: .78rem; font-weight: 950; }
.hero-panel__item strong { font-size: 1.08rem; line-height: 1.4; }
.split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
}
.split-card__text { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.split-card__text h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.15; letter-spacing: 0.01em; }
.split-card__text p { margin: 12px 0 0; color: var(--text-secondary); }
.split-card__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) {
  .split-card { grid-template-columns: 1fr; }
  .split-card__text { padding: 24px 20px; }
}
.content-band { width: min(1200px, calc(100% - 48px)); margin: 0 auto; padding: 0 0 36px; }
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
}
.contact-info-card { background: var(--bg-card); padding: 28px; }
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text-primary); }
.contact-info-card p { font-size: 0.9rem; line-height: 1.75; color: var(--text-secondary); }
.contact-info-card--split { display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.info-split-item span { display: block; font-size: 0.78rem; color: var(--text-muted); font-weight: 600; margin-bottom: 4px; }
.info-split-item strong { font-size: 1.05rem; color: var(--text-primary); }
.info-split-item a { color: var(--sapphire-primary); }
@media (max-width: 768px) { .contact-info-grid { grid-template-columns: 1fr; } }
.band-head { margin-bottom: 18px; text-align: left; }
.band-head .eyebrow { margin: 0 0 14px; color: var(--sapphire-primary); font-size: .82rem; font-weight: 950; }
.band-head h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.15; letter-spacing: 0.01em; }
.band-head p { max-width: 720px; margin: 10px 0 0; color: var(--text-secondary); }
.info-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
}
.info-list article {
  min-height: 224px;
  padding: 28px;
  transition: background-color .18s ease;
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
}
.info-list article::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: var(--border-light);
}
.info-list article:last-child::after { display: none; }
.info-list h3 { margin: 0 0 9px; font-size: 1.32rem; line-height: 1.35; }
.info-list p { margin: 0; color: var(--text-secondary); }
@media (hover: hover) { .info-list article:hover { background: var(--bg-card-hover); } }
@media (max-width: 980px) {
  .page-hero, .split-section, .info-list { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .page-hero { grid-template-columns: 1fr; gap: 18px; padding: 118px 0 42px; width: calc(100% - 28px); }
  .page-hero h1, .band-head h2, .split-section h2 { font-size: clamp(1.95rem, 8vw, 2.65rem); overflow-wrap: anywhere; }
  .hero-panel { padding: 18px; }
  .split-section { grid-template-columns: 1fr; padding: 10px 0 54px; width: calc(100% - 28px); }
  .split-section > div:first-child { padding: 22px 18px; }
  .content-band { padding: 52px 0 44px; width: calc(100% - 28px); }
  .info-list article { min-height: 0; padding: 22px 18px; }
}

/* ============================================
   News Page
   ============================================ */
.news-page { padding: 100px 0 60px; }
.news-hero { text-align: center; padding: 48px 0 40px; border-bottom: 1px solid var(--border-subtle); margin-bottom: 48px; }
.news-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.news-hero p { font-size: 1.05rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.news-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  transition: var(--transition-normal);
}
.news-info-card:hover { border-color: var(--border-gold); transform: translateY(-3px); box-shadow: 0 8px 40px rgba(14, 165, 233, 0.12); }
.news-info-card__icon { font-size: 1.6rem; margin-bottom: 4px; }
.news-info-card strong { font-size: 0.9rem; color: var(--text-muted); letter-spacing: 0.06em; }
.news-info-card span { font-size: 1.15rem; font-weight: 700; color: #fff; line-height: 1.4; }
.news-info-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 24px; }

/* ===== 资讯卡片 - 深色奢华风格 ===== */
.news-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(20, 28, 46, 0.9) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.news-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), transparent 40%, transparent 60%, rgba(212, 175, 55, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.news-card:hover {
  border-color: var(--border-sapphire);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(14, 165, 233, 0.12), 0 4px 8px rgba(212, 175, 55, 0.06);
}
.news-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  order: 1;
}
.news-card__title a {
  color: inherit;
  text-decoration: none;
  background: linear-gradient(to right, var(--sapphire-light), var(--sapphire-light)) left bottom / 0 1px no-repeat;
  transition: background-size var(--transition-normal);
  padding-bottom: 2px;
}
.news-card__title a:hover {
  color: var(--sapphire-light);
  background-size: 100% 1px;
}
.news-card__date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  order: 2;
  letter-spacing: 0.03em;
}
.news-card__date::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}
.news-card__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  order: 3;
}
.news-card__keyword {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: rgba(14, 165, 233, 0.06);
  color: var(--sapphire-light);
  border: 1px solid rgba(14, 165, 233, 0.12);
  transition: all var(--transition-fast);
  cursor: default;
}
.news-card__keyword:hover {
  background: rgba(14, 165, 233, 0.15);
  border-color: var(--border-sapphire);
  color: var(--text-primary);
}
.news-card__desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-secondary);
  flex: 1;
  order: 4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 0.01em;
}
.news-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  transition: all var(--transition-fast);
  margin-top: 20px;
  order: 5;
  align-self: flex-start;
  letter-spacing: 0.02em;
}
.news-card__more::after {
  content: '→';
  transition: transform var(--transition-fast);
}
.news-card__more:hover {
  color: var(--sapphire-light);
  gap: 12px;
}
.news-card__more:hover::after {
  transform: translateX(4px);
}

/* Pagination */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.news-pagination__btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
}
.news-pagination__btn:hover { border-color: var(--border-sapphire); color: var(--sapphire-light); }
.news-pagination__btn.active {
  background: var(--sapphire-primary);
  border-color: var(--sapphire-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.3);
}
.news-pagination__btn--nav {
  width: auto;
  padding: 0 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.news-pagination__btn--nav:hover { color: var(--sapphire-light); }
.news-pagination__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.news-pagination__info {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 12px;
}
.news-cta {
  text-align: center;
  padding: 48px 24px;
  margin-top: 60px;
  background: var(--bg-secondary);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
}
.news-cta h2 { margin-bottom: 10px; }
.news-cta p { max-width: 500px; margin: 0 auto 24px; color: var(--text-secondary); }
.news-cta .btn-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 992px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-hero { padding: 24px 0 28px; margin-bottom: 28px; }
  .news-pagination { gap: 4px; }
  .news-pagination__btn { width: 36px; height: 36px; border-radius: 8px; font-size: 0.8rem; }
  .news-pagination__btn--nav { width: auto; padding: 0 12px; }
  .news-pagination__info { flex-basis: 100%; text-align: center; margin: 4px 0 0; }
}

/* ============================================
   Sitemap Page
   ============================================ */
.sitemap-page { padding-top: 120px; padding-bottom: 60px; max-width: 900px; margin: 0 auto; }
.sitemap-page .eyebrow { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sapphire-primary); margin: 0 0 10px; }
.sitemap-page h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.sitemap-page > p { color: var(--text-secondary); margin-bottom: 8px; }
.link-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 36px; }
.link-grid a {
  display: block;
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition-normal);
  text-align: center;
}
.link-grid a:nth-child(1), .link-grid a:nth-child(2), .link-grid a:nth-child(3) { grid-column: span 2; }
.link-grid a:nth-child(4), .link-grid a:nth-child(5) { grid-column: span 3; }
.link-grid a:hover { border-color: var(--border-gold); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(14, 165, 233, 0.1); }
.link-grid a strong { display: block; font-size: 1.05rem; color: var(--text-primary); margin-bottom: 4px; }
.link-grid a span { font-size: 0.82rem; color: var(--text-muted); }
@media (max-width: 640px) {
  .link-grid { grid-template-columns: 1fr; }
  .link-grid a:nth-child(4), .link-grid a:nth-child(5) { grid-column: 1; }
}

/* ============================================
   Article Pages (rp- components)
   ============================================ */
.rp-page { position: relative; z-index: 1; }

/* Hero */
.rp-hero {
  position: relative;
  padding: clamp(80px, 8vh, 110px) 20px 32px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.rp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(14, 165, 233,.04) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(14, 165, 233,.03) 0%, transparent 50%);
}
.rp-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--border-gold);
  color: var(--sapphire-primary);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.rp-hero__chip svg { width: 14px; height: 14px; flex-shrink: 0; }
.rp-hero__chip.route { color: #38bdf8; }
.rp-hero__chip.room { color: #34d399; }
.rp-hero__chip.park { color: #e8c95a; }
.rp-hero__chip.contact { color: #f87171; }
.rp-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-primary);
  letter-spacing: .02em;
  margin: 0 auto 10px;
  max-width: 600px;
  position: relative;
  z-index: 1;
}
.rp-hero__title em { font-style: normal; color: var(--sapphire-primary); }
.rp-hero__sub {
  font-size: max(.95rem, 16px);
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto 10px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.rp-hero__date {
  font-size: .8rem;
  color: var(--sapphire-primary);
  letter-spacing: .06em;
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
}
.rp-hero__stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.rp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  min-height: 88px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}
.rp-stat__val {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}
.rp-stat__unit { font-size: .42em; font-weight: 400; color: var(--text-muted); }
.rp-stat__tag { font-size: .72rem; color: var(--text-muted); margin-top: 6px; letter-spacing: .04em; }

/* Body */
.rp-body-wrap { max-width: 640px; margin: 0 auto; padding: 0 16px 40px; }
.rp-cover { margin: 0 0 24px; }
.rp-cover img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; border-radius: 8px; }
.rp-cover__date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0,0,0,.65);
  color: var(--sapphire-primary);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.5;
}
@media (min-width: 640px) {
  .rp-cover { margin: 0 0 32px; }
  .rp-cover img { border: 1px solid var(--border-subtle); }
}

/* Prose */
.rp-prose {
  font-size: max(.98rem, 16px);
  line-height: 1.75;
  color: var(--text-secondary);
  overflow-wrap: anywhere;
}
.rp-prose p { margin-bottom: 14px; }
.rp-prose > p:first-child { font-size: max(1.05rem, 16px); color: #d4d1cb; line-height: 1.75; margin-bottom: 24px; }
.rp-prose :where(h2, h3, h4) {
  margin: 28px 0 12px;
  color: var(--text-primary);
  line-height: 1.4;
}
.rp-prose :where(ul, ol) {
  list-style-position: outside;
  padding-left: 1.4em;
  margin: 0 0 16px;
}
.rp-prose ul { list-style-type: disc; }
.rp-prose ol { list-style-type: decimal; }
.rp-prose li { margin: 6px 0; }
.rp-prose a {
  color: var(--sapphire-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.rp-prose strong,
.rp-prose b {
  color: var(--text-primary);
}
.rp-prose img,
.rp-prose video,
.rp-prose iframe {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 18px auto;
}
.rp-prose iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
.rp-prose table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}
.rp-prose th,
.rp-prose td {
  border: 1px solid var(--border-subtle);
  padding: 10px 12px;
}
.rp-prose pre {
  max-width: 100%;
  overflow-x: auto;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}
.rp-prose code {
  white-space: pre-wrap;
  word-break: break-word;
}

/* Room cards */
.rp-room { margin: 24px 0; }
.rp-room__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.rp-room__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
  color: var(--sapphire-primary);
}
.rp-room__icon svg { width: 22px; height: 22px; }
.rp-room__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: .03em;
}
.rp-room__tag { font-size: .7rem; color: var(--text-muted); letter-spacing: .08em; }
.rp-room__desc {
  font-size: max(.93rem, 15px);
  line-height: 1.7;
  color: var(--text-secondary);
  padding: 14px 16px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

/* Divider */
.rp-rule { height: 1px; background: var(--border-subtle); margin: 24px 0; border: none; }

/* Feature list */
.rp-features { margin: 24px 0; padding: 20px 16px; border: 1px solid var(--border-gold); background: rgba(14, 165, 233,.04); }
.rp-features__title {
  font-size: .7rem;
  color: var(--text-muted);
  letter-spacing: .12em;
  text-align: center;
  margin-bottom: 14px;
}
.rp-features__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.rp-features__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: max(.9rem, 15px);
  color: var(--text-secondary);
  line-height: 1.5;
}
.rp-features__list li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--sapphire-primary); }

/* Method cards */
.rp-method { margin: 24px 0; }
.rp-method__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.rp-method__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
  color: var(--sapphire-primary);
}
.rp-method__icon svg { width: 22px; height: 22px; }
.rp-method__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: .03em;
}
.rp-method__tag { font-size: .7rem; color: var(--text-muted); letter-spacing: .08em; }
.rp-method__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border-subtle);
}
.rp-method__steps li {
  background: var(--bg-primary);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: max(.93rem, 15px);
  line-height: 1.6;
  color: var(--text-secondary);
}
.rp-method__step-num {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .72rem;
  font-weight: 700;
  color: var(--sapphire-primary);
  border: 1px solid var(--border-gold);
  margin-top: 1px;
}

/* CTA card */
.rp-cta { margin: 36px 0; padding: 24px 20px; text-align: center; border: 1px solid var(--border-gold); background: rgba(14, 165, 233,.04); }
.rp-cta__icon { width: 44px; height: 44px; margin: 0 auto 12px; color: var(--sapphire-primary); }
.rp-cta__text { font-family: var(--font-display); font-size: max(1.05rem, 16px); color: #d4d1cb; line-height: 1.6; margin-bottom: 16px; }
.rp-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 200px;
  min-height: 48px;
  padding: 12px 28px;
  background: var(--sapphire-gradient);
  color: var(--bg-primary);
  font-size: max(.95rem, 16px);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .03em;
  border: none;
  cursor: pointer;
  transition: opacity .2s ease, box-shadow .2s ease;
}
.rp-cta__btn:hover { opacity: .9; box-shadow: 0 0 24px rgba(14, 165, 233,.25); }
.rp-cta__btn:focus-visible { outline: 2px solid var(--sapphire-primary); outline-offset: 2px; }
.rp-cta__btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Related */
.rp-related { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border-subtle); }
.rp-related__label { font-size: .72rem; color: var(--text-muted); letter-spacing: .12em; text-align: center; margin-bottom: 16px; }
.rp-related__list { display: flex; flex-direction: column; gap: 1px; background: var(--border-subtle); }
.rp-related__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 14px 16px;
  background: var(--bg-primary);
  font-size: max(.93rem, 16px);
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.rp-related__list a:hover, .rp-related__list a:active { color: var(--sapphire-light); background: var(--bg-card); }
.rp-related__list a:focus-visible { outline: 2px solid var(--sapphire-primary); outline-offset: -2px; }
.rp-related__list a svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--text-muted); transition: color .2s ease; }
.rp-related__list a:hover svg { color: var(--sapphire-primary); }

/* Pager */
.rp-pager { display: flex; gap: 12px; max-width: 640px; margin: 0 auto; padding: 0 16px 40px; }
.rp-pager a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  font-size: max(.9rem, 15px);
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all .2s ease;
  letter-spacing: .02em;
}
.rp-pager a:hover, .rp-pager a:active { border-color: var(--border-gold); color: var(--sapphire-light); background: rgba(14, 165, 233,.06); }
.rp-pager a:focus-visible { outline: 2px solid var(--sapphire-primary); outline-offset: 2px; }
.rp-pager a:last-child { color: var(--sapphire-primary); border-color: var(--border-gold); }

/* Scroll reveal */
.rp-rev { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.rp-rev.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .rp-rev { opacity: 1; transform: none; transition: none; } }

/* Article Desktop */
@media (min-width: 1024px) {
  .rp-body-wrap { max-width: 680px; padding: 0 0 60px; }
  .rp-pager { max-width: 680px; padding: 0 0 60px; }
  .rp-hero__stats { gap: 16px; }
}

.route-hero-title { color: #fff; }
.route-hero-title em { color: #fff; }

.env-hero-title { color: #fff; }
.env-hero-title em { color: #fff; }

.parking-hero-title { color: #fff; }
.parking-hero-title em { color: #fff; }

.contact-hero-title { color: #fff; }
.contact-hero-title em { color: #fff; }
