:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-alt: #f1f4f9;
  --text: #1b2430;
  --muted: #64748b;
  --primary: #2b3037;
  --primary-dark: #171a20;
  --line: #dbe3ee;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Noto Sans TC', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 227, 238, 0.75);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
}
.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #616975);
  color: white;
  box-shadow: var(--shadow);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 500;
}
.site-nav a:hover,
.site-nav a.active { color: var(--primary); }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  padding: 10px 12px;
}
.hero { padding: 72px 0 44px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}
.eyebrow {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: .04em;
  margin: 0 0 10px;
}
.hero h1,
.section-head h2,
.contact-section h2,
.page-hero h1 {
  margin: 0 0 16px;
  line-height: 1.18;
}
.hero h1,
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.6rem); }
.hero-text,
.section-head p,
.contact-text,
.footer-text,
.page-hero p,
.page-summary {
  color: var(--muted);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary {
  background: var(--surface);
  border: 1px solid var(--line);
}
.btn-block { width: 100%; }
.hero-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.hero-points li,
.notice-box li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}
.hero-points li::before,
.notice-box li::before {
  content: '✓';
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(15, 98, 254, 0.1);
  color: var(--primary);
  font-weight: 800;
}
.hero-card,
.contact-card,
.notice-box,
.service-card,
.feature-card,
.review-card,
.stat-card,
.timeline-item,
.faq-item,
.page-hero-panel {
  background: var(--surface);
  border: 1px solid rgba(219, 227, 238, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-panel,
.page-hero-panel { padding: 28px; }
.panel-label {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 700;
}
.featured-service-list { display: grid; gap: 14px; }
.featured-service-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--surface-alt);
}
.featured-service-item strong { display: block; }
.featured-service-item span { color: var(--muted); font-size: .95rem; }
.section { padding: 36px 0 72px; }
.section-alt { background: linear-gradient(180deg, rgba(241, 244, 249, 0.75), rgba(241, 244, 249, 0.3)); }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}
.section-head-left {
  margin-left: 0;
  text-align: left;
}
.stats-grid,
.card-grid,
.feature-grid,
.review-grid,
.page-grid {
  display: grid;
  gap: 20px;
}
.stats-grid { grid-template-columns: repeat(4, 1fr); }
.card-grid,
.feature-grid,
.review-grid,
.page-grid { grid-template-columns: repeat(3, 1fr); }
.stat-card,
.service-card,
.feature-card,
.review-card { padding: 24px; }
.stat-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-card p,
.service-card p,
.feature-card p,
.review-card p,
.timeline-item p,
.faq-answer { margin: 0; color: var(--muted); }
.service-card h3,
.feature-card h3,
.review-card h3,
.stat-card h3,
.timeline-item h3,
.faq-question,
.notice-box h3,
.page-hero-panel h3,
.contact-card h3 {
  margin: 0 0 10px;
}
.service-price {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  color: var(--primary);
}
.timeline {
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}
.timeline-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 22px;
  align-items: start;
}
.step-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(15, 98, 254, 0.1);
  color: var(--primary);
  font-weight: 800;
}
.review-card .author {
  margin-top: 16px;
  font-weight: 700;
}
.faq-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
  align-items: start;
}
.faq-list,
.contact-actions {
  display: grid;
  gap: 18px;
}
.faq-item {
  padding: 22px;
}
.faq-question {
  font-weight: 800;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 24px;
  align-items: start;
}
.contact-card,
.notice-box { padding: 24px; }
.notice-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.site-footer {
  padding: 24px 0 36px;
  border-top: 1px solid rgba(219, 227, 238, 0.8);
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand {
  margin: 0 0 6px;
  font-weight: 800;
}
.footer-text,
.footer-copy {
  margin: 0;
  color: var(--muted);
}
.page-hero {
  padding: 60px 0 24px;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
}
.breadcrumb {
  display: inline-flex;
  gap: 8px;
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.breadcrumb a:hover { color: var(--primary); }
.page-summary {
  max-width: 720px;
  margin: 14px 0 0;
}
@media (max-width: 980px) {
  .hero-grid,
  .page-hero-grid,
  .contact-grid,
  .faq-wrap,
  .stats-grid,
  .card-grid,
  .feature-grid,
  .review-grid,
  .page-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-wrap,
  .contact-grid,
  .hero-grid,
  .page-hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .stats-grid,
  .card-grid,
  .feature-grid,
  .review-grid,
  .page-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; }
  .hero,
  .page-hero { padding-top: 42px; }
}


.compact-points { margin-top: 0; }
.category-card { height: 100%; }
.mini-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.brand-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight: 700;
}
.cta-banner {
  background: linear-gradient(135deg, #2b3037, #616975);
  color: #fff;
  border-radius: 28px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta-banner .eyebrow,
.cta-banner p,
.cta-banner h2 { color: #fff; }
.cta-banner h2 { margin: 0 0 12px; }
.cta-banner .btn-secondary {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.single-column-faq {
  grid-template-columns: 1fr;
}
@media (max-width: 980px) {
  .cta-banner { grid-template-columns: 1fr; }
}


.contact-grid-wide {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}
.compact-section-head {
  margin-bottom: 20px;
}
.store-region {
  margin-top: 0;
}
.store-region:first-child {
  margin-top: 0;
}
.store-region-head {
  margin-bottom: 18px;
}
.store-region-head .eyebrow {
  margin-bottom: 6px;
}
.store-region-head h3 {
  margin: 0;
  font-size: 1.5rem;
}
.store-regions {
  display: grid;
  gap: 36px;
}
.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.store-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid rgba(219, 227, 238, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: .2s ease;
}
.store-card:hover {
  transform: translateY(-3px);
}
.store-map-thumb {
  position: relative;
  display: block;
  min-height: 180px;
  background:
    linear-gradient(135deg, rgba(15, 98, 254, 0.10), rgba(78, 163, 255, 0.18)),
    linear-gradient(90deg, rgba(255,255,255,0.65) 0 4%, transparent 4% 100%),
    linear-gradient(rgba(255,255,255,0.65) 0 4%, transparent 4% 100%);
  background-size: auto, 56px 56px, 56px 56px;
  background-position: center;
}
.store-map-thumb::before,
.store-map-thumb::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
}
.store-map-thumb::before {
  width: 120px;
  height: 18px;
  left: 18px;
  top: 34px;
  transform: rotate(-18deg);
}
.store-map-thumb::after {
  width: 160px;
  height: 18px;
  right: 12px;
  bottom: 38px;
  transform: rotate(22deg);
}
.store-map-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--primary);
  font-size: .85rem;
  font-weight: 700;
}
.store-map-pin {
  position: absolute;
  right: 22px;
  bottom: 18px;
  font-size: 2rem;
}
.store-card-body {
  padding: 26px 26px 28px;
}
.store-card-body h3 {
  margin: 0 0 18px;
  font-size: 1.25rem;
  line-height: 1.35;
}
.store-meta {
  margin: 0 0 14px;
  color: var(--muted);
  display: grid;
  gap: 6px;
  line-height: 1.65;
}
.store-meta strong {
  color: var(--text);
  font-size: .95rem;
}
.store-meta span {
  display: block;
}
.store-card-actions {
  margin-top: auto;
  padding-top: 10px;
}
.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}
.store-link.is-disabled {
  background: var(--surface-alt);
  color: var(--muted);
}

@media (max-width: 900px) {
  .store-grid,
  .contact-grid-wide {
    grid-template-columns: 1fr;
  }
  .store-regions {
    gap: 28px;
  }
}



.process-icon-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.process-step-card {
  background: var(--surface);
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px;
  height: 100%;
}
.process-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.process-step-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 98, 254, 0.08);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.process-step-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15, 98, 254, 0.12), rgba(78, 163, 255, 0.18));
  font-size: 1.8rem;
}
.process-step-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}
.process-step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.process-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.process-support-card {
  height: 100%;
}
.process-check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.process-check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.75;
}
.process-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}
.process-cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 1100px) {
  .process-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 980px) {
  .process-support-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .process-icon-grid {
    grid-template-columns: 1fr;
  }
  .process-cta-actions {
    justify-content: flex-start;
  }
}


.process-step-card {
  position: relative;
}
.process-step-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  font-size: 2.7rem;
  line-height: 1;
}
.process-step-arrow {
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
  z-index: 2;
}
@media (max-width: 1100px) {
  .process-step-arrow {
    right: 50%;
    top: auto;
    bottom: -24px;
    transform: translateX(50%) rotate(90deg);
  }
}
@media (max-width: 760px) {
  .process-step-arrow {
    right: 50%;
    top: auto;
    bottom: -24px;
    transform: translateX(50%) rotate(90deg);
  }
}


.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: start;
}
.about-story-card,
.about-milestone-card {
  background: var(--surface);
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 30px;
}
.about-story-content {
  display: grid;
  gap: 16px;
}
.about-story-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}
.about-milestones {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.about-milestone-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(15, 98, 254, 0.06);
}
.about-milestone-item strong {
  color: var(--primary);
  font-weight: 800;
}
.about-milestone-item span {
  color: var(--muted);
  line-height: 1.7;
}
.about-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.about-icon-card {
  background: var(--surface);
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 26px;
  height: 100%;
}
.about-card-icon {
  display: inline-flex;
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 18px;
}
.about-icon-card h3,
.about-care-item h3 {
  margin: 0 0 10px;
}
.about-icon-card p,
.about-care-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.about-value-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}
.about-care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.about-care-item {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(219, 227, 238, 0.8);
}
@media (max-width: 980px) {
  .about-story-grid,
  .about-value-grid {
    grid-template-columns: 1fr;
  }
  .about-icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .about-icon-grid,
  .about-care-grid {
    grid-template-columns: 1fr;
  }
  .about-milestone-item {
    grid-template-columns: 1fr;
  }
}


.faq-category-list {
  display: grid;
  gap: 24px;
}
.faq-category-card {
  background: var(--surface);
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
}
.faq-category-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.faq-category-icon {
  display: inline-flex;
  font-size: 2.2rem;
  line-height: 1;
}
.faq-category-head h3 {
  margin: 0;
  font-size: 1.35rem;
}
.faq-category-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.faq-category-items .faq-item {
  height: 100%;
  margin: 0;
}
.faq-extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.faq-extra-grid .notice-box,
.faq-extra-grid .contact-card {
  height: 100%;
}
@media (max-width: 980px) {
  .faq-category-items,
  .faq-extra-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .faq-category-card {
    padding: 22px;
  }
}


.review-slider-wrap {
  position: relative;
}
.review-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 18px;
  scrollbar-width: none;
}
.review-slider::-webkit-scrollbar {
  display: none;
}
.review-slide-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-stars {
  color: #f59e0b;
  letter-spacing: 4px;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.review-text {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.9;
}
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.review-author {
  font-weight: 800;
}
.review-service {
  color: var(--primary);
  background: rgba(15, 98, 254, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: .9rem;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(219, 227, 238, 0.95);
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--shadow);
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.slider-prev {
  left: -18px;
}
.slider-next {
  right: -18px;
}
.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}
.review-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 98, 254, 0.2);
  cursor: pointer;
  transition: .2s ease;
}
.review-dot.active {
  width: 28px;
  background: var(--primary);
}
.review-highlight-card {
  height: 100%;
}
.review-highlight-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 14px;
}
@media (max-width: 980px) {
  .review-slide-card {
    flex-basis: calc((100% - 20px) / 2);
  }
}
@media (max-width: 760px) {
  .review-slide-card {
    flex-basis: 88%;
  }
  .slider-prev {
    left: 4px;
  }
  .slider-next {
    right: 4px;
  }
  .slider-btn {
    width: 40px;
    height: 40px;
  }
}


.review-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.review-highlight-card {
  min-height: 220px;
}
@media (max-width: 1100px) {
  .review-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .review-highlights-grid {
    grid-template-columns: 1fr;
  }
  .review-highlight-card {
    min-height: auto;
  }
}


/* ===== Blueprint Engineering Theme ===== */
:root{
  --primary:#2b3037;
  --primary-dark:#102c58;
  --secondary:#eef4ff;
  --surface:#ffffff;
  --surface-soft:rgba(255,255,255,.92);
  --surface-glass:rgba(255,255,255,.86);
  --text:#172033;
  --muted:#58657c;
  --line:rgba(72, 110, 170, .22);
  --line-strong:rgba(72, 110, 170, .35);
  --shadow:0 14px 34px rgba(19, 45, 92, .10);
  --radius-lg:24px;
}

html{
  background:
    linear-gradient(rgba(255,255,255,.74), rgba(255,255,255,.74)),
    repeating-linear-gradient(
      0deg,
      rgba(41,45,52,.05) 0px,
      rgba(41,45,52,.05) 1px,
      transparent 1px,
      transparent 34px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(41,45,52,.05) 0px,
      rgba(41,45,52,.05) 1px,
      transparent 1px,
      transparent 34px
    ),
    linear-gradient(180deg,#edf3ff 0%,#f7faff 45%,#ffffff 100%);
}

body{
  color:var(--text);
  background:
    radial-gradient(circle at top right, rgba(38,98,185,.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(38,98,185,.06), transparent 28%);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(125deg, transparent 0 64%, rgba(41,45,52,.05) 64% 65%, transparent 65% 100%),
    linear-gradient(55deg, transparent 0 20%, rgba(41,45,52,.035) 20% 21%, transparent 21% 100%);
  opacity:.8;
  z-index:-1;
}

.container{
  position:relative;
}

.section-head h2,
.page-hero h1,
.hero h1,
.cta-banner h2{
  letter-spacing:.01em;
}

.eyebrow{
  color:var(--primary);
  font-weight:800;
  letter-spacing:.12em;
}

.section-head h2::before,
.page-hero h1::before,
.hero h1::before{
  content:"//";
  color:rgba(41,45,52,.35);
  margin-right:10px;
  font-weight:800;
}

.site-header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(255,255,255,.74);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(88,94,104,.16);
}

.logo-mark{
  background:linear-gradient(180deg,var(--primary),var(--primary-dark));
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.18);
}

.site-nav a{
  border-radius:999px;
}

.site-nav a.active,
.site-nav a:hover{
  background:rgba(41,45,52,.08);
  color:var(--primary);
}

.hero,
.page-hero{
  position:relative;
}

.hero::before,
.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(41,45,52,.06) 8% 8.25%, transparent 8.25% 100%),
    linear-gradient(0deg, transparent 0 82%, rgba(41,45,52,.06) 82% 82.25%, transparent 82.25% 100%);
  opacity:.8;
}

.hero-panel,
.page-hero-panel,
.contact-card,
.notice-box,
.feature-card,
.service-card,
.review-card,
.review-slide-card,
.store-card,
.about-icon-card,
.about-story-card,
.about-milestone-card,
.faq-category-card,
.process-step-card{
  background:var(--surface-glass);
  backdrop-filter:blur(8px);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.hero-panel::after,
.page-hero-panel::after,
.contact-card::after,
.notice-box::after,
.feature-card::after,
.service-card::after,
.review-slide-card::after,
.store-card::after,
.about-icon-card::after,
.faq-category-card::after,
.process-step-card::after{
  content:"";
  position:absolute;
  top:14px;
  right:14px;
  width:54px;
  height:54px;
  border-top:1px solid rgba(41,45,52,.18);
  border-right:1px solid rgba(41,45,52,.18);
  opacity:.9;
}

.hero-panel::before,
.page-hero-panel::before,
.contact-card::before,
.notice-box::before,
.feature-card::before,
.service-card::before,
.review-slide-card::before,
.store-card::before,
.about-icon-card::before,
.faq-category-card::before,
.process-step-card::before{
  content:"";
  position:absolute;
  left:14px;
  bottom:14px;
  width:66px;
  height:18px;
  border-left:1px solid rgba(41,45,52,.14);
  border-bottom:1px solid rgba(41,45,52,.14);
}

.btn-primary{
  background:linear-gradient(180deg,var(--primary),var(--primary-dark));
  border:1px solid rgba(16,44,88,.35);
  box-shadow:0 10px 18px rgba(16,44,88,.18);
}

.btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 24px rgba(16,44,88,.22);
}

.btn-secondary{
  background:rgba(255,255,255,.78);
  color:var(--primary);
  border:1px solid rgba(41,45,52,.24);
}

.btn-secondary:hover{
  background:#fff;
  border-color:rgba(41,45,52,.34);
}

.cta-banner{
  background:
    linear-gradient(145deg, rgba(19,52,103,.96), rgba(25,73,142,.92)),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.08) 0px,
      rgba(255,255,255,.08) 1px,
      transparent 1px,
      transparent 26px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.08) 0px,
      rgba(255,255,255,.08) 1px,
      transparent 1px,
      transparent 26px
    );
  border:1px solid rgba(255,255,255,.14);
  position:relative;
  overflow:hidden;
}

.cta-banner::after{
  content:"01";
  position:absolute;
  right:24px;
  top:16px;
  font-size:4rem;
  font-weight:800;
  color:rgba(255,255,255,.10);
  letter-spacing:.08em;
}

.service-card h3::before,
.feature-card h3::before,
.about-icon-card h3::before,
.faq-category-head h3::before,
.process-step-card h3::before,
.store-card-body h3::before{
  content:"→";
  color:rgba(41,45,52,.6);
  margin-right:8px;
  font-weight:800;
}

.process-step-badge,
.review-service,
.brand-tag{
  background:rgba(41,45,52,.08);
  border:1px solid rgba(41,45,52,.12);
  color:var(--primary);
}

.process-step-icon{
  color:var(--primary-dark);
  text-shadow:0 8px 18px rgba(41,45,52,.10);
}

.process-step-arrow{
  color:var(--primary-dark);
}

.review-stars{
  color:#2d6acf;
}

.slider-btn{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(41,45,52,.2);
}

.review-dot{
  background:rgba(41,45,52,.18);
}
.review-dot.active{
  background:var(--primary);
}

.store-map-thumb{
  background:
    linear-gradient(135deg, rgba(41,45,52,.10), rgba(54,116,200,.16)),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.48) 0px,
      rgba(255,255,255,.48) 1px,
      transparent 1px,
      transparent 34px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.48) 0px,
      rgba(255,255,255,.48) 1px,
      transparent 1px,
      transparent 34px
    );
}

.store-map-badge{
  background:rgba(255,255,255,.9);
  color:var(--primary-dark);
  border:1px solid rgba(41,45,52,.14);
}

.store-map-pin{
  filter:grayscale(.2);
}

.about-card-icon,
.review-highlight-icon,
.faq-category-icon{
  color:var(--primary);
  text-shadow:0 8px 18px rgba(41,45,52,.10);
}

.about-milestone-item strong,
.step-number,
.footer-brand{
  color:var(--primary);
}

.timeline-item,
.faq-item{
  border:1px solid var(--line);
  background:rgba(255,255,255,.82);
}

hr, .divider{
  border-color:var(--line);
}

/* subtle blueprint numbering */
.section[data-blueprint] .section-head h2::after{
  content:attr(data-blueprint);
  margin-left:12px;
  color:rgba(41,45,52,.18);
  font-weight:800;
}

@media (max-width:760px){
  .cta-banner::after{
    font-size:2.7rem;
  }
}


/* ===== Blueprint theme refinement v2 ===== */
html{
  background:
    linear-gradient(rgba(255,255,255,.66), rgba(255,255,255,.66)),
    repeating-linear-gradient(
      0deg,
      rgba(41,45,52,.095) 0px,
      rgba(41,45,52,.095) 1px,
      transparent 1px,
      transparent 32px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(41,45,52,.095) 0px,
      rgba(41,45,52,.095) 1px,
      transparent 1px,
      transparent 32px
    ),
    linear-gradient(180deg,#eaf2ff 0%,#f5f8ff 50%,#ffffff 100%);
}
body{
  counter-reset: sectioncount;
  background:
    radial-gradient(circle at 12% 14%, rgba(38,98,185,.08), transparent 18%),
    radial-gradient(circle at 86% 16%, rgba(38,98,185,.05), transparent 20%),
    radial-gradient(circle at 18% 82%, rgba(38,98,185,.05), transparent 18%),
    radial-gradient(circle at 82% 76%, rgba(38,98,185,.07), transparent 18%);
}
main > section{ counter-increment: sectioncount; }
body::before{
  background:
    linear-gradient(125deg, transparent 0 58%, rgba(41,45,52,.07) 58% 58.35%, transparent 58.35% 100%),
    linear-gradient(55deg, transparent 0 16%, rgba(41,45,52,.05) 16% 16.25%, transparent 16.25% 100%),
    linear-gradient(90deg, transparent 0 78%, rgba(41,45,52,.045) 78% 78.25%, transparent 78.25% 100%);
  opacity:.95;
}

.hero .eyebrow,
.page-hero .breadcrumb,
.section-head .eyebrow,
.compact-section-head .eyebrow{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  width:fit-content;
  padding:0 0 8px;
  border-bottom:1px solid rgba(41,45,52,.26);
  position:relative;
  letter-spacing:.22em;
  font-size:.74rem;
}
.hero .eyebrow::before,
.page-hero .breadcrumb::before,
.section-head .eyebrow::before,
.compact-section-head .eyebrow::before{
  content:"N° " counter(sectioncount, decimal-leading-zero);
  color:rgba(41,45,52,.74);
  font-weight:800;
  letter-spacing:.18em;
  font-size:.75rem;
}
.hero .eyebrow::after,
.page-hero .breadcrumb::after,
.section-head .eyebrow::after,
.compact-section-head .eyebrow::after{
  content:"";
  display:inline-block;
  width:58px;
  height:1px;
  background:rgba(41,45,52,.22);
  margin-left:4px;
}
.page-hero .breadcrumb a,
.page-hero .breadcrumb span{font-size:.76rem;}
.page-hero .breadcrumb span:first-of-type,
.page-hero .breadcrumb a{opacity:.95;}
.page-hero .breadcrumb span:nth-of-type(2){display:none;}
.page-hero .breadcrumb span:last-of-type{letter-spacing:.16em; text-transform:uppercase; color:rgba(41,45,52,.86);} 

.hero-panel,
.page-hero-panel,
.contact-card,
.notice-box,
.feature-card,
.service-card,
.review-card,
.review-slide-card,
.store-card,
.about-icon-card,
.about-story-card,
.about-milestone-card,
.faq-category-card,
.process-step-card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.93), rgba(255,255,255,.86));
  border:1px solid rgba(60,95,152,.22);
  box-shadow:0 16px 36px rgba(19,45,92,.10);
}

/* engineering corner-lines + numbering */
.page-grid,
#featuresGrid,
#serviceCategories,
#reviewHighlightsGrid,
.about-icon-grid,
.process-icon-grid,
.store-grid,
.stats-grid{
  counter-reset: cardcount;
}
.page-grid > *,
#featuresGrid > *,
#serviceCategories > *,
#reviewHighlightsGrid > *,
.about-icon-grid > *,
.process-icon-grid > *,
.store-grid > *,
.stats-grid > *{
  counter-increment: cardcount;
}

.hero-panel::before,
.page-hero-panel::before,
.contact-card::before,
.notice-box::before,
.feature-card::before,
.service-card::before,
.review-slide-card::before,
.store-card::before,
.about-icon-card::before,
.faq-category-card::before,
.process-step-card::before,
.review-card::before,
.about-story-card::before,
.about-milestone-card::before{
  content:"N° " counter(cardcount, decimal-leading-zero);
  position:absolute;
  left:18px;
  top:16px;
  width:auto;
  height:auto;
  border:none;
  padding:0 8px 0 0;
  color:rgba(41,45,52,.56);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.16em;
  background:linear-gradient(90deg, transparent 0 80%, rgba(41,45,52,.18) 80% 100%);
}
.hero-panel::after,
.page-hero-panel::after,
.contact-card::after,
.notice-box::after,
.feature-card::after,
.service-card::after,
.review-slide-card::after,
.store-card::after,
.about-icon-card::after,
.faq-category-card::after,
.process-step-card::after,
.review-card::after,
.about-story-card::after,
.about-milestone-card::after{
  content:"";
  position:absolute;
  inset:0;
  width:auto;
  height:auto;
  border:none;
  background:
    linear-gradient(rgba(41,45,52,.18), rgba(41,45,52,.18)) top 14px right 14px / 42px 1px no-repeat,
    linear-gradient(rgba(41,45,52,.18), rgba(41,45,52,.18)) top 14px right 14px / 1px 42px no-repeat,
    linear-gradient(rgba(41,45,52,.14), rgba(41,45,52,.14)) bottom 14px left 14px / 54px 1px no-repeat,
    linear-gradient(rgba(41,45,52,.14), rgba(41,45,52,.14)) bottom 14px left 14px / 1px 18px no-repeat;
  pointer-events:none;
}
.process-step-card,
.about-icon-card,
.feature-card,
.service-card,
.review-highlight-card,
.store-card,
.stats-card,
.page-grid > a{
  padding-top:52px !important;
}
.page-hero-panel,
.hero-panel,
.about-story-card,
.about-milestone-card,
.contact-card,
.notice-box,
.faq-category-card,
.review-slide-card,
.review-card{
  padding-top:52px !important;
}
.process-step-top{margin-top:4px;}
.process-step-badge{
  background:transparent;
  border:1px solid rgba(41,45,52,.16);
  border-radius:0;
  padding:4px 10px;
  font-family:inherit;
  letter-spacing:.18em;
  font-size:.72rem;
}

/* blueprint line icons */
.draft-icon{
  width:72px;
  height:72px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--primary-dark);
  position:relative;
  margin-bottom:14px;
}
.draft-icon::before,
.draft-icon::after{
  content:"";
  position:absolute;
  border:1px solid rgba(41,45,52,.12);
  pointer-events:none;
}
.draft-icon::before{
  inset:6px;
  border-radius:18px;
}
.draft-icon::after{
  inset:0;
  border-radius:24px;
  opacity:.55;
}
.draft-icon svg{
  width:42px;
  height:42px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.85;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.about-card-icon,
.review-highlight-icon,
.process-step-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:0 !important;
  line-height:1;
  background:transparent !important;
  width:auto;
  height:auto;
  margin-bottom:0;
}
.review-highlight-icon .draft-icon,
.process-step-icon .draft-icon{margin-bottom:0;}
.review-highlight-card,
.about-icon-card,
.process-step-card{overflow:hidden;}

/* lower-right annotation tick */
.service-card h3::after,
.feature-card h3::after,
.about-icon-card h3::after,
.process-step-card h3::after,
.store-card-body h3::after,
.review-highlight-card h3::after{
  content:" ⟶";
  color:rgba(41,45,52,.46);
  font-weight:700;
}

/* extra page professionalism */
.hero-visual,
.page-hero-panel,
.store-map-thumb{
  background-image:
    repeating-linear-gradient(0deg, rgba(41,45,52,.06) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(41,45,52,.06) 0 1px, transparent 1px 28px),
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(240,246,255,.72));
}
.stats-card,
.review-slide-card,
.review-highlight-card,
.about-icon-card,
.process-step-card,
.feature-card,
.service-card{
  position:relative;
}
.stats-card::before,
.review-highlight-card::before{content:"N° " counter(cardcount, decimal-leading-zero);}

@media (max-width:760px){
  .hero .eyebrow::after,
  .page-hero .breadcrumb::after,
  .section-head .eyebrow::after,
  .compact-section-head .eyebrow::after{ width:32px; }
}


/* ===== Blueprint theme refinement v3 ===== */
body::before{
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 95px,
      rgba(41,45,52,.035) 95px 96px,
      transparent 96px 100%
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 95px,
      rgba(41,45,52,.035) 95px 96px,
      transparent 96px 100%
    ) !important;
  opacity:.65 !important;
}
.hero::before,
.page-hero::before{
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(41,45,52,.055) 8% 8.12%, transparent 8.12% 100%),
    linear-gradient(0deg, transparent 0 82%, rgba(41,45,52,.055) 82% 82.12%, transparent 82.12% 100%) !important;
  opacity:.55 !important;
}

.hero .eyebrow::before,
.page-hero .breadcrumb::before,
.section-head .eyebrow::before,
.compact-section-head .eyebrow::before{
  content:"PR-" counter(sectioncount, decimal-leading-zero) !important;
  letter-spacing:.12em !important;
}

.hero .eyebrow,
.page-hero .breadcrumb,
.section-head .eyebrow,
.compact-section-head .eyebrow{
  gap:9px;
}

/* default code label for standalone cards */
.hero-panel::before,
.page-hero-panel::before,
.contact-card::before,
.notice-box::before,
.feature-card::before,
.service-card::before,
.review-slide-card::before,
.store-card::before,
.about-icon-card::before,
.faq-category-card::before,
.process-step-card::before,
.review-card::before,
.about-story-card::before,
.about-milestone-card::before{
  content:"PR-00" !important;
  background:none !important;
  padding:0 !important;
  color:rgba(41,45,52,.60) !important;
  letter-spacing:.1em !important;
}
/* counted cards */
.page-grid > *::before,
#featuresGrid > *::before,
#serviceCategories > *::before,
#reviewHighlightsGrid > *::before,
.about-icon-grid > *::before,
.process-icon-grid > *::before,
.store-grid > *::before,
.stats-grid > *::before,
#servicesGrid > *::before,
#featuresPageGrid > *::before,
#featurePromisesGrid > *::before,
#aboutCareGrid > *::before,
#contactMethodCards > *::before,
#beforeVisitCards > *::before{
  content:"PR-" counter(cardcount, decimal-leading-zero) !important;
}
#servicesGrid,
#featuresPageGrid,
#featurePromisesGrid,
#aboutCareGrid,
#contactMethodCards,
#beforeVisitCards{
  counter-reset: cardcount;
}
#servicesGrid > *,
#featuresPageGrid > *,
#featurePromisesGrid > *,
#aboutCareGrid > *,
#contactMethodCards > *,
#beforeVisitCards > *{
  counter-increment: cardcount;
}

.hero-panel::after,
.page-hero-panel::after,
.contact-card::after,
.notice-box::after,
.feature-card::after,
.service-card::after,
.review-slide-card::after,
.store-card::after,
.about-icon-card::after,
.faq-category-card::after,
.process-step-card::after,
.review-card::after,
.about-story-card::after,
.about-milestone-card::after{
  background:
    linear-gradient(rgba(41,45,52,.18), rgba(41,45,52,.18)) top 14px right 14px / 44px 1px no-repeat,
    linear-gradient(rgba(41,45,52,.18), rgba(41,45,52,.18)) top 14px right 14px / 1px 26px no-repeat,
    linear-gradient(rgba(41,45,52,.14), rgba(41,45,52,.14)) bottom 14px left 14px / 36px 1px no-repeat,
    linear-gradient(rgba(41,45,52,.14), rgba(41,45,52,.14)) bottom 14px left 14px / 1px 12px no-repeat !important;
}

.draft-icon{
  width:44px;
  height:44px;
  margin-bottom:10px;
}
.draft-icon::before,
.draft-icon::after{
  content:"";
  position:absolute;
  inset:auto;
  border:none !important;
  pointer-events:none;
}
.draft-icon::before{
  left:-6px;
  top:-4px;
  width:18px;
  height:10px;
  background:
    linear-gradient(rgba(41,45,52,.18), rgba(41,45,52,.18)) 0 0 / 18px 1px no-repeat,
    linear-gradient(rgba(41,45,52,.18), rgba(41,45,52,.18)) 0 0 / 1px 10px no-repeat;
  border-radius:0;
}
.draft-icon::after{
  right:-6px;
  bottom:-4px;
  width:18px;
  height:10px;
  background:
    linear-gradient(rgba(41,45,52,.16), rgba(41,45,52,.16)) 100% 100% / 18px 1px no-repeat,
    linear-gradient(rgba(41,45,52,.16), rgba(41,45,52,.16)) 100% 100% / 1px 10px no-repeat;
  border-radius:0;
}
.draft-icon svg{
  width:36px !important;
  height:36px !important;
  stroke-width:1.45 !important;
}
.service-card-icon,
.feature-card-icon,
.process-step-icon,
.about-card-icon,
.review-highlight-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.service-card,
.feature-card,
.process-step-card,
.about-icon-card,
.review-highlight-card{
  padding-top:44px !important;
}
.service-card .service-card-icon{
  margin-bottom:4px;
}
.service-card h3,
.feature-card h3,
.process-step-card h3,
.about-icon-card h3,
.review-highlight-card h3{
  margin-top:2px;
}
.service-card h3::before,
.feature-card h3::before,
.about-icon-card h3::before,
.faq-category-head h3::before,
.process-step-card h3::before,
.store-card-body h3::before{
  content:"→";
  color:rgba(41,45,52,.52);
  margin-right:8px;
  font-weight:700;
}
.service-card h3::after,
.feature-card h3::after,
.about-icon-card h3::after,
.process-step-card h3::after,
.store-card-body h3::after,
.review-highlight-card h3::after{
  content:none !important;
}

/* stronger blueprint grid */
html{
  background:
    linear-gradient(rgba(255,255,255,.58), rgba(255,255,255,.58)),
    repeating-linear-gradient(0deg, rgba(41,45,52,.11) 0px, rgba(41,45,52,.11) 1px, transparent 1px, transparent 32px),
    repeating-linear-gradient(90deg, rgba(41,45,52,.11) 0px, rgba(41,45,52,.11) 1px, transparent 1px, transparent 32px),
    linear-gradient(180deg,#eef4ff 0%,#f8fbff 50%,#ffffff 100%) !important;
}

/* card grids with icons */
#servicesGrid .service-card,
#featuresGrid .feature-card,
#featuresPageGrid .feature-card,
#featurePromisesGrid .feature-card,
#contactMethodCards .feature-card,
#beforeVisitCards .feature-card,
#reviewHighlightsGrid .review-highlight-card,
#aboutWhyGrid .about-icon-card,
.process-icon-grid .process-step-card{
  overflow:hidden;
}

/* about page eyebrow labels use Chinese tone */
.about-story-card .eyebrow,
.about-milestone-card .eyebrow,
#aboutWhySection .eyebrow,
#aboutPhilosophySection .eyebrow,
#aboutCareSection .eyebrow,
#aboutNextSection .eyebrow{
  letter-spacing:.1em;
}

/* ===== refinement v4 : bilingual eyebrow, clearer codes, larger icons ===== */
.eyebrow{
  gap:8px !important;
}
.eyebrow-zh{
  font-weight:800;
  letter-spacing:.08em;
}
.eyebrow-sep{
  color:rgba(41,45,52,.34);
  font-weight:700;
  letter-spacing:.08em;
}
.eyebrow-en{
  color:rgba(41,45,52,.72);
  font-size:.88em;
  font-weight:700;
  letter-spacing:.18em;
}
.page-hero .eyebrow,
.section-head .eyebrow,
.compact-section-head .eyebrow,
.about-story-card .eyebrow,
.about-milestone-card .eyebrow,
.contact-card .eyebrow,
.notice-box .eyebrow,
.cta-banner .eyebrow{
  text-transform:none !important;
}

.page-hero-panel[data-code]::before,
.contact-card[data-code]::before,
.notice-box[data-code]::before,
.about-story-card[data-code]::before,
.about-milestone-card[data-code]::before,
.process-step-card[data-code]::before,
.service-card[data-code]::before,
.feature-card[data-code]::before,
.review-highlight-card[data-code]::before,
.review-slide-card[data-code]::before,
.store-card[data-code]::before,
.faq-category-card[data-code]::before{
  content: attr(data-code) !important;
}

.process-step-badge{
  min-width:84px;
  justify-content:center;
  font-size:.74rem !important;
  letter-spacing:.14em !important;
  padding:5px 10px !important;
}

.service-card,
.feature-card,
.process-step-card,
.about-icon-card,
.review-highlight-card{
  padding-top:50px !important;
}

.draft-icon,
.service-card .service-card-icon .draft-icon,
.feature-card .draft-icon,
.process-step-icon .draft-icon,
.about-card-icon .draft-icon,
.review-highlight-icon .draft-icon{
  width:62px !important;
  height:62px !important;
  margin-bottom:12px !important;
}
.draft-icon::before{
  width:22px !important;
  height:12px !important;
  left:-8px !important;
  top:-6px !important;
  background:
    linear-gradient(rgba(41,45,52,.2), rgba(41,45,52,.2)) 0 0 / 22px 1px no-repeat,
    linear-gradient(rgba(41,45,52,.2), rgba(41,45,52,.2)) 0 0 / 1px 12px no-repeat !important;
}
.draft-icon::after{
  width:22px !important;
  height:12px !important;
  right:-8px !important;
  bottom:-6px !important;
  background:
    linear-gradient(rgba(41,45,52,.18), rgba(41,45,52,.18)) 100% 100% / 22px 1px no-repeat,
    linear-gradient(rgba(41,45,52,.18), rgba(41,45,52,.18)) 100% 100% / 1px 12px no-repeat !important;
}
.draft-icon svg{
  width:48px !important;
  height:48px !important;
  stroke-width:1.6 !important;
}
.service-card .service-card-icon,
.process-step-icon,
.review-highlight-icon,
.about-card-icon{
  margin-bottom:8px !important;
}

@media (max-width:760px){
  .eyebrow-en{font-size:.82em;}
  .draft-icon,
  .service-card .service-card-icon .draft-icon,
  .feature-card .draft-icon,
  .process-step-icon .draft-icon,
  .about-card-icon .draft-icon,
  .review-highlight-icon .draft-icon{
    width:54px !important;
    height:54px !important;
  }
  .draft-icon svg{
    width:42px !important;
    height:42px !important;
  }
}


/* ===== refinement v5 : english labels, centered section headers, grayscale ===== */
:root{
  --bg:#f4f5f7;
  --surface:#ffffff;
  --surface-alt:#eef0f3;
  --text:#1d2128;
  --muted:#626973;
  --primary:#272c34;
  --primary-dark:#15181d;
  --line:#d4d9df;
  --shadow:0 18px 38px rgba(17,20,25,.08);
}
body{background:var(--bg);}
.site-header{background:rgba(255,255,255,.86)!important;border-bottom:1px solid rgba(41,45,52,.10)!important;}
.logo-mark{background:linear-gradient(180deg,#2b3037,#15181d)!important;}
.site-nav a:hover, .site-nav a.active{color:var(--primary)!important;}
.btn-primary{background:var(--primary)!important;}
.btn-primary:hover{background:var(--primary-dark)!important;}
.btn-secondary{border-color:rgba(41,45,52,.18)!important;color:var(--primary)!important;}
.section-alt{background:linear-gradient(180deg, rgba(238,240,243,.92), rgba(238,240,243,.42))!important;}
.section-head,
.section-head-left,
.compact-section-head{
  max-width:780px!important;
  margin:0 auto 34px!important;
  text-align:center!important;
}
.section-head .eyebrow,
.section-head-left .eyebrow,
.compact-section-head .eyebrow{
  margin-left:auto!important;
  margin-right:auto!important;
  justify-content:center!important;
}
.section-head p,
.section-head-left p,
.compact-section-head p{
  text-align:center!important;
}
.eyebrow{
  color:rgba(41,45,52,.86)!important;
  text-transform:uppercase!important;
  letter-spacing:.18em!important;
}
.eyebrow::before, .eyebrow::after{color:rgba(41,45,52,.72)!important;background:rgba(41,45,52,.20)!important;}
.eyebrow-zh,.eyebrow-sep{display:none!important;}
.eyebrow-en,.eyebrow-only{
  color:rgba(41,45,52,.78)!important;
  font-size:.9em!important;
  font-weight:800!important;
  letter-spacing:.18em!important;
}
.section-head h2::before,
.page-hero h1::before,
.hero h1::before{
  color:rgba(41,45,52,.26)!important;
  display:inline-block;
}
.hero-panel,
.page-hero-panel,
.contact-card,
.notice-box,
.feature-card,
.service-card,
.review-card,
.review-slide-card,
.store-card,
.faq-category-card,
.process-step-card,
.review-highlight-card,
.about-story-card,
.about-milestone-card{
  border-color:rgba(41,45,52,.14)!important;
  box-shadow:0 14px 30px rgba(15,18,22,.05)!important;
}
.page-hero-panel::after,
.contact-card::after,
.notice-box::after,
.feature-card::after,
.service-card::after,
.review-card::after,
.review-slide-card::after,
.store-card::after,
.faq-category-card::after,
.process-step-card::after,
.review-highlight-card::after,
.about-story-card::after,
.about-milestone-card::after{
  border-color:rgba(41,45,52,.10)!important;
}
.page-hero-panel[data-code]::before,
.contact-card[data-code]::before,
.notice-box[data-code]::before,
.about-story-card[data-code]::before,
.about-milestone-card[data-code]::before,
.process-step-card[data-code]::before,
.service-card[data-code]::before,
.feature-card[data-code]::before,
.review-highlight-card[data-code]::before,
.review-slide-card[data-code]::before,
.store-card[data-code]::before,
.faq-category-card[data-code]::before{
  color:rgba(41,45,52,.62)!important;
}
.process-step-badge{
  border-color:rgba(41,45,52,.18)!important;
  color:rgba(41,45,52,.85)!important;
}
.draft-icon svg{stroke:rgba(41,45,52,.95)!important;}
.draft-icon::before,.draft-icon::after{filter:grayscale(100%);}
.review-slider-dot.active{background:var(--primary)!important;}
.review-slider-dot{background:rgba(41,45,52,.18)!important;}
.review-slider-arrow{border-color:rgba(41,45,52,.15)!important;color:var(--primary)!important;}


/* ===== refinement v6 : icon refresh, no slashes, PR line extension, richer black-gray ===== */
:root{
  --accent:#9b8861;
  --accent-soft:#c8bb9a;
  --accent-ink:#756544;
}
body{
  background:linear-gradient(180deg,#f1f2f4 0%, #eceef1 100%)!important;
}
.site-header{
  background:rgba(250,250,249,.88)!important;
  box-shadow:0 6px 18px rgba(18,20,24,.04)!important;
}
.section-alt{
  background:linear-gradient(180deg, rgba(231,234,238,.84), rgba(244,245,247,.58))!important;
}
/* replace slash motif with dual bars */
.page-hero h1::before,
.hero h1::before,
.section-head h2::before,
.compact-section-head h2::before{
  content:""!important;
  width:18px!important;
  height:58px!important;
  margin-right:14px!important;
  vertical-align:-10px!important;
  border-radius:4px!important;
  background:
    linear-gradient(var(--accent),var(--accent)) left center/4px 100% no-repeat,
    linear-gradient(rgba(41,45,52,.22),rgba(41,45,52,.22)) right center/4px 100% no-repeat!important;
}
.section-head h2::before,
.compact-section-head h2::before{
  width:14px!important;
  height:40px!important;
  margin-right:10px!important;
  vertical-align:-6px!important;
}
/* PR code with extension line */
.hero .eyebrow::before,
.page-hero .breadcrumb::before,
.section-head .eyebrow::before,
.compact-section-head .eyebrow::before,
.page-hero-panel[data-code]::before,
.contact-card[data-code]::before,
.notice-box[data-code]::before,
.about-story-card[data-code]::before,
.about-milestone-card[data-code]::before,
.process-step-card[data-code]::before,
.service-card[data-code]::before,
.feature-card[data-code]::before,
.review-highlight-card[data-code]::before,
.review-slide-card[data-code]::before,
.store-card[data-code]::before,
.faq-category-card[data-code]::before{
  display:inline-block!important;
  padding-right:56px!important;
  background:
    linear-gradient(rgba(41,45,52,.28),rgba(41,45,52,.28)) right 6px center/44px 1px no-repeat,
    linear-gradient(var(--accent),var(--accent)) left bottom/100% 1px no-repeat!important;
}
.eyebrow-only{
  color:var(--accent-ink)!important;
}
.hero .eyebrow,
.page-hero .breadcrumb,
.section-head .eyebrow,
.compact-section-head .eyebrow{
  border-bottom-color:rgba(41,45,52,.16)!important;
}
.hero .eyebrow::after,
.page-hero .breadcrumb::after,
.section-head .eyebrow::after,
.compact-section-head .eyebrow::after{
  background:rgba(41,45,52,.18)!important;
}
/* richer panels for black-gray version */
.hero-panel,
.page-hero-panel,
.contact-card,
.notice-box,
.feature-card,
.service-card,
.review-card,
.review-slide-card,
.store-card,
.faq-category-card,
.process-step-card,
.review-highlight-card,
.about-story-card,
.about-milestone-card{
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,249,250,.9))!important;
  box-shadow:0 16px 36px rgba(17,20,25,.06), inset 0 1px 0 rgba(255,255,255,.7)!important;
}
/* icon refresh */
.draft-icon,
.service-card .service-card-icon .draft-icon,
.feature-card .draft-icon,
.process-step-icon .draft-icon,
.about-card-icon .draft-icon,
.review-highlight-icon .draft-icon,
.faq-category-icon .draft-icon{
  width:54px!important;
  height:54px!important;
  min-width:54px!important;
  border-radius:14px!important;
  background:linear-gradient(180deg, rgba(155,136,97,.06), rgba(155,136,97,.025))!important;
  border:1px solid rgba(155,136,97,.16)!important;
  box-shadow:0 8px 18px rgba(25,27,30,.04)!important;
  margin-bottom:0!important;
  position:relative!important;
}
.draft-icon::before,
.draft-icon::after{display:none!important;}
.draft-icon svg{
  width:30px!important;
  height:30px!important;
  stroke:var(--accent)!important;
  stroke-width:2.35!important;
  vector-effect:non-scaling-stroke;
}
.service-card-icon,
.feature-card-icon,
.process-step-icon,
.about-card-icon,
.review-highlight-icon,
.faq-category-icon{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
}
.faq-category-head{
  align-items:center!important;
  gap:16px!important;
}
.faq-category-icon{font-size:0!important;line-height:1!important;}
.faq-category-icon .draft-icon{margin-right:2px!important;}
/* touch of accent to make black-gray less empty */
.logo-mark{
  box-shadow:inset 0 1px 0 rgba(255,255,255,.18), 0 8px 20px rgba(17,20,25,.12)!important;
}
.btn-primary{
  background:linear-gradient(180deg,#2f343c,#171a20)!important;
  box-shadow:0 10px 22px rgba(17,20,25,.16)!important;
}
.btn-secondary{
  background:rgba(255,255,255,.7)!important;
}
.review-slider-dot.active{background:var(--accent)!important;}


/* ===== v7 final pass: logo + home showcase + black-gray-gold consistency ===== */
:root{
  --bg:#f2f3f5;
  --surface:#ffffff;
  --surface-alt:#eceef1;
  --text:#1c2027;
  --muted:#626973;
  --primary:#252a32;
  --primary-dark:#15181e;
  --line:#d5d9df;
  --accent:#b8a16b;
  --accent-dark:#7b6842;
  --accent-soft:#e8dfc8;
  --shadow:0 18px 38px rgba(17,20,25,.08);
}

html{
  background:
    linear-gradient(rgba(255,255,255,.62), rgba(255,255,255,.62)),
    radial-gradient(circle at 18% 16%, rgba(184,161,107,.11) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 28%, rgba(184,161,107,.10) 0 1px, transparent 2px),
    radial-gradient(circle at 36% 72%, rgba(184,161,107,.08) 0 1px, transparent 2px),
    repeating-linear-gradient(0deg, rgba(41,45,52,.075) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(41,45,52,.075) 0 1px, transparent 1px 34px),
    linear-gradient(180deg,#f3f4f6 0%,#eef0f3 100%) !important;
}

body::before{
  background:
    linear-gradient(120deg, transparent 0 23%, rgba(184,161,107,.20) 23% 23.06%, transparent 23.06% 100%),
    linear-gradient(65deg, transparent 0 67%, rgba(184,161,107,.16) 67% 67.06%, transparent 67.06% 100%) !important;
  opacity:.45 !important;
}

.logo{
  min-width:max-content;
}
.logo-mark{
  width:42px;
  height:42px;
  padding:0;
  background:transparent !important;
  border-radius:14px;
  box-shadow:0 8px 20px rgba(17,20,25,.12) !important;
  overflow:hidden;
}
.logo-mark img{
  width:100%;
  height:100%;
  display:block;
}
.logo-text{
  font-size:1.05rem;
  color:var(--text);
  letter-spacing:.04em;
  font-weight:800;
}

.site-nav{
  gap:16px !important;
  font-size:.95rem;
}
.site-nav a{
  padding:8px 10px;
}

.section-head,
.section-head-left,
.compact-section-head{
  max-width:760px!important;
  margin:0 auto 34px!important;
  text-align:center!important;
}
.section-head .eyebrow,
.section-head-left .eyebrow,
.compact-section-head .eyebrow{
  margin-left:auto!important;
  margin-right:auto!important;
  justify-content:center!important;
}
.section-head p,
.section-head-left p,
.compact-section-head p{
  text-align:center!important;
  max-width:620px;
  margin-left:auto;
  margin-right:auto;
}

.eyebrow-only{
  color:var(--accent-dark)!important;
  letter-spacing:.18em!important;
}
.hero .eyebrow::before,
.page-hero .breadcrumb::before,
.section-head .eyebrow::before,
.compact-section-head .eyebrow::before,
.page-hero-panel[data-code]::before,
.contact-card[data-code]::before,
.notice-box[data-code]::before,
.about-story-card[data-code]::before,
.about-milestone-card[data-code]::before,
.process-step-card[data-code]::before,
.service-card[data-code]::before,
.feature-card[data-code]::before,
.review-highlight-card[data-code]::before,
.review-slide-card[data-code]::before,
.store-card[data-code]::before,
.faq-category-card[data-code]::before{
  color:rgba(41,45,52,.68)!important;
  padding-right:72px!important;
  background:
    linear-gradient(rgba(184,161,107,.55),rgba(184,161,107,.55)) right 7px center/54px 1px no-repeat,
    radial-gradient(circle at right center, rgba(184,161,107,.75) 0 2px, transparent 2.5px) right center/8px 8px no-repeat !important;
}

.page-hero h1::before,
.hero h1::before,
.section-head h2::before,
.compact-section-head h2::before{
  content:"" !important;
  width:24px !important;
  height:24px !important;
  margin-right:12px !important;
  vertical-align:-3px !important;
  display:inline-block !important;
  border:2px solid rgba(184,161,107,.55);
  border-right-color:rgba(41,45,52,.22);
  border-bottom-color:rgba(41,45,52,.22);
  background:transparent !important;
  border-radius:6px;
}

.btn-primary{
  background:linear-gradient(180deg,#2f343c,#171a20)!important;
  box-shadow:0 12px 24px rgba(17,20,25,.16)!important;
}
.btn-secondary{
  color:var(--primary)!important;
  border-color:rgba(41,45,52,.18)!important;
  background:rgba(255,255,255,.72)!important;
}
.btn-secondary:hover{
  border-color:rgba(184,161,107,.55)!important;
}

.hero-panel,
.page-hero-panel,
.contact-card,
.notice-box,
.feature-card,
.service-card,
.review-card,
.review-slide-card,
.store-card,
.faq-category-card,
.process-step-card,
.review-highlight-card,
.about-story-card,
.about-milestone-card{
  border-color:rgba(41,45,52,.13)!important;
  box-shadow:0 16px 36px rgba(17,20,25,.06), inset 0 1px 0 rgba(255,255,255,.7)!important;
}

.quick-service-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.quick-service-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid rgba(184,161,107,.36);
  background:rgba(255,255,255,.72);
  color:var(--text);
  border-radius:999px;
  padding:9px 13px;
  font-size:.92rem;
  font-weight:800;
}
.quick-service-pill::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 4px rgba(184,161,107,.12);
}

.hero-points{
  max-width:620px;
}
.hero-points li{
  line-height:1.55;
}

.home-showcase-section{
  padding-top:30px;
}
.home-showcase-grid{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:24px;
  align-items:stretch;
}
.showcase-copy{
  background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(248,249,250,.88));
  border:1px solid rgba(41,45,52,.13);
  box-shadow:var(--shadow);
  border-radius:var(--radius-lg);
  padding:30px;
  position:relative;
  overflow:hidden;
}
.showcase-copy::before{
  content:"PR-IMG";
  position:absolute;
  top:16px;
  left:18px;
  font-size:.72rem;
  letter-spacing:.14em;
  font-weight:800;
  color:rgba(41,45,52,.62);
  padding-right:60px;
  background:
    linear-gradient(rgba(184,161,107,.55),rgba(184,161,107,.55)) right center/46px 1px no-repeat;
}
.showcase-copy .eyebrow{
  margin-top:22px;
}
.showcase-copy h2{
  margin:12px 0;
  font-size:clamp(1.55rem,2.5vw,2.3rem);
  line-height:1.2;
}
.showcase-copy p{
  color:var(--muted);
}

.showcase-slider{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid rgba(41,45,52,.13);
  box-shadow:var(--shadow);
  background:var(--surface);
}
.showcase-track{
  position:relative;
  min-height:360px;
}
.showcase-slide{
  display:none;
  height:100%;
}
.showcase-slide.is-active{
  display:grid;
  grid-template-rows:1fr auto;
  min-height:360px;
}
.showcase-photo{
  min-height:280px;
  display:grid;
  place-items:center;
  position:relative;
  isolation:isolate;
}
.showcase-photo::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 28px);
  z-index:-1;
}
.placeholder-photo{
  background:
    linear-gradient(135deg,rgba(28,32,39,.92),rgba(58,62,68,.82)),
    radial-gradient(circle at 20% 18%,rgba(184,161,107,.22),transparent 28%);
}
.placeholder-photo-2{
  background:
    linear-gradient(135deg,rgba(38,41,47,.92),rgba(84,82,76,.76)),
    radial-gradient(circle at 72% 20%,rgba(184,161,107,.24),transparent 28%);
}
.placeholder-photo-3{
  background:
    linear-gradient(135deg,rgba(27,31,37,.94),rgba(91,82,62,.74)),
    radial-gradient(circle at 42% 52%,rgba(184,161,107,.20),transparent 28%);
}
.showcase-photo span{
  color:rgba(255,255,255,.9);
  letter-spacing:.22em;
  font-weight:800;
  border:1px solid rgba(255,255,255,.24);
  padding:12px 16px;
  backdrop-filter:blur(8px);
}
.showcase-caption{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:18px 22px;
  background:rgba(255,255,255,.95);
}
.showcase-caption strong{
  font-size:1.05rem;
}
.showcase-caption p{
  margin:0;
  color:var(--muted);
  font-size:.92rem;
}
.showcase-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(41,45,52,.14);
  background:rgba(255,255,255,.86);
  color:var(--primary);
  font-size:1.8rem;
  line-height:1;
  cursor:pointer;
}
.showcase-prev{left:14px;}
.showcase-next{right:14px;}
.showcase-dots{
  position:absolute;
  left:22px;
  bottom:78px;
  display:flex;
  gap:8px;
  z-index:6;
}
.showcase-dot{
  width:8px;
  height:8px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.45);
  cursor:pointer;
}
.showcase-dot.active{
  width:26px;
  background:var(--accent);
}

.draft-icon,
.service-card .service-card-icon .draft-icon,
.feature-card .draft-icon,
.process-step-icon .draft-icon,
.about-card-icon .draft-icon,
.review-highlight-icon .draft-icon,
.faq-category-icon .draft-icon{
  background:linear-gradient(180deg, rgba(184,161,107,.07), rgba(184,161,107,.03))!important;
  border:1px solid rgba(184,161,107,.16)!important;
}
.draft-icon svg{
  stroke:var(--accent)!important;
  stroke-width:2.35!important;
}

@media (max-width:980px){
  .home-showcase-grid{
    grid-template-columns:1fr;
  }
  .showcase-track,
  .showcase-slide.is-active{
    min-height:320px;
  }
}
@media (max-width:760px){
  .site-nav{
    gap:0!important;
  }
  .quick-service-row{
    gap:8px;
  }
  .quick-service-pill{
    font-size:.86rem;
    padding:8px 10px;
  }
  .showcase-caption{
    align-items:flex-start;
    flex-direction:column;
  }
  .showcase-dots{
    bottom:110px;
  }
}


/* ===== home slideshow uses real WEBP images 1-5 ===== */
.showcase-track{
  min-height:0;
}
.showcase-slide.is-active{
  display:grid;
  grid-template-rows:auto auto;
  min-height:0;
}
.showcase-photo{
  overflow:hidden;
  min-height:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px 16px 0;
  background:
    linear-gradient(180deg, rgba(241,243,246,.98), rgba(234,237,241,.92));
}
.showcase-photo img{
  width:100%;
  height:auto;
  min-height:0;
  max-height:680px;
  object-fit:contain;
  object-position:center;
  display:block;
  border-radius:18px 18px 0 0;
  filter:saturate(.88) contrast(1.02) brightness(.98);
  background:#f4f5f7;
}
.showcase-photo::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(20,24,30,.04), rgba(20,24,30,.10)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 28px);
}


/* ===== v9 png logo + smaller home slider ===== */
.logo-mark{
  width:40px !important;
  height:40px !important;
  background:transparent !important;
  border-radius:12px !important;
  overflow:hidden;
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
}
.logo-mark img{
  max-width:100% !important;
  max-height:100% !important;
  width:auto !important;
  height:auto !important;
  object-fit:contain !important;
  display:block;
}

.home-showcase-grid{
  grid-template-columns: 1fr 0.78fr !important;
  gap:22px !important;
  align-items:start !important;
}
.showcase-slider{
  max-width: 820px;
}
.showcase-copy{
  max-width: 440px;
}
.showcase-track,
.showcase-slide.is-active{
  min-height: 0 !important;
}
.showcase-slide.is-active{
  grid-template-rows:auto auto !important;
}
.showcase-photo{
  min-height:0 !important;
  padding:14px 14px 0 !important;
  background:linear-gradient(180deg, rgba(241,243,246,.98), rgba(234,237,241,.92)) !important;
}
.showcase-photo img{
  width:100% !important;
  height:auto !important;
  max-height: 500px !important;
  min-height:0 !important;
  object-fit:contain !important;
  object-position:center !important;
  display:block;
  border-radius:16px 16px 0 0;
  background:#f4f5f7;
}
.showcase-caption{
  padding:14px 18px !important;
}
.showcase-arrow{
  width:38px !important;
  height:38px !important;
  font-size:1.5rem !important;
}
.showcase-dots{
  bottom:64px !important;
}
@media (max-width: 1100px){
  .home-showcase-grid{
    grid-template-columns: 1fr !important;
  }
  .showcase-slider,
  .showcase-copy{
    max-width:none;
  }
  .showcase-photo img{
    max-height: 440px !important;
  }
}
@media (max-width: 760px){
  .showcase-photo img{
    max-height: 320px !important;
  }
  .logo-mark{
    width:36px !important;
    height:36px !important;
  }
}

/* ===== v10 fixes: smaller title marker, 3-layer background return, better home slider ratio ===== */
:root{
  --accent:#b8a16b;
  --accent-dark:#7b6842;
  --grid-dot:rgba(184,161,107,.22);
  --grid-line:rgba(41,45,52,.08);
}

/* restore richer 3-layer blueprint background */
html{
  background:
    radial-gradient(circle at 1px 1px, var(--grid-dot) 1px, transparent 1.2px) 0 0/24px 24px,
    repeating-linear-gradient(0deg, var(--grid-line) 0px, var(--grid-line) 1px, transparent 1px, transparent 32px),
    repeating-linear-gradient(90deg, var(--grid-line) 0px, var(--grid-line) 1px, transparent 1px, transparent 32px),
    linear-gradient(180deg,#f4f4f3 0%, #f1f2f3 45%, #f7f7f7 100%) !important;
}
body{
  background:
    radial-gradient(circle at 12% 14%, rgba(184,161,107,.08), transparent 14%),
    radial-gradient(circle at 86% 18%, rgba(41,45,52,.04), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,.38), rgba(255,255,255,.58)) !important;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    linear-gradient(120deg, transparent 0 74%, rgba(184,161,107,.16) 74% 74.14%, transparent 74.14% 100%),
    linear-gradient(60deg, transparent 0 22%, rgba(41,45,52,.045) 22% 22.12%, transparent 22.12% 100%),
    linear-gradient(90deg, transparent 0 6%, rgba(184,161,107,.10) 6% 6.08%, transparent 6.08% 100%);
  opacity:.9 !important;
}

/* title marker: replace oversized square with slim dual-bar marker */
.hero h1,
.page-hero h1,
.section-head h2,
.compact-section-head h2{
  position:relative;
}
.hero h1,
.page-hero h1{
  padding-left:28px;
}
.section-head h2,
.compact-section-head h2{
  padding-left:22px;
}
.hero h1::before,
.page-hero h1::before,
.section-head h2::before,
.compact-section-head h2::before{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  top:.16em !important;
  display:block !important;
  margin:0 !important;
  vertical-align:0 !important;
  border-radius:0 !important;
  background:none !important;
}
.hero h1::before,
.page-hero h1::before{
  width:12px !important;
  height:44px !important;
  background:
    linear-gradient(var(--accent),var(--accent)) left center/3px 100% no-repeat,
    linear-gradient(rgba(41,45,52,.22),rgba(41,45,52,.22)) right center/3px 100% no-repeat !important;
  border-radius:3px !important;
}
.section-head h2::before,
.compact-section-head h2::before{
  width:10px !important;
  height:32px !important;
  background:
    linear-gradient(var(--accent),var(--accent)) left center/3px 100% no-repeat,
    linear-gradient(rgba(41,45,52,.22),rgba(41,45,52,.22)) right center/3px 100% no-repeat !important;
  border-radius:3px !important;
}

/* left-right home showcase layout and more natural image ratio */
.home-showcase-grid{
  grid-template-columns:.78fr 1.22fr !important;
  gap:28px !important;
  align-items:stretch !important;
}
.showcase-copy{
  max-width:none !important;
  min-height:100% !important;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.showcase-slider{
  max-width:none !important;
  min-width:0;
  display:flex;
  flex-direction:column;
}
.showcase-track,
.showcase-slide.is-active{
  min-height:0 !important;
}
.showcase-slide.is-active{
  display:grid !important;
  grid-template-rows:1fr auto !important;
}
.showcase-photo{
  min-height:420px !important;
  height:420px !important;
  padding:18px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:
    linear-gradient(180deg, rgba(245,245,244,.98), rgba(237,238,239,.94)) !important;
}
.showcase-photo::after{
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.10) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.10) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, rgba(17,20,25,.02), rgba(17,20,25,.08)) !important;
}
.showcase-photo img{
  width:auto !important;
  height:auto !important;
  max-width:100% !important;
  max-height:100% !important;
  object-fit:contain !important;
  object-position:center !important;
  border-radius:18px !important;
  margin:0 auto !important;
  background:#f4f5f7;
}
.showcase-caption{
  min-height:72px;
  padding:16px 20px !important;
}
.showcase-arrow{
  top:50%;
}
.showcase-dots{
  left:18px !important;
  bottom:66px !important;
}

/* gold stars for review page */
.review-stars,
.review-star,
.review-card .stars,
.review-slide-stars,
.review-item-stars{
  color:var(--accent) !important;
}

@media (max-width: 1100px){
  .home-showcase-grid{
    grid-template-columns:1fr !important;
  }
  .showcase-photo{
    min-height:380px !important;
    height:380px !important;
  }
}
@media (max-width: 760px){
  .hero h1,
  .page-hero h1{
    padding-left:22px;
  }
  .hero h1::before,
  .page-hero h1::before{
    width:10px !important;
    height:36px !important;
  }
  .section-head h2,
  .compact-section-head h2{
    padding-left:18px;
  }
  .section-head h2::before,
  .compact-section-head h2::before{
    height:26px !important;
    width:8px !important;
  }
  .showcase-photo{
    min-height:300px !important;
    height:300px !important;
    padding:14px !important;
  }
  .showcase-dots{
    bottom:72px !important;
  }
}

/* ===== FINAL SYSTEM PATCH: 6:4 home, unified CTA, black-gray-gold ===== */
:root{
  --accent:#b8a16b;
  --accent-dark:#7b6842;
  --graphite:#1f2329;
  --graphite-2:#303640;
  --warm-line:rgba(184,161,107,.32);
  --grid-line:rgba(41,45,52,.075);
  --grid-dot:rgba(184,161,107,.18);
}

html{
  background:
    radial-gradient(circle at 1px 1px, var(--grid-dot) 1px, transparent 1.2px) 0 0/24px 24px,
    repeating-linear-gradient(0deg, var(--grid-line) 0px, var(--grid-line) 1px, transparent 1px, transparent 32px),
    repeating-linear-gradient(90deg, var(--grid-line) 0px, var(--grid-line) 1px, transparent 1px, transparent 32px),
    linear-gradient(180deg,#f4f4f3 0%, #f0f1f3 48%, #f7f7f7 100%) !important;
}
body{
  background:
    radial-gradient(circle at 10% 14%, rgba(184,161,107,.075), transparent 16%),
    radial-gradient(circle at 86% 20%, rgba(41,45,52,.04), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,.58)) !important;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    linear-gradient(120deg, transparent 0 74%, rgba(184,161,107,.16) 74% 74.12%, transparent 74.12% 100%),
    linear-gradient(60deg, transparent 0 22%, rgba(41,45,52,.045) 22% 22.1%, transparent 22.1% 100%),
    linear-gradient(90deg, transparent 0 6%, rgba(184,161,107,.10) 6% 6.07%, transparent 6.07% 100%) !important;
  opacity:.9 !important;
}

/* PNG logo sizing */
.logo-mark{
  width:40px!important;
  height:40px!important;
  background:transparent!important;
  border-radius:12px!important;
  overflow:hidden!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  box-shadow:0 8px 18px rgba(17,20,25,.10)!important;
}
.logo-mark img{
  max-width:100%!important;
  max-height:100%!important;
  width:auto!important;
  height:auto!important;
  object-fit:contain!important;
}

/* title marker: slim, not square */
.hero h1,.page-hero h1,.section-head h2,.compact-section-head h2{position:relative;}
.hero h1,.page-hero h1{padding-left:26px!important;}
.section-head h2,.compact-section-head h2{padding-left:20px!important;}
.hero h1::before,.page-hero h1::before,.section-head h2::before,.compact-section-head h2::before{
  content:""!important;
  position:absolute!important;
  left:0!important;
  top:.16em!important;
  display:block!important;
  margin:0!important;
  border:none!important;
  border-radius:999px!important;
  background:none!important;
}
.hero h1::before,.page-hero h1::before{
  width:10px!important;
  height:42px!important;
  background:
    linear-gradient(var(--accent),var(--accent)) left center/3px 100% no-repeat,
    linear-gradient(rgba(41,45,52,.22),rgba(41,45,52,.22)) right center/2px 72% no-repeat!important;
}
.section-head h2::before,.compact-section-head h2::before{
  width:9px!important;
  height:28px!important;
  background:
    linear-gradient(var(--accent),var(--accent)) left center/3px 100% no-repeat,
    linear-gradient(rgba(41,45,52,.22),rgba(41,45,52,.22)) right center/2px 70% no-repeat!important;
}

/* home section: 6/4 slider + news/quick access */
.home-showcase-grid-final,
.home-showcase-grid{
  display:grid!important;
  grid-template-columns:minmax(0,1.45fr) minmax(320px,.95fr)!important;
  gap:26px!important;
  align-items:stretch!important;
}
.home-news-panel{
  position:relative;
  padding:28px!important;
  border-radius:var(--radius-lg);
  border:1px solid rgba(41,45,52,.13);
  background:linear-gradient(180deg,rgba(255,255,255,.94),rgba(248,249,250,.88));
  box-shadow:0 16px 36px rgba(17,20,25,.06), inset 0 1px 0 rgba(255,255,255,.72);
  overflow:hidden;
}
.home-news-panel::after{
  content:"";
  position:absolute;
  top:14px;right:14px;bottom:14px;left:14px;
  pointer-events:none;
  background:
    linear-gradient(rgba(41,45,52,.15),rgba(41,45,52,.15)) top right/44px 1px no-repeat,
    linear-gradient(rgba(41,45,52,.15),rgba(41,45,52,.15)) top right/1px 26px no-repeat,
    linear-gradient(rgba(41,45,52,.10),rgba(41,45,52,.10)) bottom left/36px 1px no-repeat,
    linear-gradient(rgba(41,45,52,.10),rgba(41,45,52,.10)) bottom left/1px 12px no-repeat;
}
.home-news-panel .eyebrow{margin:0 0 14px!important;color:var(--accent-dark)!important;}
.home-news-panel h2{margin:0 0 18px;font-size:clamp(1.35rem,2vw,1.85rem);line-height:1.25;}
.news-list{display:grid;gap:12px;margin:0 0 18px;}
.news-item{padding:15px 16px;border-radius:16px;background:rgba(41,45,52,.045);border:1px solid rgba(41,45,52,.08);}
.news-item span{display:block;color:var(--accent-dark);font-weight:900;font-size:.72rem;letter-spacing:.16em;margin-bottom:5px;}
.news-item strong{display:block;margin-bottom:2px;}
.news-item p{margin:0;color:var(--muted);font-size:.94rem;}
.quick-link-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.quick-link-grid a{display:flex;align-items:center;justify-content:center;min-height:42px;border-radius:999px;border:1px solid rgba(41,45,52,.14);background:rgba(255,255,255,.78);font-weight:800;color:var(--text);}
.quick-link-grid a:first-child{background:linear-gradient(180deg,var(--graphite-2),var(--graphite));color:#fff;border-color:rgba(0,0,0,.15);}
.showcase-slider{max-width:none!important;min-width:0;}
.showcase-track,.showcase-slide.is-active{min-height:0!important;}
.showcase-slide.is-active{grid-template-rows:auto auto!important;}
.showcase-photo{
  height:340px!important;
  min-height:340px!important;
  padding:16px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:linear-gradient(180deg,rgba(245,245,244,.98),rgba(237,238,239,.94))!important;
}
.showcase-photo img{
  width:auto!important;
  height:auto!important;
  max-width:100%!important;
  max-height:100%!important;
  object-fit:contain!important;
  border-radius:16px!important;
  background:#f4f5f7!important;
}
.showcase-caption{min-height:64px!important;padding:14px 18px!important;}
.showcase-dots{bottom:62px!important;}

/* unified CTA panels */
.cta-banner.cta-panel,
.faq-cta-panel{
  position:relative!important;
  overflow:hidden!important;
  color:#fff!important;
  background:
    radial-gradient(circle at 88% 18%, rgba(184,161,107,.18), transparent 28%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.028) 0 1px, transparent 1px 30px),
    linear-gradient(135deg,#2c323b 0%,#1d2128 100%)!important;
  border:1px solid rgba(184,161,107,.24)!important;
  border-radius:28px!important;
  box-shadow:0 20px 42px rgba(17,20,25,.14)!important;
}
.cta-banner.cta-panel{padding:34px!important;display:grid!important;grid-template-columns:1.2fr .8fr!important;gap:24px!important;align-items:center!important;}
.faq-cta-panel{padding:34px!important;}
.cta-banner.cta-panel::after,
.faq-cta-panel::after{
  content:"PR"!important;
  position:absolute!important;
  right:30px!important;
  top:18px!important;
  font-size:4rem!important;
  line-height:1!important;
  font-weight:900!important;
  letter-spacing:.08em!important;
  color:rgba(255,255,255,.06)!important;
  background:none!important;
  width:auto!important;height:auto!important;border:0!important;
}
.cta-banner.cta-panel .eyebrow,
.faq-cta-panel .eyebrow{color:var(--accent)!important;letter-spacing:.18em!important;border:0!important;margin:0 0 10px!important;}
.cta-banner.cta-panel .eyebrow::before,
.cta-banner.cta-panel .eyebrow::after,
.faq-cta-panel .eyebrow::before,
.faq-cta-panel .eyebrow::after{display:none!important;content:none!important;}
.cta-banner.cta-panel h2,
.cta-banner.cta-panel p,
.faq-cta-panel h2,
.faq-cta-panel p{color:#fff!important;}
.cta-banner.cta-panel h2,.faq-cta-panel h2{margin:0 0 10px!important;font-size:clamp(1.4rem,2.2vw,2rem)!important;}
.cta-banner.cta-panel p,.faq-cta-panel p{max-width:720px;margin:0!important;color:rgba(255,255,255,.84)!important;}
.cta-banner.cta-panel .btn-primary,
.faq-cta-panel .btn-primary{background:linear-gradient(180deg,#101318,#20252d)!important;color:#fff!important;border:1px solid rgba(255,255,255,.12)!important;}
.cta-banner.cta-panel .btn-secondary,
.faq-cta-panel .btn-secondary{background:rgba(255,255,255,.86)!important;color:var(--graphite)!important;border:1px solid rgba(255,255,255,.36)!important;}

/* remove old blue leftovers */
.cta-banner:not(.cta-panel){background:linear-gradient(135deg,#2c323b,#1d2128)!important;}
.review-stars,.review-slider .review-stars{color:var(--accent)!important;}
.step-number,.hero-points li::before,.notice-box li::before{background:rgba(184,161,107,.13)!important;color:var(--graphite)!important;}

@media (max-width:1100px){
  .home-showcase-grid-final,.home-showcase-grid{grid-template-columns:1fr!important;}
  .showcase-photo{height:320px!important;min-height:320px!important;}
}
@media (max-width:760px){
  .logo-mark{width:36px!important;height:36px!important;}
  .hero h1,.page-hero h1{padding-left:22px!important;}
  .hero h1::before,.page-hero h1::before{width:9px!important;height:34px!important;}
  .section-head h2,.compact-section-head h2{padding-left:18px!important;}
  .section-head h2::before,.compact-section-head h2::before{height:24px!important;width:8px!important;}
  .showcase-photo{height:280px!important;min-height:280px!important;padding:12px!important;}
  .quick-link-grid{grid-template-columns:1fr;}
  .cta-banner.cta-panel{grid-template-columns:1fr!important;padding:28px!important;}
}

/* ===== v12 final inspection fix: centered title marker + CTA/home consistency ===== */

/* Keep section markers attached to the title, not floating at the far left */
.section-head h2,
.compact-section-head h2{
  display:inline-block !important;
  width:auto !important;
  max-width:100% !important;
  position:relative !important;
  padding-left:18px !important;
  text-align:inherit !important;
}
.section-head h2::before,
.compact-section-head h2::before{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  top:50% !important;
  transform:translateY(-50%) !important;
  width:7px !important;
  height:30px !important;
  margin:0 !important;
  border:0 !important;
  border-radius:99px !important;
  background:
    linear-gradient(var(--accent),var(--accent)) left center/2px 100% no-repeat,
    linear-gradient(rgba(41,45,52,.18),rgba(41,45,52,.18)) right center/2px 100% no-repeat !important;
  opacity:.9 !important;
}
.section-head.section-head-left,
.compact-section-head.section-head-left{
  text-align:left !important;
}
.section-head:not(.section-head-left),
.compact-section-head:not(.section-head-left){
  text-align:center !important;
}

/* Page hero title marker: smaller and closer */
.hero h1,
.page-hero h1{
  position:relative !important;
  padding-left:20px !important;
}
.hero h1::before,
.page-hero h1::before{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  top:.12em !important;
  width:7px !important;
  height:.92em !important;
  min-height:34px !important;
  max-height:46px !important;
  margin:0 !important;
  border:0 !important;
  border-radius:99px !important;
  background:
    linear-gradient(var(--accent),var(--accent)) left center/2px 100% no-repeat,
    linear-gradient(rgba(41,45,52,.18),rgba(41,45,52,.18)) right center/2px 100% no-repeat !important;
  opacity:.9 !important;
}

/* Homepage: 6/4 layout, compact image area + news panel */
.home-showcase-grid-final,
.home-showcase-grid{
  grid-template-columns:minmax(0, 6fr) minmax(280px, 4fr) !important;
  gap:22px !important;
  align-items:stretch !important;
}
.home-news-panel,
.showcase-copy{
  min-height:auto !important;
}
.showcase-photo{
  height:300px !important;
  min-height:300px !important;
  padding:14px !important;
}
.showcase-photo img{
  width:auto !important;
  height:auto !important;
  max-width:100% !important;
  max-height:100% !important;
  object-fit:contain !important;
}

/* All CTA panels: remove old blue and use graphite/gold system */
.cta-banner,
.cta-banner.cta-panel{
  background:
    linear-gradient(135deg, rgba(45,50,58,.97), rgba(25,28,33,.98)) !important;
  border:1px solid rgba(184,161,107,.26) !important;
  box-shadow:0 18px 36px rgba(17,20,25,.16) !important;
  color:#fff !important;
}
.cta-banner::after,
.cta-panel::after{
  color:rgba(184,161,107,.16) !important;
}
.cta-banner .eyebrow,
.cta-panel .eyebrow{
  color:rgba(184,161,107,.85) !important;
  border:0 !important;
}
.cta-banner h2,
.cta-panel h2,
.cta-banner p,
.cta-panel p{
  color:#fff !important;
}
.cta-banner .btn-primary,
.cta-panel .btn-primary{
  background:linear-gradient(180deg,#1f2329,#121418) !important;
  color:#fff !important;
  border:1px solid rgba(255,255,255,.12) !important;
}
.cta-banner .btn-secondary,
.cta-panel .btn-secondary{
  background:rgba(255,255,255,.88) !important;
  color:#23272f !important;
  border:1px solid rgba(255,255,255,.32) !important;
}

/* review stars */
.review-stars,
.review-slide-card .review-stars{
  color:var(--accent) !important;
}

/* make background grid visible again even in later pages */
html{
  background:
    radial-gradient(circle at 1px 1px, rgba(184,161,107,.20) 1px, transparent 1.3px) 0 0/24px 24px,
    repeating-linear-gradient(0deg, rgba(41,45,52,.075) 0px, rgba(41,45,52,.075) 1px, transparent 1px, transparent 32px),
    repeating-linear-gradient(90deg, rgba(41,45,52,.075) 0px, rgba(41,45,52,.075) 1px, transparent 1px, transparent 32px),
    linear-gradient(180deg,#f5f5f4 0%,#f0f1f2 50%,#f7f7f6 100%) !important;
}

@media (max-width:1100px){
  .home-showcase-grid-final,
  .home-showcase-grid{
    grid-template-columns:1fr !important;
  }
  .showcase-photo{
    height:280px !important;
    min-height:280px !important;
  }
}
@media (max-width:760px){
  .hero h1,
  .page-hero h1{
    padding-left:17px !important;
  }
  .hero h1::before,
  .page-hero h1::before{
    width:6px !important;
    min-height:28px !important;
  }
  .section-head h2,
  .compact-section-head h2{
    padding-left:15px !important;
  }
  .section-head h2::before,
  .compact-section-head h2::before{
    width:6px !important;
    height:24px !important;
  }
}

/* ===== v13 QA FIX: title marker alignment + centered inner pages + RWD ===== */
html, body{
  overflow-x:hidden;
}
.container{
  width:min(100% - 32px, var(--container)) !important;
  max-width:var(--container) !important;
  margin-left:auto !important;
  margin-right:auto !important;
}
main > .section > .container,
main > .page-hero > .container,
.home-showcase-section > .container{
  margin-left:auto !important;
  margin-right:auto !important;
}

/* All section headers use one centered system. The marker is part of the title, never floating at the page edge. */
.section-head,
.section-head-left,
.compact-section-head{
  max-width:780px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
}
.section-head .eyebrow,
.section-head-left .eyebrow,
.compact-section-head .eyebrow{
  margin-left:auto !important;
  margin-right:auto !important;
  justify-content:center !important;
}
.section-head p,
.section-head-left p,
.compact-section-head p{
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
}
.section-head h2,
.section-head-left h2,
.compact-section-head h2{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:11px !important;
  width:auto !important;
  max-width:100% !important;
  margin-left:auto !important;
  margin-right:auto !important;
  padding-left:0 !important;
  position:relative !important;
  text-align:center !important;
}
.section-head h2::before,
.section-head-left h2::before,
.compact-section-head h2::before{
  content:"" !important;
  position:static !important;
  transform:none !important;
  display:inline-block !important;
  flex:0 0 7px !important;
  width:7px !important;
  height:30px !important;
  min-width:7px !important;
  margin:0 !important;
  border:0 !important;
  border-radius:99px !important;
  background:
    linear-gradient(var(--accent),var(--accent)) left center/2px 100% no-repeat,
    linear-gradient(rgba(41,45,52,.18),rgba(41,45,52,.18)) right center/2px 100% no-repeat !important;
  opacity:.9 !important;
}

/* Page hero marker is also attached to the title text. */
.hero h1,
.page-hero h1{
  display:inline-flex !important;
  align-items:flex-start !important;
  gap:12px !important;
  padding-left:0 !important;
  max-width:100% !important;
  position:relative !important;
}
.hero h1::before,
.page-hero h1::before{
  content:"" !important;
  position:static !important;
  transform:none !important;
  display:inline-block !important;
  flex:0 0 7px !important;
  width:7px !important;
  height:.92em !important;
  min-height:34px !important;
  max-height:46px !important;
  margin:.08em 0 0 !important;
  border:0 !important;
  border-radius:99px !important;
  background:
    linear-gradient(var(--accent),var(--accent)) left center/2px 100% no-repeat,
    linear-gradient(rgba(41,45,52,.18),rgba(41,45,52,.18)) right center/2px 100% no-repeat !important;
  opacity:.9 !important;
}

/* Desktop / tablet nav: switch to hamburger earlier to avoid crowding and horizontal overflow. */
@media (max-width:1080px){
  .menu-toggle{display:inline-flex !important;}
  .site-header{position:sticky;}
  .site-nav{
    position:absolute !important;
    top:calc(100% + 8px) !important;
    right:16px !important;
    left:16px !important;
    width:auto !important;
    max-width:none !important;
    background:rgba(255,255,255,.96) !important;
    border:1px solid var(--line) !important;
    border-radius:18px !important;
    box-shadow:var(--shadow) !important;
    padding:16px !important;
    display:none !important;
    flex-direction:column !important;
    align-items:stretch !important;
    gap:6px !important;
    z-index:60 !important;
  }
  .site-nav.open{display:flex !important;}
  .site-nav a{width:100%; padding:10px 12px !important;}
}

@media (max-width:980px){
  .page-hero-grid,
  .hero-grid,
  .contact-grid,
  .faq-wrap{
    grid-template-columns:1fr !important;
  }
  .page-hero-panel,
  .hero-panel{
    max-width:100% !important;
  }
  .home-showcase-grid-final,
  .home-showcase-grid{
    grid-template-columns:1fr !important;
  }
}

@media (max-width:760px){
  :root{--container:1180px;}
  .container{width:calc(100% - 28px) !important;}
  .nav-wrap{min-height:64px !important;}
  .logo-text{font-size:.98rem !important;}
  .hero,
  .page-hero{padding:38px 0 18px !important;}
  .hero h1,
  .page-hero h1{font-size:clamp(2rem, 10vw, 2.7rem) !important; gap:10px !important;}
  .hero h1::before,
  .page-hero h1::before{flex-basis:6px !important;width:6px !important;min-height:28px !important;}
  .section{padding:34px 0 54px !important;}
  .section-head,
  .section-head-left,
  .compact-section-head{margin-bottom:26px !important;}
  .section-head h2,
  .section-head-left h2,
  .compact-section-head h2{font-size:clamp(1.5rem, 7vw, 2rem) !important; gap:9px !important;}
  .section-head h2::before,
  .section-head-left h2::before,
  .compact-section-head h2::before{height:24px !important; flex-basis:6px !important; width:6px !important;}
  .hero-actions{width:100%; gap:10px !important;}
  .hero-actions .btn{flex:1 1 100%; width:100%;}
  .card-grid,
  .feature-grid,
  .review-grid,
  .page-grid,
  .stats-grid{grid-template-columns:1fr !important;}
  .home-news-panel{padding:22px !important;}
  .showcase-photo{height:240px !important; min-height:240px !important; padding:10px !important;}
  .showcase-caption{padding:14px !important;}
  .showcase-arrow{width:34px !important;height:34px !important;font-size:1.25rem !important;}
  .showcase-dots{bottom:74px !important;}
  .cta-banner,
  .cta-banner.cta-panel,
  .faq-cta-panel{padding:24px !important; grid-template-columns:1fr !important;}
  .footer-wrap{align-items:flex-start !important;}
}

@media (max-width:420px){
  .container{width:calc(100% - 22px) !important;}
  .hero h1,
  .page-hero h1{font-size:clamp(1.8rem, 11vw, 2.25rem) !important;}
  .showcase-photo{height:210px !important; min-height:210px !important;}
  .quick-link-grid{grid-template-columns:1fr !important;}
}

/* Graceful fallback if real slideshow images are not included in the ZIP yet. */
.showcase-photo.image-missing{
  min-height:240px !important;
  background:
    linear-gradient(135deg, rgba(31,35,41,.92), rgba(62,67,76,.82)),
    radial-gradient(circle at 24% 22%, rgba(184,161,107,.22), transparent 30%) !important;
}
.showcase-photo.image-missing::before{
  content:"輪播照片待放入";
  color:rgba(255,255,255,.9);
  letter-spacing:.18em;
  font-weight:900;
  border:1px solid rgba(255,255,255,.24);
  border-radius:999px;
  padding:10px 14px;
  backdrop-filter:blur(8px);
  z-index:2;
}

/* ===== v14 precision fix: title border + true center ===== */
.hero h1::before,
.page-hero h1::before,
.section-head h2::before,
.section-head-left h2::before,
.compact-section-head h2::before{
  content:none !important;
  display:none !important;
}
.hero h1,
.page-hero h1,
.section-head h2,
.section-head-left h2,
.compact-section-head h2{
  display:inline-block !important;
  position:relative !important;
  padding-left:12px !important;
  border-left:3px solid var(--accent) !important;
  box-shadow:inset 2px 0 0 rgba(41,45,52,.14) !important;
  gap:0 !important;
}
.hero h1,
.page-hero h1{
  max-width:100% !important;
  line-height:1.15 !important;
}
.section-head h2,
.section-head-left h2,
.compact-section-head h2{
  max-width:100% !important;
  line-height:1.25 !important;
  margin-left:auto !important;
  margin-right:auto !important;
}
body[data-page="services"] .section-head,
body[data-page="services"] .section-head-left,
body[data-page="features"] .section-head,
body[data-page="features"] .section-head-left,
body[data-page="contact"] .section-head,
body[data-page="contact"] .section-head-left{
  max-width:820px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
  justify-items:center !important;
}
body[data-page="services"] .section-head .eyebrow,
body[data-page="services"] .section-head-left .eyebrow,
body[data-page="features"] .section-head .eyebrow,
body[data-page="features"] .section-head-left .eyebrow,
body[data-page="contact"] .section-head .eyebrow,
body[data-page="contact"] .section-head-left .eyebrow{
  justify-content:center !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}
body[data-page="services"] .section-head p,
body[data-page="services"] .section-head-left p,
body[data-page="features"] .section-head p,
body[data-page="features"] .section-head-left p,
body[data-page="contact"] .section-head p,
body[data-page="contact"] .section-head-left p{
  max-width:720px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
}
body[data-page="services"] .card-grid,
body[data-page="services"] .page-grid,
body[data-page="services"] .tag-list,
body[data-page="features"] .feature-grid,
body[data-page="features"] .page-grid,
body[data-page="contact"] .store-regions,
body[data-page="contact"] .feature-grid{
  margin-left:auto !important;
  margin-right:auto !important;
}
@media (max-width:760px){
  .hero h1,
  .page-hero h1{
    padding-left:10px !important;
    border-left-width:3px !important;
    font-size:clamp(2rem, 9.2vw, 2.65rem) !important;
  }
  .section-head h2,
  .section-head-left h2,
  .compact-section-head h2{
    padding-left:10px !important;
    border-left-width:3px !important;
  }
  body[data-page="services"] .section-head,
  body[data-page="features"] .section-head,
  body[data-page="contact"] .section-head{
    max-width:100% !important;
  }
}
