/*
Theme Name: IMI-Asia
Theme URI: https://www.imi-asia.com
Author: IMI-Asia Team
Author URI: https://www.imi-asia.com
Description: 专注跨境领域的媒体与数据平台官方主题，支持三端响应式，内置SEO与GEO优化结构。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: imiasia
Tags: responsive-layout, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  /* Colors */
  --color-primary:      #C41E3A;
  --color-primary-dark: #A01830;
  --color-primary-light:#E8384F;
  --color-white:        #FFFFFF;
  --color-dark:         #1A1A1A;
  --color-gray-dark:    #333333;
  --color-gray:         #5C5C5C;
  --color-gray-light:   #999999;
  --color-border:       #E5E5E5;
  --color-bg:           #F8F8F8;
  --color-footer-bg:    #1A1A1A;

  /* Typography */
  --font-heading: 'Noto Serif SC', 'Source Han Serif SC', Georgia, serif;
  --font-body:    'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
  --font-en:      'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Font Sizes */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.8125rem; /* 13px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.125rem;  /* 18px */
  --text-xl:   1.375rem;  /* 22px */
  --text-2xl:  1.625rem;  /* 26px */
  --text-3xl:  2.375rem;  /* 38px */
  --text-4xl:  3.25rem;   /* 52px */

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container-max:  1240px;
  --container-pad:  1.5rem;
  --header-height:  72px;
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      12px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.14);

  /* Transitions */
  --transition: 0.2s ease;
}/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}img, video {
  max-width: 100%;
  height: auto;
  display: block;
}a {
  color: #7f8790;
  text-decoration: none;
  transition: color var(--transition);
}a:hover { color: var(--color-primary-dark); }ul, ol { list-style: none; }h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-dark);
}h1 { font-size: var(--text-4xl); }h2 { font-size: var(--text-3xl); }h3 { font-size: var(--text-2xl); }h4 { font-size: var(--text-xl); }h5 { font-size: var(--text-lg); }h6 { font-size: var(--text-base); }p { margin-bottom: var(--space-4); }p:last-child { margin-bottom: 0; }/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}.section {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}.section--gray { background-color: var(--color-bg); }.section--dark {
  background-color: var(--color-footer-bg);
  color: var(--color-white);
}.section--dark h2, .section--dark h3 { color: var(--color-white); }.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}.section-header h2 { margin-bottom: var(--space-4); }.section-header p {
  font-size: var(--text-lg);
  color: var(--color-gray);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}.grid { display: grid; gap: var(--space-8); }.grid--2 { grid-template-columns: repeat(2, 1fr); }.grid--3 { grid-template-columns: repeat(3, 1fr); }.grid--4 { grid-template-columns: repeat(4, 1fr); }.flex { display: flex; }.flex--center { align-items: center; justify-content: center; }.flex--between { align-items: center; justify-content: space-between; }.flex--gap { gap: var(--space-4); }/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  justify-self: end;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  line-height: 1;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}.btn--primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
}.btn--outline {
  background-color: transparent;
  color: #7f8790;
  border-color: var(--color-primary);
}.btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}.btn--white {
  background-color: var(--color-white);
  color: #7f8790;
  border-color: var(--color-white);
}.btn--white:hover {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}.btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}.btn--outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}.btn--sm { padding: 0.5rem 1.25rem; font-size: var(--text-sm); }.btn--lg { padding: 1rem 2.25rem; font-size: var(--text-lg); }/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  transition: box-shadow var(--transition);
}.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  position: relative;
}.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}.site-logo img {
  height: 40px;
  width: auto;
}.site-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-dark);
}.site-logo-text span { color: var(--color-primary); }.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}.nav-menu a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-gray-dark);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}.nav-menu a:hover, .nav-menu .current-menu-item > a {
  color: var(--color-primary);
  background-color: rgba(196, 30, 58, 0.06);
}.nav-cta { margin-left: var(--space-4); }/* Hamburger */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-direction: column;
  gap: 5px;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  box-shadow: 0 10px 24px rgba(196, 30, 58, 0.22);
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
}.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }.nav-toggle.active span:nth-child(2) { opacity: 0; }.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-white);
  z-index: 999;
  overflow-y: auto;
  padding: var(--space-8) var(--container-pad);
  flex-direction: column;
  gap: var(--space-2);
}.mobile-nav.active { display: flex; }.mobile-nav .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}.mobile-nav .nav-menu li {
  margin: 0;
  padding: 0;
}.mobile-nav a {
  display: block;
  padding: var(--space-4);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
}.mobile-nav a:hover { color: var(--color-primary); }.mobile-nav .btn { margin-top: var(--space-4); text-align: center; }/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background-color: var(--color-dark);
  overflow: hidden;
}.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.75) 0%, rgba(196,30,58,0.35) 100%);
}.hero-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  max-width: 680px;
  width: min(100%, 680px);
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}.hero-tag {
  display: inline-block;
  padding: var(--space-1) var(--space-4);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: 20px;
  margin-bottom: var(--space-6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}.hero h1 {
  font-size: var(--text-4xl);
  color: var(--color-white);
  margin-bottom: var(--space-6);
  line-height: 1.2;
}.hero p {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-10);
  line-height: 1.6;
}.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2d1a20 100%);
  padding: var(--space-16) 0;
  color: var(--color-white);
}.page-hero__title {
  margin-top: 1.5rem;
}.page-hero h1 { color: var(--color-white); margin-bottom: var(--space-4); }/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  margin-top: var(--space-4);
}.breadcrumb a { color: rgba(255,255,255,0.65); }.breadcrumb a:hover { color: var(--color-white); }.breadcrumb-sep { color: rgba(255,255,255,0.4); }/* ============================================
   CARDS
   ============================================ */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}.card-img {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
  background-color: var(--color-bg);
}.card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}.card:hover .card-img img { transform: scale(1.04); }.card-body { padding: var(--space-6); }.card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-gray-light);
}.card-tag {
  display: inline-block;
  padding: 2px var(--space-3);
  background-color: rgba(196, 30, 58, 0.08);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}.card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}.card h3 a {
  color: var(--color-dark);
  text-decoration: none;
}.card h3 a:hover { color: var(--color-primary); }.card p {
  font-size: 0.9375rem;
  color: var(--color-gray);
  margin-bottom: var(--space-4);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}.card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}.card-link:hover { color: var(--color-primary-dark); }.card-link::after { content: '→'; transition: transform var(--transition); }.card-link:hover::after { transform: translateX(3px); }/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-16) 0;
}.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: left;
}.stat-item h3 {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}.stat-item p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
}/* ============================================
   FEATURES / ICONS
   ============================================ */
.feature-card {
  text-align: center;
  padding: var(--space-10) var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  transition: box-shadow var(--transition), border-color var(--transition);
}.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}.feature-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(196, 30, 58, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  font-size: 1.75rem;
  color: var(--color-primary);
}.feature-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}.feature-card p {
  font-size: 0.9375rem;
  color: var(--color-gray);
  margin-bottom: 0;
}/* ============================================
   FILTERS / SEARCH BAR
   ============================================ */
.filter-bar {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}.filter-search {
  flex: 1;
  min-width: 200px;
  position: relative;
}.filter-search input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 1.5px solid var(--color-border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-dark);
  background-color: var(--color-bg);
  outline: none;
  transition: border-color var(--transition);
}.filter-search input:focus { border-color: var(--color-primary); background-color: var(--color-white); }.filter-search-icon {
  position: absolute;
  left: 0.88rem;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  color: var(--color-gray-light);
  pointer-events: none;
}.filter-select {
  position: relative;
}.filter-select select {
  appearance: none;
  padding: 0.75rem 2.5rem 0.75rem 1.25rem;
  border: 1.5px solid var(--color-border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-dark);
  background-color: var(--color-white);
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition);
}.filter-select select:focus { border-color: var(--color-primary); }.filter-select::after {
  content: '▾';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1;
}/* ============================================
   ACTIVITIES TABLE
   ============================================ */
.activities-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}.activities-table thead {
  background-color: var(--color-primary);
  color: var(--color-white);
}.activities-table thead th {
  padding: var(--space-4) var(--space-6);
  text-align: left;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}.activities-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background-color var(--transition);
}.activities-table tbody tr:last-child { border-bottom: none; }.activities-table tbody tr:hover { background-color: rgba(196, 30, 58, 0.03); }.activities-table tbody td {
  padding: var(--space-4) var(--space-6);
  font-size: 0.9375rem;
  color: var(--color-gray-dark);
  vertical-align: middle;
}.activities-table .date-cell {
  color: var(--color-gray);
  font-size: var(--text-sm);
  white-space: nowrap;
  font-family: var(--font-en);
}.activities-table .title-cell a {
  color: var(--color-dark);
  font-weight: 500;
  text-decoration: none;
}.activities-table .title-cell a:hover { color: var(--color-primary); }.activities-table .city-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px var(--space-3);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 3px;
  font-size: var(--text-xs);
  color: var(--color-gray);
  line-height: 1;
}/* View Toggle */
.view-toggle {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}.view-btn {
  padding: var(--space-2) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: var(--color-white);
  cursor: pointer;
  font-size: var(--text-sm);
  transition: all var(--transition);
}.view-btn.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}/* ============================================
   BLOG / GROUPED SECTIONS
   ============================================ */
.group-section { margin-bottom: var(--space-16); }.group-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--color-primary);
}.group-header h3 {
  font-size: var(--text-2xl);
  margin-bottom: 0;
}.group-header .group-count {
  font-size: var(--text-sm);
  color: var(--color-gray-light);
  background-color: var(--color-bg);
  padding: 2px var(--space-3);
  border-radius: 20px;
}/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--space-16);
  align-items: start;
}.contact-info h2 { margin-bottom: var(--space-6); }.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}.contact-item-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(196, 30, 58, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
  color: var(--color-primary);
}.contact-item-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-1);
}.contact-item-text p { margin-bottom: 0; color: var(--color-gray); }.wechat-qr {
  margin-top: var(--space-8);
  text-align: center;
}.wechat-qr img {
  width: 180px;
  height: 180px;
  border: 4px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  margin: 0 auto var(--space-3);
}.wechat-qr p {
  font-size: var(--text-sm);
  color: var(--color-gray);
  margin-bottom: 0;
}/* Contact Form */
.contact-form-wrapper {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  box-shadow: var(--shadow-sm);
}.contact-form-wrapper h3 { margin-bottom: var(--space-8); }.form-group { margin-bottom: var(--space-6); }.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--color-gray-dark);
}.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-dark);
  background-color: var(--color-white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}.form-group textarea {
  min-height: 140px;
  resize: vertical;
}.form-group input::placeholder, .form-group textarea::placeholder { color: var(--color-gray-light); }/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: var(--color-footer-bg);
  color: rgba(255,255,255,0.7);
  padding-top: var(--space-20);
}.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}.footer-brand .site-logo { margin-bottom: var(--space-4); }.footer-brand .site-logo-text { color: var(--color-white); }.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
}.footer-col h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-6);
  font-family: var(--font-body);
}.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }.footer-col ul li a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}.footer-col ul li a:hover { color: var(--color-white); }.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: var(--space-3);
}.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-12);
}.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-dark);
  text-decoration: none;
  transition: all var(--transition);
}.page-link:hover, .page-link.current {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.wp-block-image { margin: var(--space-8) 0; }.wp-block-image img { border-radius: var(--radius-md); }.entry-content h2, .entry-content h3, .entry-content h4 { margin-top: var(--space-8); margin-bottom: var(--space-4); }.entry-content p { margin-bottom: var(--space-6); }.entry-content ul, .entry-content ol { padding-left: var(--space-8); margin-bottom: var(--space-6); }.entry-content ul { list-style: disc; }.entry-content ol { list-style: decimal; }.entry-content li { margin-bottom: var(--space-2); }.entry-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding: var(--space-4) var(--space-6);
  background-color: rgba(196, 30, 58, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: var(--space-8) 0;
  font-style: italic;
}/* Accessibility */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}/* skip-link：正常状态彻底移出视口，仅键盘 Tab 时浮现 */
.skip-link {
  position: fixed;
  top: -100vh;
  left: 1rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 99999;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: top 0.15s;
}.skip-link:focus { top: 1rem; }/* ── 全站悬浮快捷联系 ─────────────────────────────── */
.floating-assist {
  position: fixed;
  right: max(0.6rem, env(safe-area-inset-right));
  bottom: clamp(5.5rem, 18vh, 9rem);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
}.floating-assist__dock {
  display: grid;
  gap: 0.6rem;
  width: min(15.25rem, calc(100vw - 1.2rem));
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transform-origin: 100% 100%;
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, max-height 0.22s ease;
}.floating-assist.is-expanded .floating-assist__dock {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  max-height: 1000px;
}.floating-assist__action {
  width: 100%;
  min-height: 64px;
  padding: 0.75rem 0.9rem;
  border-radius: 22px;
  border: 1px solid rgba(196, 30, 58, 0.12);
  appearance: none;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(48, 31, 14, 0.12);
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  text-decoration: none;
  color: var(--color-dark);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}.floating-assist__action:hover, .floating-assist__action:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(196, 30, 58, 0.22);
  box-shadow: 0 22px 48px rgba(48, 31, 14, 0.14);
}.floating-assist__action--wechat {
  appearance: none;
  cursor: pointer;
  text-align: left;
}.floating-assist__action--no-icon {
  grid-template-columns: minmax(0, 1fr);
}.floating-assist__toggle {
  --assist-toggle-size: 2.95rem;
  --assist-toggle-icon-size: 20px;
  width: var(--assist-toggle-size);
  height: var(--assist-toggle-size);
  min-width: var(--assist-toggle-size);
  min-height: var(--assist-toggle-size);
  padding: 0;
  border: 1px solid rgba(196, 30, 58, 0.16);
  appearance: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-primary);
  box-shadow: 0 14px 34px rgba(48, 31, 14, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.55rem, 2.2vw, 2.1rem) clamp(1.8rem, 2.4vw, 2.45rem);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}.floating-assist__toggle--sm {
  --assist-toggle-size: 2.55rem;
  --assist-toggle-icon-size: 16px;
}.floating-assist__toggle--lg {
  --assist-toggle-size: 3.35rem;
  --assist-toggle-icon-size: 22px;
}.floating-assist__toggle--with-text {
  width: auto;
  padding: 0 0.9rem 0 0.74rem;
  gap: 0.44rem;
}.floating-assist__toggle--text-only {
  padding: 0 0.92rem;
}.floating-assist__toggle:hover, .floating-assist__toggle:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(196, 30, 58, 0.28);
  box-shadow: 0 18px 40px rgba(48, 31, 14, 0.16);
  background: #ffffff;
}.floating-assist__toggle-icon {
  display: grid;
  place-items: center;
  transition: transform 0.18s ease;
}.floating-assist__toggle-image {
  width: var(--assist-toggle-icon-size);
  height: var(--assist-toggle-icon-size);
  object-fit: contain;
  display: block;
}.floating-assist__toggle-label {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}.floating-assist.is-expanded .floating-assist__toggle-icon {
  transform: rotate(45deg);
}.floating-assist.is-expanded .floating-assist__toggle--custom-image .floating-assist__toggle-icon {
  transform: none;
}.floating-assist__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}.floating-assist__icon--bg-rose {
  background: rgba(196, 30, 58, 0.12);
  color: var(--color-primary);
}.floating-assist__icon--bg-mint {
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
}.floating-assist__icon--bg-sand {
  background: rgba(185, 140, 70, 0.14);
  color: #9a6314;
}.floating-assist__icon--bg-slate {
  background: rgba(71, 85, 105, 0.14);
  color: #334155;
}.floating-assist__icon--bg-none {
  background: transparent;
}.floating-assist__icon svg {
  display: block;
}.floating-assist__icon-image {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}.floating-assist__toggle-icon svg {
  width: var(--assist-toggle-icon-size);
  height: var(--assist-toggle-icon-size);
  display: block;
}.floating-assist__label strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}.floating-assist__label span {
  display: block;
  margin-top: 0.2rem;
  color: var(--color-gray);
  font-size: 0.8rem;
  line-height: 1.25;
}.wechat-qr-modal[hidden] {
  display: none;
}.wechat-qr-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 1rem;
}.wechat-qr-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(26, 20, 18, 0.56);
  backdrop-filter: blur(4px);
}.wechat-qr-modal__dialog {
  position: relative;
  width: min(920px, calc(100vw - 1.5rem));
  max-height: calc(100vh - 1.5rem);
  overflow: auto;
  border-radius: 30px;
  border: 1px solid rgba(196, 30, 58, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 80px rgba(18, 15, 13, 0.22);
  padding: clamp(1.2rem, 2vw, 1.8rem);
}.wechat-qr-modal__close {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  width: 42px;
  height: 42px;
  border: 0;
  appearance: none;
  border-radius: 999px;
  background: rgba(246, 241, 238, 0.96);
  color: var(--color-dark);
  display: grid;
  place-items: center;
  cursor: pointer;
}.wechat-qr-modal__eyebrow {
  margin-bottom: 0.4rem;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}.wechat-qr-modal__dialog h3 {
  margin-bottom: 0.45rem;
}.wechat-qr-modal__intro {
  margin-bottom: 1rem;
  color: var(--color-gray);
}.wechat-qr-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}body.has-modal-open {
  overflow: hidden;
}.wechat-qr-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(196, 30, 58, 0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,244,245,0.95) 100%);
}.wechat-qr-card__media img, .wechat-qr-card__placeholder {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--color-border);
}.wechat-qr-card__media img {
  display: block;
  object-fit: contain;
  background: #fff;
}.wechat-qr-card__image-link {
  display: block;
}.wechat-qr-card__placeholder {
  min-height: 180px;
  display: grid;
  place-items: center;
  background: rgba(196, 30, 58, 0.06);
  color: var(--color-primary);
  font-weight: 700;
}.wechat-qr-card__content strong {
  display: block;
  margin-bottom: 0.35rem;
}.wechat-qr-card__content p {
  margin-bottom: 0.45rem;
  color: var(--color-gray);
  line-height: 1.6;
}.wechat-qr-card__meta {
  color: var(--color-dark);
  font-weight: 700;
}.wechat-qr-card__save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}.wechat-qr-card__save:hover, .wechat-qr-card__save:focus-visible {
  opacity: 0.82;
}[data-theme="dark"] .floating-assist__action, [data-theme="dark"] .wechat-qr-modal__dialog, [data-theme="dark"] .wechat-qr-card {
  background: rgba(28, 28, 28, 0.96);
  color: #fff;
}[data-theme="dark"] .floating-assist__label span, [data-theme="dark"] .wechat-qr-modal__intro, [data-theme="dark"] .wechat-qr-card__content p {
  color: rgba(255, 255, 255, 0.72);
}[data-theme="dark"] .wechat-qr-card {
  border-color: rgba(255, 255, 255, 0.08);
}[data-theme="dark"] .wechat-qr-modal__close {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}/* ============================================
   RESPONSIVE — TABLET (768px–1199px)
   ============================================ */
@media (max-width: 1199px) {
  :root {
    --text-4xl: 2.5rem;
    --text-3xl: 2rem;
  }

  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-10); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: var(--space-10); }
}/* ============================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================ */
@media (max-width: 767px) {
  .floating-assist--mobile-hidden {
    display: none;
  }

  :root {
    --text-4xl: 1.875rem;
    --text-3xl: 1.625rem;
    --text-2xl: 1.375rem;
    --text-xl:  1.25rem;
    --header-height: 56px;
  }

  .floating-assist {
    right: max(0.35rem, env(safe-area-inset-right));
    bottom: clamp(10rem, 33vh, 16rem);
    gap: 0.45rem;
  }
  .floating-assist__action {
    min-height: 52px;
    padding: 0.55rem 0.68rem;
    border-radius: 18px;
    gap: 0.62rem;
  }
  .floating-assist__dock {
    width: min(12.4rem, calc(100vw - 0.55rem));
    gap: 0.45rem;
    transform: translateY(10px) translateX(4px) scale(0.98);
  }
  .floating-assist__icon {
    width: 30px;
    height: 30px;
    border-radius: 11px;
  }
  .floating-assist__toggle {
    --assist-toggle-size: 3rem;
    --assist-toggle-icon-size: 18px;
  }
  .floating-assist__toggle--with-text {
    padding: 0 0.74rem 0 0.62rem;
    gap: 0.36rem;
  }
  .floating-assist__toggle-label {
    font-size: 0.8rem;
  }
  .wechat-qr-modal {
    padding: 0.6rem;
  }
  .wechat-qr-modal__dialog {
    width: min(100%, calc(100vw - 1.2rem));
    max-height: calc(100vh - 1.2rem);
    border-radius: 24px;
  }
  .wechat-qr-modal__grid {
    grid-template-columns: 1fr;
  }
  .wechat-qr-card {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0.85rem;
  }
  .wechat-qr-card__placeholder {
    min-height: 120px;
  }

  .site-nav { display: none; }
  .nav-toggle {
    display: flex;
    margin-left: auto;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .hero { min-height: 360px; }
  .hero-content {
    max-width: 100%;
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }
  .hero h1 {
    font-size: 1.625rem;
    line-height: 1.18;
    max-width: 11ch;
  }
  .hero p {
    font-size: var(--text-base);
    max-width: 100%;
    margin-bottom: var(--space-8);
  }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .section { padding-top: var(--space-12); padding-bottom: var(--space-12); }

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

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item h3 { font-size: 2.25rem; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .contact-grid { grid-template-columns: 1fr; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-search { min-width: unset; }

  .activities-table { display: block; overflow-x: auto; }

  .contact-form-wrapper { padding: var(--space-6); }

  .section-header h2 { font-size: 1.625rem; }

  .view-toggle { justify-content: flex-end; }
}/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }.text-primary { color: var(--color-primary); }.text-gray { color: var(--color-gray); }.text-white { color: var(--color-white); }.mt-0 { margin-top: 0 !important; }.mb-0 { margin-bottom: 0 !important; }.hidden { display: none !important; }/* Loading State */
.skeleton {
  background: linear-gradient(90deg, var(--color-bg) 25%, #efefef 50%, var(--color-bg) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton-loading {0% { background-position: 200% 0; }100% { background-position: -200% 0; }
}/* ============================================
   THEME SWITCHER COMPONENT
   ============================================ */
.theme-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: var(--color-border);
  border-radius: 100px;
  padding: 3px;
  margin-right: 0.625rem;
}.theme-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  user-select: none;
  flex-shrink: 0;
}.theme-btn:hover { color: var(--color-dark); }.theme-btn.is-active {
  background: #fff;
  color: var(--color-dark);
  box-shadow: 0 1px 5px rgba(0,0,0,0.18);
}/* Mobile switcher */
.theme-switcher--mobile {
  justify-content: center;
  margin: 1rem auto 0;
  width: fit-content;
}/* ============================================
   THEME TRANSITION — smooth on switch
   ============================================ */
.theme-transitioning, .theme-transitioning *, .theme-transitioning *::before, .theme-transitioning *::after {
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    color 0.2s ease,
    box-shadow 0.28s ease !important;
}/* ============================================
   DARK THEME  ——  data-theme="dark"
   ============================================ */
[data-theme="dark"] {
  --color-bg:           #0D0D0D;
  --color-white:        #1C1C1C;
  --color-dark:         #F0F0F0;
  --color-gray-dark:    #CCCCCC;
  --color-gray:         #8A8A8A;
  --color-gray-light:   #505050;
  --color-border:       #2C2C2C;
  --color-footer-bg:    #070707;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.5);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.55);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.65);
}[data-theme="dark"] body {
  background-color: #0D0D0D;
  color: #E0E0E0;
}/* Header */
[data-theme="dark"] .site-header {
  background: #111111;
  border-bottom-color: #2C2C2C;
}[data-theme="dark"] .site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}[data-theme="dark"] .site-logo-text { color: #F0F0F0; }[data-theme="dark"] .site-logo-text span { color: var(--color-primary); }[data-theme="dark"] .nav-menu a { color: #C8C8C8; }[data-theme="dark"] .nav-menu a:hover, [data-theme="dark"] .nav-menu .current-menu-item > a { color: #FFFFFF; }[data-theme="dark"] .nav-toggle span { background: #E0E0E0; }/* Mobile nav */
[data-theme="dark"] .mobile-nav {
  background: #111111;
  border-top-color: #2C2C2C;
}[data-theme="dark"] .mobile-nav a { color: #D0D0D0; border-bottom-color: #2C2C2C; }/* Cards */
[data-theme="dark"] .card {
  background: #1A1A1A;
  border-color: #2C2C2C;
}[data-theme="dark"] .card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.5); }/* Sections */
[data-theme="dark"] .section--alt, [data-theme="dark"] section[style*="background:#F8F8F8"], [data-theme="dark"] section[style*="background: #F8F8F8"] { background: #161616 !important; }/* Forms */
[data-theme="dark"] input, [data-theme="dark"] select, [data-theme="dark"] textarea {
  background: #1A1A1A;
  border-color: #2C2C2C;
  color: #E0E0E0;
}[data-theme="dark"] input::placeholder, [data-theme="dark"] textarea::placeholder { color: #555; }[data-theme="dark"] input:focus, [data-theme="dark"] select:focus, [data-theme="dark"] textarea:focus {
  background: #222222;
  border-color: var(--color-primary);
}/* Contact form wrapper */
[data-theme="dark"] .contact-form-wrapper {
  background: #1A1A1A;
  border-color: #2C2C2C;
}/* Activities */
[data-theme="dark"] .act-top-bar {
  background: #1A1A1A;
  border-color: #2C2C2C;
}[data-theme="dark"] .activities-table thead { background: #1A1A1A; }[data-theme="dark"] .activities-table tbody tr { border-bottom-color: #2C2C2C; }[data-theme="dark"] .activities-table tbody tr:hover { background: #1F1F1F; }[data-theme="dark"] .act-select { background: #1A1A1A; color: #E0E0E0; border-color: #2C2C2C; }[data-theme="dark"] .act-search-box input { background: #1A1A1A; border-color: #2C2C2C; color: #E0E0E0; }/* Blog */
[data-theme="dark"] .blog-region-label {
  background: #1A1A1A;
  border-color: #2C2C2C;
}[data-theme="dark"] .blog-filter-bar, [data-theme="dark"] .filter-dropdown-panel {
  background: #1A1A1A;
  border-color: #2C2C2C;
}/* Theme switcher in dark mode */
[data-theme="dark"] .theme-switcher { background: #2C2C2C; }[data-theme="dark"] .theme-btn { color: #777; }[data-theme="dark"] .theme-btn:hover { color: #E0E0E0; }[data-theme="dark"] .theme-btn.is-active {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 1px 6px rgba(196,30,58,0.4);
}/* Page hero stays dark */
[data-theme="dark"] .page-hero { background: #0A0A0A; }/* Skeleton in dark */
[data-theme="dark"] .skeleton {
  background: linear-gradient(90deg, #1A1A1A 25%, #222 50%, #1A1A1A 75%);
}/* ── 文字颜色全面覆盖 ──────────────────────────────── */
[data-theme="dark"] h1, [data-theme="dark"] h2, [data-theme="dark"] h3, [data-theme="dark"] h4, [data-theme="dark"] h5, [data-theme="dark"] h6 { color: #F0F0F0; }[data-theme="dark"] p { color: #C8C8C8; }[data-theme="dark"] li { color: #C8C8C8; }[data-theme="dark"] strong, [data-theme="dark"] b { color: #EEEEEE; }[data-theme="dark"] label { color: #C0C0C0; }/* 普通链接 */
[data-theme="dark"] a:not(.btn):not(.theme-btn):not(.nav-menu a) { color: #DDDDDD; }[data-theme="dark"] a:not(.btn):not(.theme-btn):hover { color: #FFFFFF; }/* ── 所有 section 背景 ────────────────────────────── */
[data-theme="dark"] section, [data-theme="dark"] .section { background-color: #0D0D0D; }[data-theme="dark"] .section--alt { background-color: #161616 !important; }/* 带内联 background 的 section */
[data-theme="dark"] section[style*="background"] { background: #161616 !important; }/* ── 卡片内文字 ───────────────────────────────────── */
[data-theme="dark"] .card-body h3, [data-theme="dark"] .card-body h3 a { color: #EEEEEE; }[data-theme="dark"] .card-body p { color: #AAAAAA; }[data-theme="dark"] .card-meta, [data-theme="dark"] .card-meta time, [data-theme="dark"] .card-meta span { color: #888888; }[data-theme="dark"] .card-tag {
  background: #2A2A2A;
  color: #AAAAAA;
}[data-theme="dark"] .card-link { color: var(--color-primary); }/* ── 表格文字 ─────────────────────────────────────── */
[data-theme="dark"] .activities-table th, [data-theme="dark"] .activities-table td { color: #CCCCCC; }[data-theme="dark"] .activities-table .title-cell a { color: #E0E0E0; }[data-theme="dark"] .activities-table .title-cell a:hover { color: #FFFFFF; }[data-theme="dark"] .city-badge {
  background: #2A2A2A;
  color: #BBBBBB;
}[data-theme="dark"] .date-cell time { color: #BBBBBB; }[data-theme="dark"] .act-result-count { color: #888888; }[data-theme="dark"] .act-reset-link { color: #666666; }/* ── 联系页 ───────────────────────────────────────── */
[data-theme="dark"] .contact-item-text strong { color: #EEEEEE; }[data-theme="dark"] .contact-item-text p, [data-theme="dark"] .contact-item-text a { color: #BBBBBB; }[data-theme="dark"] .wechat-qr p { color: #888888; }/* ── 博客分组标签 ─────────────────────────────────── */
[data-theme="dark"] .blog-region-label { color: #888888; }[data-theme="dark"] .blog-section-title { color: #F0F0F0; }/* ── 表单 label ───────────────────────────────────── */
[data-theme="dark"] .form-group label { color: #CCCCCC; }[data-theme="dark"] .form-group label a { color: #AAAAAA; }/* ── 统计数字区 ───────────────────────────────────── */
[data-theme="dark"] .stat-item h3 { color: #FFFFFF; }[data-theme="dark"] .stat-item p { color: #888888; }/* ── Section Header ──────────────────────────────── */
[data-theme="dark"] .section-header h2 { color: #F0F0F0; }[data-theme="dark"] .section-header p { color: #888888; }[data-theme="dark"] .section-header .section-label { color: var(--color-primary); }/* ============================================
   2026 REFINEMENTS
   ============================================ */
.theme-switcher { display: none !important; }.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}body {
  background:
    radial-gradient(circle at top right, rgba(196, 30, 58, 0.08), transparent 26%),
    linear-gradient(180deg, #fffdfa 0%, #fff 36%, #fff9f8 100%);
  color: #1c1718;
}.section {
  position: relative;
}.section--gray {
  background: linear-gradient(180deg, #fcf7f5 0%, #ffffff 100%);
}.btn {
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.08);
}.btn--primary {
  box-shadow: 0 18px 38px rgba(196, 30, 58, 0.24);
}.btn--outline, .btn--outline-white {
  background: rgba(255, 255, 255, 0.9);
}.site-header {
  height: 82px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  background: rgba(255, 252, 249, 0.94);
  backdrop-filter: blur(10px);
}.site-header.scrolled {
  box-shadow: 0 20px 40px rgba(92, 48, 55, 0.08);
}.header-inner {
  height: 82px;
  gap: var(--space-8);
}.site-logo {
  gap: clamp(2.25rem, 3vw, 3rem) clamp(2.5rem, 3.2vw, 3.5rem);
}.site-logo img, .site-logo--custom .custom-logo {
  height: 56px;
  width: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}.site-logo--custom .custom-logo-link {
  display: flex;
  align-items: center;
}.site-nav {
  gap: var(--space-4);
}.nav-menu {
  gap: 1.6rem;
}.nav-menu a {
  position: relative;
  padding: 0.35rem 0;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #382c2e;
}.nav-menu a:hover, .nav-menu .current-menu-item > a {
  color: var(--color-primary);
  background: transparent;
  box-shadow: none;
}.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.8rem;
  height: 3px;
  border-radius: 999px;
  background: var(--color-primary);
  transform: scaleX(0.45);
  transform-origin: center;
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}.nav-menu a:hover::after, .nav-menu .current-menu-item > a::after {
  opacity: 1;
  transform: scaleX(1);
}.nav-cta .btn {
  min-height: 50px;
  padding-inline: 1.55rem;
}.nav-toggle {
  background: #fff;
  border-color: rgba(196, 30, 58, 0.16);
  box-shadow: 0 12px 26px rgba(196, 30, 58, 0.12);
}.nav-toggle span {
  background-color: var(--color-primary);
}.hero {
  min-height: 680px;
  background:
    radial-gradient(circle at 78% 14%, rgba(196, 30, 58, 0.16), transparent 30%),
    linear-gradient(135deg, #fff7f5 0%, #fffdfc 48%, #fff3f5 100%);
}.hero-bg {
  opacity: 0.14;
  background-size: 980px;
  background-position: right -80px bottom -20px;
}.hero-overlay {
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,250,249,0.95) 100%);
}.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.82fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  padding-top: var(--space-24);
  padding-bottom: var(--space-20);
}.hero-content {
  max-width: none;
  color: var(--color-dark);
  padding: 0;
}.hero-tag {
  background: rgba(196, 30, 58, 0.08);
  color: var(--color-primary);
  border: 1px solid rgba(196, 30, 58, 0.16);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}.hero h1 {
  color: #201719;
  font-size: clamp(3rem, 5vw, 4.85rem);
  line-height: 1.02;
  max-width: 10.8ch;
  margin-bottom: var(--space-6);
}.hero p {
  color: #59484c;
  font-size: 1.16rem;
  max-width: 58ch;
  margin-bottom: var(--space-8);
}.hero-heading__line {
  display: inline;
}.hero-lead--mobile, .hero-points.hero-points--mobile {
  display: none;
}.hero-points {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 var(--space-10);
}.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #413337;
  font-size: 1rem;
  font-weight: 600;
}.hero-points li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--color-primary);
  box-shadow: 0 0 0 6px rgba(196, 30, 58, 0.1);
}.hero-actions {
  gap: 0.9rem;
}.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 30px;
  border: 1px solid rgba(196, 30, 58, 0.14);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 48px rgba(92, 48, 55, 0.1);
  backdrop-filter: blur(12px);
}.hero-panel__kicker {
  margin-bottom: 0;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}.hero-panel__stats {
  display: grid;
  gap: 0.8rem;
}.hero-panel__stat {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(249,240,242,0.96) 100%);
  border: 1px solid rgba(196, 30, 58, 0.1);
}.hero-panel__stat strong {
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: 2rem;
  line-height: 1;
}.hero-panel__stat span {
  color: #5a4b4e;
  font-size: 0.95rem;
}.hero-panel__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}.hero-panel__topics span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(196, 30, 58, 0.14);
  color: #503d41;
  font-size: 0.82rem;
  font-weight: 700;
}.hero-panel__note {
  margin-bottom: 0;
  color: var(--color-gray);
  font-size: 0.93rem;
  line-height: 1.7;
}.section-header {
  margin-bottom: var(--space-10);
}.section-header--left {
  max-width: 820px;
}.section-header--left h2 {
  max-width: 14ch;
}.feature-card {
  position: relative;
  text-align: left;
  padding: var(--space-10);
  border-radius: 28px;
  border: 1px solid rgba(196, 30, 58, 0.1);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 40px rgba(92, 48, 55, 0.08);
}.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 56px rgba(92, 48, 55, 0.12);
  border-color: rgba(196, 30, 58, 0.22);
}.feature-icon {
  display: none;
}.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: var(--space-6);
  border-radius: 50%;
  background: rgba(196, 30, 58, 0.1);
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}.stats-section {
  background: transparent;
  color: var(--color-dark);
  padding-top: 0;
  margin-top: calc(var(--space-12) * -1);
}.stats-grid {
  gap: var(--space-4);
}.stat-item {
  padding: 1.35rem 1.45rem;
  border-radius: 24px;
  border: 1px solid rgba(196, 30, 58, 0.1);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 34px rgba(92, 48, 55, 0.08);
  text-align: left;
}.stat-item h3 {
  color: var(--color-primary);
  font-size: 2.35rem;
  margin-bottom: 0.35rem;
}.stat-item p {
  color: #5e4d51;
}.filter-toolbar {
  padding: 1rem;
  gap: 0.9rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(196, 30, 58, 0.1);
  box-shadow: 0 18px 40px rgba(92, 48, 55, 0.08);
}.filter-search input, .filter-select {
  min-height: 88px;
  border-color: rgba(26, 26, 26, 0.1);
}.filter-icon-button {
  width: 44px;
  height: 44px;
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid rgba(196, 30, 58, 0.18);
  box-shadow: none;
}.filter-icon-button:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}.filter-select-wrap::after {
  right: 1.1rem;
}.listing-toolbar {
  margin-bottom: var(--space-5);
}.resource-grid, .projects-grid {
  gap: var(--space-6);
}.card, .project-card {
  border-radius: 28px;
  border: 1px solid rgba(196, 30, 58, 0.1);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 44px rgba(92, 48, 55, 0.08);
}.card:hover, .project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(92, 48, 55, 0.12);
}.card-body {
  padding: 1.45rem;
}.card h3, .project-card__title {
  font-size: 1.35rem;
}.card-summary, .project-card__excerpt {
  line-height: 1.72;
}.card-link {
  margin-top: auto;
}.activities-table--clean {
  border: 1px solid rgba(196, 30, 58, 0.1);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 18px 44px rgba(92, 48, 55, 0.08);
}.activities-table--clean thead {
  background: transparent;
}.activities-table--clean th {
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}.activities-table--clean th:not(:last-child), .activities-table--clean td:not(:last-child) {
  border-right: 1px solid rgba(26, 26, 26, 0.04);
}.table-sort-link {
  padding: 1.15rem 1.35rem;
  color: #362a2d;
  text-transform: none;
  font-size: 0.98rem;
  letter-spacing: 0;
}.table-sort-link.is-active, .table-sort-link:hover {
  color: var(--color-primary);
}.sort-indicator {
  background: rgba(196, 30, 58, 0.08);
  color: var(--color-primary);
}.sort-indicator--active {
  background: rgba(196, 30, 58, 0.12);
}.activities-table tbody tr {
  border-bottom-color: rgba(26, 26, 26, 0.06);
}.row--upcoming {
  background: linear-gradient(90deg, rgba(196, 30, 58, 0.03), transparent 36%);
}.page-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(196, 30, 58, 0.12), transparent 26%),
    linear-gradient(180deg, #fff9f7 0%, #fbf3f2 100%);
  padding: var(--space-16) 0 var(--space-12);
  color: var(--color-dark);
  border-bottom: 1px solid rgba(196, 30, 58, 0.08);
}.page-hero__lead {
  color: #5d5052;
  font-size: var(--text-lg);
  max-width: 760px;
}.page-hero__title {
  margin-top: 1rem;
}.page-hero h1 {
  color: #211819;
}.page-hero .breadcrumb, .page-hero .breadcrumb a {
  color: rgba(56, 44, 46, 0.68);
}.page-hero .breadcrumb a:hover {
  color: var(--color-primary);
}.page-hero .breadcrumb-sep {
  color: rgba(56, 44, 46, 0.32);
}.page-hero--article {
  padding-bottom: var(--space-10);
}.page-hero__title--article {
  max-width: 18ch;
  font-size: clamp(2.6rem, 4.8vw, 4.75rem);
  line-height: 1.08;
  margin-bottom: 0;
}.article-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem 1.25rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  color: #66585a;
  font-size: 0.95rem;
}.article-meta__item {
  display: inline-flex;
  align-items: center;
}.article-meta__pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: rgba(196, 30, 58, 0.1);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
}.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 4rem;
  align-items: start;
}.article-featured-image {
  margin-bottom: 2.5rem;
  border-radius: 1rem;
  overflow: hidden;
}.article-featured-image img {
  display: block;
  width: 100%;
  height: auto;
}.article-tags {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}.article-tags__label {
  font-size: 0.875rem;
  color: var(--color-gray);
  margin-right: 0.75rem;
}.article-tag-link {
  display: inline-block;
  margin: 0 0.25rem 0.25rem 0;
  padding: 0.2rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-bg);
  color: var(--color-gray);
  font-size: 0.82rem;
  text-decoration: none;
}.post-navigation--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}.post-nav-card {
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  background: #fff;
  color: var(--color-dark);
  text-decoration: none;
}.post-nav-card--next {
  text-align: right;
}.post-nav-card__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  color: var(--color-gray);
}.post-nav-card__title {
  font-weight: 600;
  line-height: 1.6;
}.article-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}.article-side-card {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--color-bg);
}.article-side-card__title {
  margin-bottom: 1rem;
  font-size: 1rem;
}.article-side-link {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-dark);
  text-decoration: none;
}.article-side-link__title {
  display: block;
  font-size: 0.95rem;
}.article-side-link__meta {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.82rem;
  color: var(--color-gray);
}.article-cta-card {
  padding: 1.75rem;
  border-radius: 1rem;
  background: var(--color-primary);
  color: #fff;
  text-align: center;
}.article-cta-card h4 {
  color: #fff;
  margin-bottom: 0.75rem;
}.article-cta-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.94rem;
  margin-bottom: 1.5rem;
}.article-cta-card__button {
  width: 100%;
  justify-content: center;
}.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: var(--space-12);
}.contact-aside {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}.wechat-panel, .contact-form-wrapper, .project-summary-card {
  border-radius: 30px;
  border: 1px solid rgba(196, 30, 58, 0.1);
  box-shadow: 0 22px 48px rgba(92, 48, 55, 0.08);
}.wechat-panel {
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(250,242,244,0.96) 100%);
}.wechat-panel__placeholder {
  border-color: rgba(196, 30, 58, 0.14);
}.contact-form-wrapper {
  background: rgba(255,255,255,0.96);
}.form-group input, .form-group select, .form-group textarea {
  border-radius: 20px;
  border-color: rgba(26, 26, 26, 0.1);
}.form-group select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-gray) 50%),
    linear-gradient(135deg, var(--color-gray) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) calc(50% - 3px),
    calc(100% - 18px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}.project-summary-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,244,245,0.96) 100%);
}.home-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary) 0%, #80142c 50%, var(--color-primary-dark) 100%);
  padding: 5rem 0;
}.home-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.12), transparent 26%);
  pointer-events: none;
}.home-cta__title {
  position: relative;
  color: #fff;
  margin-bottom: 1rem;
}.home-cta__lead {
  position: relative;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  color: rgba(255,255,255,0.86);
  font-size: 1.125rem;
}.home-cta__actions {
  position: relative;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}.site-footer {
  margin-top: 0;
  background:
    linear-gradient(180deg, #171313 0%, #0d0a0a 100%);
}.site-footer .site-logo img, .site-footer .site-logo--custom .custom-logo {
  box-shadow: none;
}.site-footer .site-logo-image--variant-light.site-logo-image--from-attachment {
  filter: brightness(0) invert(1);
}.page-hero__lead {
  color: rgba(255,255,255,0.78);
  font-size: var(--text-lg);
  max-width: 760px;
}.section-header--left {
  text-align: left;
  margin-bottom: var(--space-10);
}.section-header--left p {
  margin-left: 0;
  margin-right: 0;
}.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}.filter-toolbar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  padding: var(--space-4);
  margin-bottom: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-sm);
}.filter-toolbar--compact {
  padding: var(--space-4);
}.filter-search {
  position: relative;
  flex: 1 1 360px;
}.filter-search > svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gray-light);
  pointer-events: none;
}.filter-icon-button svg {
  position: static;
  left: auto;
  top: auto;
  display: block;
  transform: none;
  pointer-events: none;
}.filter-search input {
  width: 100%;
  min-height: 56px;
  padding: 0.9375rem 3.5rem 0.9375rem 2.6rem;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}.filter-search input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.08);
}.filter-icon-button {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}.filter-icon-button:hover {
  background: var(--color-primary-dark);
  transform: translateY(-50%) scale(1.02);
}.filter-select-wrap {
  position: relative;
  flex: 0 0 auto;
}.filter-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gray);
  font-size: var(--text-sm);
  pointer-events: none;
}.filter-select {
  appearance: none;
  min-width: 168px;
  min-height: 56px;
  padding: 0.9375rem 2.75rem 0.9375rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: var(--text-base);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}.filter-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.08);
}.filter-select:invalid { color: var(--color-gray-light); }.filter-select option { color: var(--color-dark); }.filter-toolbar--blog .filter-search input {
  padding-right: 4.2rem;
}.filter-toolbar--blog .blog-page-search .filter-icon-button {
  all: unset;
  position: absolute;
  top: 50%;
  right: 0.7rem;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(196, 30, 58, 0.08);
  color: #8b7075;
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: none;
  z-index: 2;
  transition:
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}.filter-toolbar--blog .blog-page-search .filter-icon-button svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.25;
  transform: translate(-0.5px, -0.5px);
}.filter-toolbar--blog .blog-page-search .filter-icon-button:hover {
  background: rgba(196, 30, 58, 0.13);
  color: var(--color-primary);
  transform: translateY(-50%);
}.filter-toolbar--blog .blog-page-search .filter-icon-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.12);
}.filter-toolbar--blog .filter-select-wrap.is-enhanced-select::after {
  content: none;
}.filter-toolbar--blog .toolbar-select {
  position: relative;
  min-width: 168px;
}select.toolbar-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}.filter-toolbar--blog .toolbar-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 0.9375rem 3.6rem 0.9375rem 1rem;
  border: 1.5px solid rgba(26, 26, 26, 0.1);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}.filter-toolbar--blog .toolbar-select.is-open .toolbar-select__trigger, .filter-toolbar--blog .toolbar-select__trigger:focus, .filter-toolbar--blog .toolbar-select__trigger:focus-visible {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}.filter-toolbar--blog .toolbar-select__trigger-text {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}.filter-toolbar--blog .toolbar-select__trigger-icon {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 18px;
  height: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}.filter-toolbar--blog .toolbar-select__trigger-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='10' viewBox='0 0 18 10' fill='none'%3E%3Cpath d='M2 1.5L9 8L16 1.5' stroke='%23655b5e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 10px;
  transition: transform 0.18s ease;
}.filter-toolbar--blog .toolbar-select.is-open .toolbar-select__trigger-icon::before {
  transform: rotate(180deg);
}.filter-toolbar--blog .toolbar-select__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  width: 100%;
  padding: 8px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(92, 48, 55, 0.1);
}.filter-toolbar--blog .toolbar-select__list {
  max-height: 340px;
  overflow-y: auto;
  padding-right: 0.1rem;
}.filter-toolbar--blog .toolbar-select__option {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #3f3134;
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}.filter-toolbar--blog .toolbar-select__option:hover, .filter-toolbar--blog .toolbar-select__option:focus-visible {
  outline: none;
  background: rgba(196, 30, 58, 0.08);
}.filter-toolbar--blog .toolbar-select__option.is-selected {
  background: rgba(196, 30, 58, 0.12);
  color: var(--color-primary-dark);
  font-weight: 600;
}.filter-reset {
  color: var(--color-gray);
  font-size: var(--text-sm);
  font-weight: 600;
  white-space: nowrap;
}.filter-reset:hover { color: var(--color-primary); }.listing-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}.listing-result {
  margin-bottom: 0;
  color: var(--color-gray);
  font-size: 0.95rem;
}.listing-pagination {
  margin-top: var(--space-10);
}.listing-pagination .page-numbers {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}.listing-pagination .page-numbers li {
  margin: 0;
  padding: 0;
}.listing-pagination .page-numbers a, .listing-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.9rem;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-gray-dark);
  font-size: var(--text-sm);
  font-weight: 600;
}.listing-pagination .page-numbers .current, .listing-pagination .page-numbers a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}.empty-state {
  text-align: center;
  padding: var(--space-20) var(--space-6);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.78);
}.empty-state__icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}.resource-grid, .projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-8);
}.editorial-card .card-body, .activity-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}.card-head {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--space-5);
}.card-location {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.25rem 0.95rem;
  border-radius: 999px;
  background: rgba(196, 30, 58, 0.08);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: var(--space-4);
}.card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: rgba(196, 30, 58, 0.1);
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}.card-tag--light {
  background: var(--color-bg);
  color: var(--color-gray-dark);
}.card-date {
  margin-bottom: var(--space-4);
  color: var(--color-gray);
  font-size: 0.92rem;
}.card-summary {
  margin-bottom: var(--space-6);
  color: var(--color-gray);
}.activity-view-switch {
  display: flex;
  gap: 0.5rem;
}.activities-table--clean {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}.activities-table--clean thead {
  background: var(--color-primary);
}.activities-table--clean th {
  padding: 0;
}.table-sort-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  color: rgba(255,255,255,0.86);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}.table-sort-link.is-active, .table-sort-link:hover {
  color: var(--color-white);
}.sort-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  font-size: 0.72rem;
}.sort-indicator--active {
  background: rgba(255,255,255,0.24);
}.activities-table--clean td {
  padding: 1rem 1.5rem;
}.activities-table--clean .title-cell a {
  font-weight: 600;
  line-height: 1.5;
}.actions-col {
  width: 70px;
}.table-city {
  white-space: nowrap;
}.table-action {
  text-align: right;
}.table-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
}.table-action-link:hover {
  border-color: var(--color-primary);
  background: rgba(196, 30, 58, 0.08);
}.status-badge {
  margin-left: 0.6rem;
}.project-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,248,248,0.98) 100%);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 30, 58, 0.24);
}.project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}.project-card__pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 700;
}.project-card__pill--soft {
  background: rgba(196, 30, 58, 0.08);
  color: var(--color-primary);
}.project-card__title {
  margin-bottom: 0;
  font-size: 1rem;
}.project-card__title a {
  color: var(--color-dark);
}.project-card__type {
  margin-bottom: 0;
  color: var(--color-gray-dark);
  font-size: 0.72rem;
  font-weight: 600;
}.project-card__excerpt {
  color: var(--color-gray);
  margin-bottom: 0;
}.project-card__highlights {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
}.project-card__highlights li {
  color: var(--color-gray-dark);
  margin-bottom: 0;
}.hero-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.25rem 0 1rem;
}.hero-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.2rem 0.85rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: 700;
}.hero-meta-pill--soft {
  background: rgba(255,255,255,0.14);
}.project-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.8fr);
  gap: var(--space-12);
  align-items: start;
}.project-single-section + .project-single-section {
  margin-top: var(--space-12);
}.project-highlight-list {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-6) 0 0;
  padding-left: 1.15rem;
  list-style: disc;
}.project-summary-card {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}.project-summary-card h3 {
  margin-bottom: var(--space-6);
}.project-summary-card__cta {
  width: 100%;
  margin-top: var(--space-8);
}.project-facts {
  display: grid;
  gap: var(--space-4);
  margin: 0;
}.project-facts dt {
  font-size: var(--text-sm);
  color: var(--color-gray);
  margin-bottom: 0.2rem;
}.project-facts dd {
  margin: 0;
  font-size: var(--text-base);
  color: var(--color-dark);
  font-weight: 600;
}.contact-section {
  position: relative;
}.contact-aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}.contact-title {
  margin-bottom: 0;
}.contact-intro, .contact-form-intro {
  color: var(--color-gray);
  max-width: 38rem;
  margin: 0;
  margin: 0;
}.contact-form-intro {
  margin-bottom: 1rem;
}.contact-stack {
  display: grid;
  gap: var(--space-5);
}.contact-item {
  margin-bottom: 0;
}.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(196, 30, 58, 0.1);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}.wechat-panel {
  display: grid;
  grid-template-columns: minmax(132px, 150px) minmax(0, 1fr);
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
}.wechat-entry-stack {
  display: grid;
  gap: var(--space-5);
}.wechat-panel__media img, .wechat-panel__placeholder {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--color-border);
  box-sizing: border-box;
}.wechat-panel__media img {
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
}.wechat-panel__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.14), rgba(196, 30, 58, 0.04));
  color: var(--color-primary);
  font-size: 2.2rem;
  font-family: var(--font-heading);
  font-weight: 700;
}.wechat-panel--official .wechat-panel__media img, .wechat-panel--official .wechat-panel__placeholder {
  aspect-ratio: 1 / 1;
}.wechat-panel--official .wechat-panel__media img, .wechat-panel--official .wechat-panel__placeholder {
  max-width: 150px;
}.wechat-panel--official {
  grid-template-columns: minmax(132px, 150px) minmax(0, 1fr);
  align-items: center;
  text-align: left;
}.wechat-panel--official .wechat-panel__content {
  display: block;
  width: 100%;
}.wechat-panel--official .wechat-panel__content p {
  max-width: none;
}.wechat-panel--official .wechat-panel__id {
  text-align: left;
}.wechat-panel--service .wechat-panel__media img, .wechat-panel--service .wechat-panel__placeholder {
  aspect-ratio: 1 / 1;
  max-width: 150px;
}.wechat-panel__media {
  width: 100%;
  max-width: 150px;
  justify-self: start;
}.wechat-panel--service .wechat-panel__media, .wechat-panel--official .wechat-panel__media {
  align-self: start;
}.wechat-panel__content strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}.wechat-panel__content p {
  margin-bottom: 0.45rem;
  line-height: 1.55;
}.wechat-panel__id {
  color: var(--color-dark);
  font-weight: 700;
}.wechat-panel__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.55rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}.wechat-panel__action:hover, .wechat-panel__action:focus-visible {
  opacity: 0.92;
  transform: translateY(-1px);
}.wechat-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.65rem;
}.wechat-panel__secondary {
  appearance: none;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-dark);
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}.wechat-panel__secondary:hover, .wechat-panel__secondary:focus-visible {
  border-color: var(--color-primary);
  transform: translateY(-1px);
}.wechat-panel__copy-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--color-primary);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  padding: 0;
  margin-top: 0.15rem;
}.wechat-panel__copy-link:hover, .wechat-panel__copy-link:focus-visible {
  color: var(--color-primary);
  opacity: 0.82;
}.wechat-panel__hint {
  margin-top: 0.55rem;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}.wechat-panel__hint--wechat {
  display: none;
}.wechat-panel__hint--external {
  display: block;
}.wechat-panel.is-external-browser .wechat-panel__action--open {
  display: none;
}.wechat-panel.is-wechat-browser .wechat-panel__hint--wechat {
  display: block;
}.wechat-panel.is-wechat-browser .wechat-panel__hint--external {
  display: none;
}.wechat-panel.is-wechat-browser .wechat-panel__secondary--copy-link {
  display: none;
}.contact-form-wrapper {
  padding: clamp(1.5rem, 2.8vw, 2.5rem);
  min-height: 0;
  display: flex;
  flex-direction: column;
}.contact-form-wrapper h2 {
  margin-bottom: 0.55rem;
}.contact-form {
  display: flex;
  flex-direction: column;
  flex: 1;
}.required-mark {
  color: var(--color-primary);
  font-weight: 700;
}.form-group {
  margin-bottom: 1rem;
}.contact-form .form-group > label {
  font-size: 1.3rem;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: 0.01em;
  margin-bottom: 0.7rem;
  color: #2c2225;
}.form-group input, .form-group select {
  min-height: 88px;
}.form-group textarea {
  min-height: 170px;
}.form-group input::placeholder, .form-group textarea::placeholder {
  font-size: 0.96rem;
  color: var(--color-gray-light);
}.form-group select {
  font-weight: 500;
  -webkit-appearance: none;
  appearance: none;
  padding-right: 3.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%23655b5e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 1.55rem) 50%;
  background-size: 14px 9px;
}.contact-select {
  position: relative;
}select.contact-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  background: none;
  background-image: none;
  pointer-events: none;
}.contact-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 52px;
  padding: 0.875rem 1rem;
  border: 1.5px solid rgba(26, 26, 26, 0.1);
  border-radius: 20px;
  background: #fff;
  color: #2e2427;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.45;
  text-align: left;
  cursor: text;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-select--searchable .contact-select__trigger {
  gap: 0.5rem;
}.contact-select.is-open .contact-select__trigger, .contact-select.is-focused .contact-select__trigger, .contact-select__trigger:focus, .contact-select__trigger:focus-visible, .contact-select__trigger:focus-within {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}.contact-select__trigger.is-placeholder .contact-select__trigger-text {
  color: var(--color-gray-light);
  font-size: 0.96rem;
}.contact-select__trigger-text {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contact-select__trigger-input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  min-height: 0 !important;
  margin: 0;
  border: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: inherit;
  font: inherit;
  font-size: inherit;
  line-height: inherit;
}.contact-select__trigger-input::placeholder {
  color: var(--color-gray-light);
  opacity: 1;
}.contact-select__trigger-input:focus, .contact-select__trigger-input:focus-visible {
  outline: none;
}.contact-select__trigger-button {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}.contact-select__trigger-button:hover, .contact-select__trigger-button:focus-visible {
  outline: none;
  background: rgba(196, 30, 58, 0.08);
}.contact-select__trigger-icon {
  position: relative;
  width: 14px;
  height: 9px;
  display: block;
  pointer-events: none;
}
.contact-select--searchable .contact-select__trigger-icon {
  position: relative;
  top: auto;
  right: auto;
  transform: none;
  display: block;
}.contact-select__trigger-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%23655b5e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 9px;
  transition: transform 0.18s ease;
}.contact-select.is-open .contact-select__trigger-icon::before {
  transform: rotate(180deg);
}.contact-select__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  width: 100%;
  padding: 8px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(92, 48, 55, 0.1);
}.contact-select__search {
  padding: 0.2rem 0.2rem 0.55rem;
}.contact-select__search-input {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 16px;
  background: #fffaf9;
  color: #3f3134;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.4;
}.contact-select__search-input::placeholder {
  color: #9f8f92;
}.contact-select__search-input:focus, .contact-select__search-input:focus-visible {
  outline: none;
  border-color: rgba(196, 30, 58, 0.34);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.08);
}.contact-select__list {
  max-height: 340px;
  overflow-y: auto;
  padding-right: 4px;
}.contact-select__list::-webkit-scrollbar {
  width: 10px;
}.contact-select__list::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(196, 30, 58, 0.18);
  background-clip: padding-box;
}.contact-select__empty {
  padding: 18px 18px 14px;
  color: #9a8d90;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.4;
}.contact-select__option {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #3b3033;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}.contact-select__option[hidden] {
  display: none;
}.contact-select__option:hover, .contact-select__option:focus-visible {
  outline: none;
  background: rgba(196, 30, 58, 0.08);
}.contact-select__option.is-selected {
  background: rgba(196, 30, 58, 0.1);
  color: #8f0f27;
  font-weight: 600;
}

@media (max-width: 640px) {
  .contact-select__trigger {
    min-height: 50px;
    padding: 0.8rem 0.95rem;
    border-radius: 20px;
    font-size: 1rem;
  }

  .contact-select__trigger-input {
    font-size: inherit;
  }

  .contact-select__trigger-button {
    width: 28px;
    height: 28px;
    border-radius: 999px;
  }

  .contact-select__panel {
    top: calc(100% + 8px);
    padding: 8px;
    border-radius: 20px;
  }

  .contact-select__option {
    padding: 13px 14px;
    font-size: 0.98rem;
  }
}.form-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  margin-bottom: 1rem;
}.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.18rem;
}.form-consent label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.6;
}.contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}.form-response {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
}.form-response.is-success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #86efac;
}.form-response.is-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}.blog-group + .blog-group {
  margin-top: var(--space-16);
}.blog-group-header {
  margin-bottom: var(--space-6);
}/* Final visual overrides for client review */
:root {
  --header-height: 82px;
}.blog-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}.blog-group-title {
  margin-bottom: 0;
}.blog-more-link {
  color: var(--color-primary);
  font-weight: 700;
}.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8);
}.listing-toolbar--blog {
  align-items: center;
}.listing-inline-filter {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}.filter-select-wrap--secondary .filter-select {
  min-width: 220px;
}.filter-toolbar {
  padding: 1rem;
  gap: 0.9rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(196, 30, 58, 0.1);
  box-shadow: 0 18px 40px rgba(92, 48, 55, 0.08);
}.filter-toolbar--compact {
  padding: 1rem;
}.filter-search input, .filter-select {
  min-height: 54px;
  border-color: rgba(26, 26, 26, 0.1);
}.filter-search input:focus, .filter-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.08);
}.filter-icon-button {
  width: 44px;
  height: 44px;
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid rgba(196, 30, 58, 0.18);
}.filter-icon-button:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}.activities-table--clean {
  border: 1px solid rgba(196, 30, 58, 0.1);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 18px 44px rgba(92, 48, 55, 0.08);
}.activities-table--clean thead {
  background: transparent;
}.activities-table--clean th {
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}.activities-table--clean th:not(:last-child), .activities-table--clean td:not(:last-child) {
  border-right: 1px solid rgba(26, 26, 26, 0.04);
}.table-sort-link {
  padding: 1.15rem 1.35rem;
  color: #362a2d;
  text-transform: none;
  font-size: 0.98rem;
  letter-spacing: 0;
}.table-sort-link.is-active, .table-sort-link:hover {
  color: var(--color-primary);
}.sort-indicator {
  background: rgba(196, 30, 58, 0.08);
  color: var(--color-primary);
}.sort-indicator--active {
  background: rgba(196, 30, 58, 0.12);
}.card, .project-card {
  border-radius: 28px;
  border: 1px solid rgba(196, 30, 58, 0.1);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 44px rgba(92, 48, 55, 0.08);
}.card:hover, .project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(92, 48, 55, 0.12);
}.contact-form-wrapper, .wechat-panel, .project-summary-card {
  border-radius: 30px;
  border: 1px solid rgba(196, 30, 58, 0.1);
  box-shadow: 0 22px 48px rgba(92, 48, 55, 0.08);
}.contact-grid {
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}.contact-grid > * {
  min-width: 0;
}.contact-stack {
  gap: 1rem;
}.contact-item {
  margin-bottom: 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(196, 30, 58, 0.1);
  border-radius: 24px;
  background: rgba(255,255,255,0.8);
  box-shadow: 0 14px 30px rgba(92, 48, 55, 0.06);
}.contact-item-icon {
  flex-shrink: 0;
  border: 1px solid rgba(196, 30, 58, 0.1);
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.12), rgba(196, 30, 58, 0.04));
}.contact-item-text p {
  line-height: 1.7;
}.contact-form-wrapper {
  width: 100%;
  min-width: 0;
}.wechat-panel__placeholder img {
  width: 100%;
  max-width: 132px;
  height: auto;
  object-fit: contain;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid rgba(196, 30, 58, 0.08);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(120, 28, 44, 0.12);
}/* Client presentation pass: reference layout + IMI red/white */
body {
  background: linear-gradient(180deg, #fffefd 0%, #ffffff 28%, #fbf7f5 100%);
}.section {
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
}.section--gray {
  background: linear-gradient(180deg, #faf6f3 0%, #ffffff 100%);
}.btn {
  border-radius: 10px;
  box-shadow: none;
  letter-spacing: 0.01em;
}.btn--primary {
  box-shadow: 0 14px 28px rgba(196, 30, 58, 0.16);
}.btn--outline, .btn--white, .btn--outline-white {
  border-width: 1.5px;
}.site-header {
  height: 88px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}.header-inner {
  height: 88px;
}.site-logo img, .site-logo--custom .custom-logo {
  height: 52px;
}.nav-menu {
  gap: 1.75rem;
}.nav-menu a {
  font-weight: 600;
  color: #3a2f30;
}.site-nav .nav-menu > .menu-item--cta {
  margin-left: 0;
}.site-nav .nav-menu > .menu-item--cta > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1.1rem;
  border-radius: 5px;
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 12px 24px rgba(196, 30, 58, 0.14);
}.site-nav .nav-menu > .menu-item--cta > a::after {
  display: none;
}.site-nav .nav-menu > .menu-item--cta > a:hover, .site-nav .nav-menu > .menu-item--cta.current-menu-item > a {
  background: var(--color-primary-dark);
  color: var(--color-white);
}.mobile-nav .nav-menu > .menu-item--cta {
  margin-top: var(--space-4);
}.mobile-nav .nav-menu > .menu-item--cta > a {
  border-bottom: none;
  border-radius: 10px;
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  box-shadow: 0 14px 28px rgba(196, 30, 58, 0.16);
}.mobile-nav .nav-menu > .menu-item--cta > a::after {
  display: none;
}.mobile-nav .nav-menu > .menu-item--cta > a:hover, .mobile-nav .nav-menu > .menu-item--cta.current-menu-item > a {
  color: var(--color-white);
  background: var(--color-primary-dark);
}.hero {
  min-height: 620px;
  background:
    radial-gradient(circle at 76% 18%, rgba(196, 30, 58, 0.11), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fcf6f4 100%);
}.hero-shell {
  align-items: center;
  padding-top: 5.5rem;
  padding-bottom: 5rem;
}.hero-content {
  max-width: 620px;
}.hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 5vw, 4.5rem);
}.hero p {
  max-width: 34rem;
  color: #5d5052;
}.hero-panel {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(196, 30, 58, 0.14);
  box-shadow: none;
}.hero-panel__stat {
  border-radius: 12px;
  border: 1px solid rgba(196, 30, 58, 0.08);
  background: #ffffff;
}.section-header--left {
  max-width: 940px;
}.section-header--left p {
  max-width: 720px;
}.page-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(196, 30, 58, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbf4f2 100%);
  padding: 4.75rem 0 4rem;
}.page-hero__title {
  max-width: 13ch;
}.page-hero__lead {
  margin-top: 1rem;
  max-width: 46rem;
}.stats-section {
  background: transparent;
  padding-top: 0;
  padding-bottom: 4rem;
}.stats-grid {
  gap: 1.25rem;
}.stat-item {
  padding: 1.45rem 1.5rem;
  border: 1px solid rgba(196, 30, 58, 0.12);
  border-top: 4px solid var(--color-primary);
  border-radius: 14px;
  background: #ffffff;
  text-align: left;
}.stat-item h3 {
  margin-bottom: 0.35rem;
  color: var(--color-primary);
  font-size: 2.5rem;
}.stat-item p {
  color: #6c5f61;
}.feature-card, .card, .project-card {
  border-radius: 14px;
  border: 1px solid rgba(196, 30, 58, 0.1);
  background: #ffffff;
  box-shadow: none;
}.feature-card {
  text-align: left;
  padding: 1.75rem;
}.card:hover, .project-card:hover, .feature-card:hover {
  transform: none;
  box-shadow: 0 12px 30px rgba(92, 48, 55, 0.06);
  border-color: rgba(196, 30, 58, 0.18);
}.project-card__title {
  font-size: 0.94rem;
}.project-card__excerpt, .card-summary {
  color: #5d5052;
}.filter-toolbar {
  border-radius: 18px;
  background: #ffffff;
  box-shadow: none;
}.filter-search input, .filter-select {
  border-radius: 14px;
  background: #ffffff;
}.filter-icon-button {
  width: 46px;
  border-radius: 12px;
}.page-content {
  max-width: 860px;
}.article-side-card {
  background: #ffffff;
  border: 1px solid rgba(196, 30, 58, 0.08);
}.article-cta-card {
  background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
}

@media (max-width: 1199px) {.hero-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }.hero h1 {
    max-width: 12ch;
  }.hero-panel {
    max-width: 560px;
  }.resource-grid, .projects-grid, .blog-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.project-single-layout {
    grid-template-columns: 1fr;
  }.project-summary-card {
    position: static;
  }.wechat-panel {
    grid-template-columns: 1fr;
  }
}/* Client review pass: official imagery + visibility safeguards */
.site-logo img, .site-logo--custom .custom-logo {
  height: 58px;
}.site-footer .site-logo img, .site-footer .site-logo--custom .custom-logo {
  height: 62px;
}.hero-shell {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(2rem, 4vw, 4.5rem);
}.hero-content {
  padding-right: clamp(0rem, 2vw, 1.5rem);
}.hero-media {
  display: grid;
  gap: 1rem;
  align-self: stretch;
}.hero-visual {
  position: relative;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(196, 30, 58, 0.14);
  background: #e7dbdd;
}.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 16, 17, 0.08) 0%, rgba(20, 16, 17, 0.46) 100%);
}.hero-visual img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}.hero-visual__caption {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  left: 1.35rem;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
}.hero-visual__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 28px;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}.hero-visual__caption strong {
  display: block;
  max-width: 20ch;
  color: #ffffff;
  font-size: clamp(1.24rem, 2vw, 1.72rem);
  line-height: 1.35;
  text-shadow: 0 10px 24px rgba(18, 12, 13, 0.26);
}.hero-panel--summary {
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 14px;
}.hero-panel--summary .hero-panel__stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}.hero-panel--summary .hero-panel__stat {
  min-height: 100%;
}.page-hero, .page-hero.page-hero--article {
  --page-hero-default-background:
    radial-gradient(120% 145% at 10% 18%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.8) 18%, rgba(255, 255, 255, 0.3) 32%, rgba(255, 255, 255, 0) 48%),
    radial-gradient(96% 124% at 88% 14%, rgba(239, 205, 211, 0.34) 0%, rgba(239, 205, 211, 0.16) 18%, rgba(239, 205, 211, 0) 38%),
    radial-gradient(108% 136% at 76% 78%, rgba(206, 214, 221, 0.18) 0%, rgba(206, 214, 221, 0.08) 18%, rgba(206, 214, 221, 0) 40%),
    radial-gradient(86% 118% at 38% 56%, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.16) 20%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, #fdfaf7 0%, #f8f3ef 58%, #f3eeea 100%);
  background-color: #f8f3ef;
  background-image: var(--page-hero-default-background);
}.page-hero.page-hero--custom-background {
  background-color: #ebe5e1;
  background-image:
    linear-gradient(90deg, rgba(252, 248, 245, 0.9) 0%, rgba(252, 248, 245, 0.72) 38%, rgba(252, 248, 245, 0.5) 68%, rgba(252, 248, 245, 0.3) 100%),
    var(--hero-custom-background-image);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: cover, cover;
}.page-hero--projects-directory.page-hero--custom-background {
  background-color: #ebe5e1;
  background-image:
    var(--hero-custom-background-image),
    var(--hero-custom-background-image);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: cover, 114% 114%;
}.page-hero .section-kicker {
  color: var(--color-primary) !important;
}.page-hero h1, .page-hero .page-hero__title, .page-hero .page-hero__title--article {
  color: #201719 !important;
}.page-hero p, .page-hero .page-hero__lead, .page-hero .article-meta, .page-hero .article-meta__item {
  color: #5d5052 !important;
}.page-hero .breadcrumb, .page-hero .breadcrumb a, .page-hero .breadcrumb span, .page-hero .breadcrumb-sep {
  color: rgba(56, 44, 46, 0.68) !important;
}.page-hero .breadcrumb a:hover {
  color: var(--color-primary) !important;
}.wechat-panel__placeholder {
  background: #ffffff;
}.wechat-panel__placeholder img {
  max-width: 180px;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}

@media (min-width: 900px) {.section-header--left {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
    gap: 0.8rem 2.5rem;
    max-width: none;
    align-items: end;
  }.section-header--left .section-kicker {
    grid-column: 1 / -1;
  }.section-header--left h2 {
    max-width: none;
    margin-bottom: 0;
  }.section-header--left p {
    max-width: none;
    margin-bottom: 0;
  }
}

@media (max-width: 1199px) {.hero-shell {
    grid-template-columns: 1fr;
  }.hero-content {
    padding-right: 0;
  }.hero-media {
    max-width: 560px;
  }.hero-visual {
    min-height: 420px;
  }.hero-panel--summary .hero-panel__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {.site-logo img, .site-logo--custom .custom-logo {
    height: 50px;
  }.hero-visual {
    min-height: 340px;
  }.hero-shell {
    gap: 1.25rem;
  }.hero-visual__caption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }.hero-panel--summary .hero-panel__stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {:root {
    --header-height: 72px;
    --container-pad: 1rem;
  }.site-header, .header-inner {
    height: 72px;
  }.site-logo img, .site-logo--custom .custom-logo {
    height: 46px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }.hero {
    min-height: auto;
  }.hero-shell {
    padding-top: var(--space-16);
    padding-bottom: var(--space-12);
  }.hero h1 {
    max-width: none;
    font-size: clamp(2.45rem, 11vw, 3.15rem);
  }.hero-panel {
    padding: 1rem;
    border-radius: 24px;
  }.hero-panel__stats {
    gap: 0.65rem;
  }.stats-section {
    margin-top: calc(var(--space-8) * -1);
  }.filter-toolbar {
    align-items: stretch;
  }.filter-search, .filter-select-wrap, .filter-select {
    width: 100%;
  }.filter-select {
    min-width: 100%;
  }.resource-grid, .projects-grid, .blog-list-grid {
    grid-template-columns: 1fr;
  }.stats-grid {
    grid-template-columns: 1fr 1fr;
  }.listing-toolbar {
    align-items: flex-start;
  }.listing-inline-filter, .filter-select-wrap--secondary, .filter-select-wrap--secondary .filter-select {
    width: 100%;
  }.page-hero__title--article {
    max-width: none;
    font-size: clamp(2rem, 9.5vw, 2.8rem);
  }.page-hero--article .breadcrumb {
    display: none;
  }.article-layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }.article-sidebar {
    position: static;
  }.post-navigation--grid {
    grid-template-columns: 1fr;
  }.activity-view-switch {
    width: 100%;
  }.activity-view-switch .view-btn {
    flex: 1;
    text-align: center;
  }.activities-table--clean td, .activities-table--clean th {
    min-width: 180px;
  }.wechat-panel {
    padding: var(--space-5);
  }.contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }.contact-aside {
    position: static;
  }.contact-aside, .contact-form-wrapper {
    width: 100%;
    min-width: 0;
  }.contact-item {
    padding: 0.95rem 1rem;
  }.contact-form-wrapper {
    padding: 1.35rem;
  }.home-cta__actions {
    flex-direction: column;
  }.home-cta__actions .btn {
    width: 100%;
  }
}/* Listing density pass */
.page-hero--listing {
  padding: 3.6rem 0 3rem;
}.page-hero--listing .page-hero__title {
  max-width: 11ch;
}.archive-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 1.5rem 2.5rem;
  align-items: start;
}.archive-hero__content {
  max-width: 48rem;
}.archive-hero__panel {
  display: grid;
  align-self: start;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(196, 30, 58, 0.12);
  background: rgba(255, 255, 255, 0.96);
}.archive-hero__panel-label {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}.archive-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}.archive-stat {
  display: grid;
  gap: 0.28rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(196, 30, 58, 0.08);
  background: #ffffff;
}.archive-stat strong {
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: 2rem;
  line-height: 1;
}.archive-stat span {
  color: #5d5052;
  font-size: 0.92rem;
}.archive-stat--trigger {
  position: relative;
  width: 100%;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}.archive-stat--trigger::after {
  content: '›';
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  color: #9d878d;
  font-size: 1.35rem;
  line-height: 1;
}.archive-stat--trigger:hover {
  border-color: rgba(196, 30, 58, 0.2);
  box-shadow: 0 12px 28px rgba(196, 30, 58, 0.08);
  transform: translateY(-1px);
}.archive-stat--trigger:focus-visible {
  outline: none;
  border-color: rgba(196, 30, 58, 0.28);
  box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.12);
}.archive-stat__hint {
  margin-top: auto;
  color: #8f7c81;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}.archive-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}.archive-hero__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(196, 30, 58, 0.06);
  border: 1px solid rgba(196, 30, 58, 0.1);
  color: #5a4649;
  font-size: 0.84rem;
  font-weight: 600;
}.archive-hero__summary {
  margin: 0;
  color: #5d5052;
  font-size: 0.95rem;
  line-height: 1.75;
}body.has-detail-modal {
  overflow: hidden;
}.archive-detail-modal[hidden] {
  display: none;
}.archive-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 1.5rem;
}.archive-detail-modal__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(25, 18, 20, 0.42);
  backdrop-filter: blur(6px);
}.archive-detail-modal__dialog {
  position: relative;
  width: min(880px, calc(100vw - 2.5rem));
  max-height: none;
  overflow: visible;
  margin: auto 0;
  padding: 2rem 2rem 1.75rem;
  border-radius: 28px;
  border: 1px solid rgba(196, 30, 58, 0.14);
  background: #ffffff;
  box-shadow: 0 28px 64px rgba(44, 24, 29, 0.18);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}.archive-detail-modal.is-open .archive-detail-modal__dialog {
  opacity: 1;
  transform: translateY(0);
}.archive-detail-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(196, 30, 58, 0.06);
  color: #4f3c40;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}.archive-detail-modal__close:hover {
  background: rgba(196, 30, 58, 0.12);
}.archive-detail-modal__eyebrow {
  margin: 0 0 0.55rem;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}.archive-detail-modal__title {
  margin: 0 0 1.45rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.08;
}.archive-detail-modal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.9rem;
}.archive-detail-modal__item {
  display: grid;
  align-content: start;
  gap: 0.32rem;
  min-height: 74px;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(196, 30, 58, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 242, 240, 0.98) 100%);
  color: #403237;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}.archive-detail-modal__item:hover {
  border-color: rgba(196, 30, 58, 0.24);
  box-shadow: 0 14px 32px rgba(196, 30, 58, 0.08);
  transform: translateY(-1px);
}.archive-detail-modal__item-label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}.archive-detail-modal__item-meta {
  color: #7f6c70;
  font-size: 0.82rem;
}.listing-section {
  padding-top: 3.4rem;
}.listing-intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: 0.8rem 2.4rem;
  align-items: end;
  margin-bottom: 1.65rem;
}.listing-intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}.listing-intro__title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1.08;
}.listing-intro__content {
  display: grid;
  gap: 0.85rem;
}.listing-intro__text {
  margin: 0;
  color: #5d5052;
  font-size: 1rem;
  line-height: 1.8;
}.listing-intro__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}.listing-intro__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.3rem 0.82rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(196, 30, 58, 0.08);
  color: #5b4649;
  font-size: 0.84rem;
  font-weight: 600;
}

@media (max-width: 1199px) {.archive-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }.archive-hero__panel {
    max-width: 680px;
  }.listing-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {.page-hero--listing {
    padding: 2.75rem 0 2.4rem;
  }.archive-hero__stats {
    grid-template-columns: 1fr;
  }.archive-stat strong {
    font-size: 1.75rem;
  }.listing-section {
    padding-top: 2.5rem;
  }.listing-intro {
    gap: 0.75rem;
    margin-bottom: 1.4rem;
  }.archive-detail-modal {
    padding: 1rem;
  }.archive-detail-modal__dialog {
    width: calc(100vw - 1rem);
    padding: 1.5rem 1.15rem 1.2rem;
    border-radius: 22px;
  }.archive-detail-modal__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }.archive-detail-modal__item {
    min-height: 68px;
    padding: 0.9rem;
  }
}/* Activity page refinement */
.page-hero--activity {
  --inner-page-hero-min-height: 304px;
  --inner-page-hero-title-size: clamp(3rem, 4.5vw, 4.15rem);
  --inner-page-hero-lead-size: 1rem;
  position: relative;
  padding: 2.35rem 0 1.75rem;
  background:
    radial-gradient(circle at 84% 18%, rgba(196, 30, 58, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 245, 242, 0.82) 100%);
}.page-hero--activity::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 76%, rgba(196, 30, 58, 0.08), transparent 26%),
    linear-gradient(90deg, rgba(196, 30, 58, 0.04) 0%, rgba(196, 30, 58, 0) 42%);
}.page-hero--activity > .container {
  position: relative;
  z-index: 1;
}.archive-hero--activity {
  min-height: var(--inner-page-hero-min-height);
  align-items: start;
  gap: 1rem 1.75rem;
}.archive-hero--activity .archive-hero__content {
  display: grid;
  min-height: var(--inner-page-hero-min-height);
  gap: 0.65rem;
  align-content: start;
  padding-right: 0.6rem;
}.page-hero--activity .breadcrumb, .page-hero--activity .section-kicker, .page-hero--activity .page-hero__title, .page-hero--activity .page-hero__lead {
  margin: 0;
}.page-hero--activity .section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}.page-hero--activity .page-hero__title {
  font-size: var(--inner-page-hero-title-size);
  line-height: 1.02;
  letter-spacing: -0.035em;
}.page-hero--activity .page-hero__lead {
  max-width: 32rem;
  font-size: var(--inner-page-hero-lead-size);
  line-height: 1.7;
}.archive-hero--activity .archive-hero__panel {
  min-height: var(--inner-page-hero-min-height);
  align-self: stretch;
  gap: 0.8rem;
  padding: 1rem;
}.archive-hero--activity .archive-hero__panel-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}.archive-hero--activity .archive-hero__stats {
  gap: 0.55rem;
}.archive-hero--activity .archive-stat {
  padding: 0.8rem 0.9rem;
}.archive-hero--activity .archive-stat strong {
  font-size: 1.78rem;
}.archive-hero--activity .archive-hero__summary {
  display: none;
}.listing-section--activity {
  padding-top: 1.25rem;
}.activity-directory-shell {
  display: grid;
  gap: 1.25rem;
}.filter-toolbar--activity {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(2, minmax(190px, 0.55fr)) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem;
  margin-bottom: 0;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(196, 30, 58, 0.1);
  box-shadow: none;
}.filter-toolbar--activity .filter-search {
  flex: 0 0 auto;
  min-width: 0;
}.filter-toolbar--activity .filter-search input {
  min-height: 58px;
  padding-left: 3rem;
  padding-right: 4rem;
  border-radius: 20px;
}.filter-toolbar--activity .filter-select-wrap {
  min-width: 0;
}.filter-toolbar--activity .filter-select {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  border-radius: 18px;
}.filter-toolbar--activity .filter-reset {
  justify-self: end;
}.activity-directory-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}.activity-directory-meta .listing-result {
  color: #5a4b4e;
  font-size: 0.94rem;
}.activity-view-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(196, 30, 58, 0.1);
}.activity-view-switch .view-btn {
  min-width: 96px;
  min-height: 46px;
  padding: 0.55rem 1rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #5c4c4f;
  font-size: 0.94rem;
  font-weight: 600;
  box-shadow: none;
}.activity-view-switch .view-btn.active {
  background: var(--color-primary);
  color: #ffffff;
}.activities-table-shell {
  overflow: hidden;
  border: 1px solid rgba(196, 30, 58, 0.1);
  border-radius: 18px;
  background: #ffffff;
}.activities-table--clean {
  width: 100%;
  table-layout: fixed;
  border: none;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}.activities-col--date {
  width: 230px;
}.activities-col--action {
  width: 104px;
}.activities-col--city {
  width: 190px;
}.activities-table--clean thead {
  background: #fcf7f5;
}.activities-table--clean th {
  padding: 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  text-align: left;
  vertical-align: middle;
}.activities-table--clean th:not(:last-child), .activities-table--clean td:not(:last-child) {
  border-right: none;
}.table-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  padding: 1rem 1.2rem;
  color: #3f3134;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}.table-heading--filter {
  width: 100%;
  justify-content: flex-start;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}.table-heading--filter:hover, .table-heading--filter:focus-visible {
  color: var(--color-primary);
}.table-heading--filter:focus-visible {
  outline: none;
}.table-heading__icon {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
  opacity: 0.76;
}.table-heading--active {
  color: var(--color-primary);
}.table-heading-select-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}.table-heading-select-form {
  position: relative;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0 1.2rem;
}.table-heading-select {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  min-height: 60px;
  max-width: 100%;
  padding: 1rem 1.7rem 1rem 0;
  color: #3f3134;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  outline: none;
}.table-heading-select-wrap--active .table-heading-select, .table-heading-select:focus {
  color: var(--color-primary);
}.table-heading-select__icon {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  pointer-events: none;
  color: currentColor;
}.table-heading-select-form:focus-within .table-heading-select__icon {
  color: var(--color-primary);
}.activities-table--clean td {
  padding: 1.35rem 1.2rem;
  vertical-align: top;
}.activities-table--clean tbody tr {
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}.row--upcoming {
  background: linear-gradient(90deg, rgba(196, 30, 58, 0.04) 0%, rgba(255, 255, 255, 0) 52%);
}.activity-date-stack {
  display: grid;
  gap: 0.65rem;
}.activities-table--clean .date-cell time {
  font-size: 0.96rem;
  font-weight: 700;
  color: #2d2325;
}.status-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-left: 0;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
}.status-badge--upcoming {
  background: rgba(196, 30, 58, 0.08);
  color: var(--color-primary);
}.title-cell {
  min-width: 0;
  vertical-align: middle;
}.activity-row-title {
  display: block;
  min-width: 0;
  color: #211819;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}.activity-row-title a {
  color: inherit;
  text-decoration: none;
}.activity-row-title:hover, .activity-row-title a:hover {
  color: var(--color-primary);
}.activity-row--linked {
  cursor: pointer;
}.activity-row--linked:focus-visible {
  outline: 2px solid rgba(196, 30, 58, 0.38);
  outline-offset: -2px;
}.activity-row--linked:hover .activity-row-title,
.activity-row--linked:focus-visible .activity-row-title,
.activity-row--linked:hover .date-cell time,
.activity-row--linked:focus-visible .date-cell time,
.activity-row--linked:hover .city-badge,
.activity-row--linked:focus-visible .city-badge {
  color: var(--color-primary);
}.activity-row-excerpt {
  margin: 0.75rem 0 0;
  color: #655559;
  font-size: 0.95rem;
  line-height: 1.72;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}.activity-row-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(196, 30, 58, 0.18);
  background: #ffffff;
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}.activity-row-link:hover {
  color: var(--color-primary-dark);
  border-color: rgba(196, 30, 58, 0.36);
  box-shadow: 0 12px 28px rgba(196, 30, 58, 0.14);
  transform: translateX(2px);
}.activities-table--clean td.action-cell {
  padding-inline: 0.9rem;
  text-align: center;
  vertical-align: middle;
}.table-city {
  vertical-align: middle;
}.city-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: #faf6f3;
  border: 1px solid rgba(196, 30, 58, 0.08);
  color: #5a484c;
  font-size: 0.84rem;
  font-weight: 600;
}.table-city-empty {
  color: #8b7b7e;
  font-size: 0.9rem;
}.activity-card {
  border-radius: 18px;
}.activity-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}.activity-card h3, .activity-card .card-date, .activity-card .card-summary {
  margin-bottom: 0;
}.activity-card .card-link {
  margin-top: 0.35rem;
}

@media (max-width: 1199px) {.page-hero--activity {
    --inner-page-hero-min-height: auto;
    padding: 2rem 0 1.45rem;
  }.archive-hero--activity .archive-hero__content {
    padding-right: 0;
  }.filter-toolbar--activity {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.filter-toolbar--activity .filter-search {
    grid-column: 1 / -1;
  }.filter-toolbar--activity .filter-reset {
    justify-self: start;
  }
}

@media (max-width: 767px) {.page-hero--activity {
    --inner-page-hero-min-height: auto;
    padding: 1.7rem 0 1.15rem;
  }.listing-section--activity {
    padding-top: 1.1rem;
  }.filter-toolbar--activity {
    grid-template-columns: 1fr;
    padding: 0.9rem;
  }.filter-toolbar--activity .filter-reset {
    justify-self: start;
  }.activity-directory-meta {
    align-items: stretch;
  }.activity-view-switch {
    width: 100%;
  }.activity-view-switch .view-btn {
    flex: 1;
  }.activities-table-shell {
    overflow-x: auto;
  }.activities-table--clean {
    min-width: 860px;
  }
}/* Demo polish pass */
body {
  background:
    radial-gradient(circle at 12% 14%, rgba(196, 30, 58, 0.1), transparent 18%),
    radial-gradient(circle at 92% 20%, rgba(70, 35, 41, 0.07), transparent 22%),
    linear-gradient(180deg, #fffdfc 0%, #ffffff 24%, #f7f1ee 62%, #ffffff 100%);
}.page-hero, .section--gray, .listing-section, .contact-section, .home-cta {
  position: relative;
  overflow: clip;
}.page-hero > .container, .section--gray > .container, .listing-section > .container, .contact-section > .container, .home-cta > .container {
  position: relative;
  z-index: 1;
}.card-tags--stacked {
  margin-bottom: var(--space-5);
}.card-tags--stacked .card-tag {
  background: rgba(196, 30, 58, 0.1);
  color: var(--color-primary);
}.blog-list-grid .editorial-card .card-summary {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}.project-card {
  height: 100%;
}.project-card__title {
  min-height: 4.6rem;
}.project-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}.project-card__highlights {
  margin-top: auto;
}.project-card__header {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}.project-card__header--with-badge {
  grid-template-columns: minmax(0, 1fr) clamp(120px, 34%, 172px);
}.project-card__intro {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1rem;
}.project-card__badge {
  display: flex;
  min-height: 168px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  padding: 1rem;
  border: 1px solid rgba(196, 30, 58, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 243, 240, 0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 14px 28px rgba(92, 48, 55, 0.08);
}.project-card__badge-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 132px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(52, 31, 35, 0.08));
}

@media (max-width: 820px) {.project-card__header--with-badge {
    grid-template-columns: 1fr;
  }.project-card__badge {
    width: min(190px, 100%);
    min-height: 144px;
    justify-self: start;
  }
}.archive-hero__panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 241, 238, 0.96) 100%);
  box-shadow: 0 18px 44px rgba(71, 36, 42, 0.08);
}.archive-hero__tags span {
  min-height: 38px;
  padding: 0.42rem 0.95rem;
  font-size: 0.9rem;
}.listing-intro {
  padding: 1.4rem 1.6rem;
  border-radius: 22px;
  border: 1px solid rgba(196, 30, 58, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(252, 245, 242, 0.98) 100%);
  box-shadow: 0 18px 40px rgba(66, 31, 38, 0.04);
}.filter-toolbar {
  box-shadow: 0 18px 40px rgba(75, 40, 46, 0.06);
}.page-hero--article .page-hero__title--article {
  max-width: 15ch;
  font-size: clamp(2.55rem, 4.6vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}.page-hero--article .article-meta {
  width: min(100%, 50rem);
  max-width: 50rem;
}.status-badge {
  min-height: 34px;
  padding: 0.34rem 0.82rem;
  font-size: 0.86rem;
  font-weight: 700;
}.city-badge {
  min-height: 40px;
  padding: 0.45rem 1rem;
  font-size: 0.92rem;
  font-weight: 700;
}/* Inner-page density pass */
.page-hero--listing, .page-hero--listing {
  --inner-page-hero-min-height: 304px;
  --inner-page-hero-title-size: clamp(3rem, 4.5vw, 4.15rem);
  --inner-page-hero-lead-size: 1rem;
  padding: 2.35rem 0 1.75rem;
}.page-hero--listing .archive-hero {
  min-height: var(--inner-page-hero-min-height);
  gap: 1.1rem 1.9rem;
  align-items: start;
}.page-hero--listing .archive-hero__content {
  display: grid;
  gap: 0.68rem;
  align-content: start;
  min-height: var(--inner-page-hero-min-height);
}.page-hero--listing .archive-hero__content .breadcrumb, .page-hero--listing .archive-hero__content .section-kicker, .page-hero--listing .archive-hero__content .page-hero__title, .page-hero--listing .archive-hero__content .page-hero__lead {
  margin: 0;
}.page-hero--listing .section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}.page-hero--listing .page-hero__title {
  font-size: var(--inner-page-hero-title-size);
  line-height: 1.02;
  letter-spacing: -0.035em;
}.page-hero--listing .page-hero__lead {
  font-size: var(--inner-page-hero-lead-size);
  line-height: 1.7;
  max-width: 35rem;
}.page-hero--listing .archive-hero__panel {
  min-height: var(--inner-page-hero-min-height);
  align-self: stretch;
  gap: 0.85rem;
  padding: 1rem;
}.page-hero--listing .archive-hero__panel-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}.page-hero--listing .archive-hero__stats {
  gap: 0.65rem;
}.page-hero--listing .archive-stat {
  padding: 0.82rem 0.9rem;
}.page-hero--listing .archive-stat strong {
  font-size: 1.78rem;
}.page-hero--listing .archive-stat span {
  font-size: 0.92rem;
}.page-hero--listing .archive-hero__tags span {
  font-size: 0.9rem;
}.listing-section:not(.listing-section--activity) {
  padding-top: 1.9rem;
}.listing-section:not(.listing-section--activity) .listing-intro {
  gap: 0.7rem 1.8rem;
  margin-bottom: 1.2rem;
  padding: 1.15rem 1.35rem;
}.listing-section:not(.listing-section--activity) .listing-intro__text {
  font-size: 0.98rem;
  line-height: 1.72;
}.activities-table--clean td.table-city {
  padding-inline: 1.2rem;
  text-align: center;
  vertical-align: middle;
}.activities-table--clean th:last-child .table-heading {
  text-align: center;
}.activities-table--clean th:last-child .table-heading--filter {
  justify-content: center;
}.activities-table--clean .table-city > .city-badge, .activities-table--clean .table-city > .table-city-empty {
  margin-inline: auto;
}.activities-table--clean .city-badge, .activities-table--clean .table-city-empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  min-width: 88px;
  padding: 0 1rem;
  border-radius: 14px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  font-size: 0.92rem;
  font-weight: 700;
}.activities-table--clean .city-badge {
  background: linear-gradient(180deg, #ffffff 0%, #f8f0ee 100%);
  border-color: rgba(196, 30, 58, 0.12);
  color: #4f3d41;
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.06);
}.activities-table--clean .table-city-empty {
  background: #fbf7f5;
  border: 1px solid rgba(24, 24, 24, 0.08);
}.activities-table--clean .city-badge--empty {
  background: linear-gradient(180deg, #ffffff 0%, #f8f0ee 100%);
  border: 2px solid rgba(196, 30, 58, 0.12);
  color: #7b6770;
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.05);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {.project-card__title {
    min-height: 0;
  }
}

@media (max-width: 767px) {.page-hero--listing {
    --inner-page-hero-min-height: auto;
    padding: 2.2rem 0 1.6rem;
  }.listing-section:not(.listing-section--activity) {
    padding-top: 1.35rem;
  }.listing-section:not(.listing-section--activity) .listing-intro {
    padding: 1rem 1.1rem;
  }.page-hero--article .page-hero__title--article {
    max-width: 100%;
    font-size: clamp(2rem, 11vw, 3rem);
  }.listing-intro {
    padding: 1rem 1.05rem;
  }
}/* Visual refinement pass: homepage + about responsiveness */
.site-header, .header-inner {
  height: 80px;
}.hero--pdf-home, .page-hero--blog, .page-hero--contact, .page-hero--about-pdf, .page-hero--projects-directory {
  --marketing-hero-section-height: 45rem;
  --marketing-hero-padding-top: clamp(2.75rem, 6vw, 4rem);
  --marketing-hero-padding-bottom: clamp(2rem, 4vw, 3rem);
  --marketing-hero-unified-min-height: calc(var(--marketing-hero-section-height) - var(--marketing-hero-padding-top) - var(--marketing-hero-padding-bottom));
}.hero--pdf-home {
  --marketing-hero-min-height: var(--marketing-hero-unified-min-height);
  min-height: var(--marketing-hero-section-height);
  background: none;
  background-color: #f7f4f0;
}.hero--pdf-home .hero-bg {
  opacity: 1;
  background-size: cover;
  background-position: center center;
}.hero--pdf-home .hero-overlay {
  display: none;
}.hero--pdf-home .hero-shell {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.3rem, 2.8vw, 2.2rem);
  align-items: center;
  min-height: var(--marketing-hero-min-height);
  padding-top: var(--marketing-hero-padding-top);
  padding-right: 0;
  padding-bottom: var(--marketing-hero-padding-bottom);
  padding-left: 0;
}.hero--pdf-home .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  gap: 1.2rem;
  height: 100%;
  max-width: none;
  padding-right: 0;
}.hero--pdf-home .section-kicker {
  margin: 0;
  color: var(--color-primary) !important;
}.hero--pdf-home .hero-heading,
.hero--pdf-home .hero-heading__text,
.hero--pdf-home .hero-lead {
  color: var(--home-hero-text-color, #FFFFFF) !important;
}.hero--pdf-home h1 {
  max-width: none;
  margin: 0;
  color: var(--home-hero-text-color, #FFFFFF);
  font-size: clamp(3.3rem, 5.15vw, 5.15rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.042em;
  white-space: nowrap;
  text-wrap: nowrap;
}.hero--pdf-home p {
  max-width: 48rem;
  margin: 0;
  font-size: clamp(1.26rem, 1.62vw, 1.5rem);
  font-weight: 500;
  line-height: 1.72;
  color: var(--home-hero-text-color, #FFFFFF);
}.hero--pdf-home .hero-points {
  margin: 0.15rem 0 0;
}.hero--pdf-home .hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0;
  padding-top: clamp(0.8rem, 1.8vw, 1.25rem);
}.home-pdf-directions .home-features-grid {
  grid-template-columns: repeat(var(--home-features-columns, 4), minmax(0, 1fr));
}.home-cta__title {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}.home-cta__lead {
  max-width: 34rem;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.72;
}.home-cta .btn {
  font-size: 1.08rem;
  font-weight: 700;
}.home-cta .btn--outline-white {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 0 rgba(26, 18, 20, 0.16);
}.home-cta .btn--outline-white:hover {
  background: rgba(255, 255, 255, 1);
  color: var(--color-primary);
}

@media (max-width: 1199px) {.site-header, .header-inner {
    height: 76px;
  }.hero--pdf-home, .page-hero--blog, .page-hero--contact, .page-hero--about-pdf, .page-hero--projects-directory {
    --marketing-hero-section-height: 37.8rem;
    --marketing-hero-padding-top: clamp(2.4rem, 5vw, 3.1rem);
    --marketing-hero-padding-bottom: clamp(1.8rem, 3.6vw, 2.5rem);
    --marketing-hero-unified-min-height: calc(var(--marketing-hero-section-height) - var(--marketing-hero-padding-top) - var(--marketing-hero-padding-bottom));
  }.hero--pdf-home .hero-shell {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }.hero--pdf-home .hero-content {
    max-width: none;
    padding-right: 0;
  }.home-pdf-directions .home-features-grid {
    grid-template-columns: repeat(var(--home-features-columns-tablet, 2), minmax(0, 1fr));
  }
}

@media (max-width: 767px) {.site-header, .header-inner {
    height: 72px;
  }.hero--pdf-home, .page-hero--blog, .page-hero--contact, .page-hero--about-pdf, .page-hero--projects-directory {
    --marketing-hero-section-height: 26.1rem;
    --marketing-hero-padding-top: 1.25rem;
    --marketing-hero-padding-bottom: 2rem;
    --marketing-hero-unified-min-height: calc(var(--marketing-hero-section-height) - var(--marketing-hero-padding-top) - var(--marketing-hero-padding-bottom));
  }.hero--pdf-home .hero-shell {
    gap: 1rem;
    padding-top: var(--marketing-hero-padding-top);
    padding-bottom: var(--marketing-hero-padding-bottom);
  }.hero--pdf-home .hero-content {
    gap: 0.85rem;
  }.hero--pdf-home h1 {
    max-width: none;
    font-size: clamp(2.1rem, 8.9vw, 2.7rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.016em;
    white-space: normal;
    text-wrap: balance;
  }.hero--pdf-home .hero-actions {
    flex-wrap: wrap;
  }.hero--pdf-home .hero-actions .btn {
    width: auto;
  }.hero--pdf-home .hero-heading__line {
    display: block;
  }.hero--pdf-home .hero-lead--desktop, .hero--pdf-home .hero-points--desktop {
    display: none;
  }.hero--pdf-home .hero-lead--mobile {
    display: block;
    max-width: none;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.74;
  }.hero--pdf-home .hero-points--mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 0.45rem;
    margin: 0.1rem 0 0;
  }.hero--pdf-home .hero-points--mobile li {
    min-height: 34px;
    padding: 0.38rem 0.82rem;
    border-radius: 999px;
    border: 1px solid rgba(196, 30, 58, 0.12);
    background: #fff8f7;
    color: #4a3b3f;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.2;
  }.hero--pdf-home .hero-points--mobile li::before {
    content: none;
  }.home-pdf-directions .home-features-grid {
    grid-template-columns: 1fr;
  }

}/* About collaboration section refinement */
/* Project detail hero contrast fix */
.page-hero .hero-meta-pill {
  border: 1px solid transparent;
  box-shadow: 0 8px 18px rgba(196, 30, 58, 0.12);
}.page-hero .hero-meta-pill--soft {
  background: linear-gradient(180deg, #fff8f7 0%, #f8efec 100%);
  border-color: rgba(196, 30, 58, 0.14);
  color: #4f3d41;
}/* Unified inner-page hero system */
.page-hero--listing, .page-hero--activity {
  --inner-page-hero-min-height: clamp(280px, 24vw, 320px);
  --inner-page-hero-title-size: clamp(2.6rem, 3.9vw, 3.65rem);
  --inner-page-hero-lead-size: 1rem;
  padding: clamp(1.7rem, 3vw, 2.3rem) 0 clamp(1.25rem, 2.6vw, 1.8rem);
  background-image: var(--page-hero-default-background);
}.page-hero--activity::before {
  display: none;
}.page-hero--listing .archive-hero, .page-hero--activity .archive-hero {
  min-height: var(--inner-page-hero-min-height);
  gap: clamp(1rem, 2.2vw, 1.8rem);
  align-items: stretch;
}.page-hero--listing .archive-hero, .page-hero--activity .archive-hero {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
}.page-hero--listing .archive-hero__content, .page-hero--activity .archive-hero__content {
  display: grid;
  min-height: var(--inner-page-hero-min-height);
  gap: 0.6rem;
  align-content: start;
}.page-hero--listing .archive-hero__content, .page-hero--activity .archive-hero__content {
  max-width: 46rem;
  padding-right: 0;
  padding-top: 0.25rem;
}.page-hero--listing .archive-hero__content .breadcrumb, .page-hero--listing .archive-hero__content .section-kicker, .page-hero--listing .archive-hero__content .page-hero__title, .page-hero--listing .archive-hero__content .page-hero__lead, .page-hero--activity .archive-hero__content .breadcrumb, .page-hero--activity .archive-hero__content .section-kicker, .page-hero--activity .archive-hero__content .page-hero__title, .page-hero--activity .archive-hero__content .page-hero__lead {
  margin: 0;
}.page-hero--listing .section-kicker, .page-hero--activity .section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}.page-hero--listing .page-hero__title, .page-hero--activity .page-hero__title, .page-hero__title--project {
  font-size: var(--inner-page-hero-title-size);
  line-height: 1.02;
  letter-spacing: -0.035em;
}.page-hero--listing .page-hero__lead, .page-hero--activity .page-hero__lead {
  font-size: var(--inner-page-hero-lead-size);
  line-height: 1.62;
}.page-hero--listing .page-hero__lead, .page-hero--activity .page-hero__lead {
  max-width: 35rem;
}.page-hero--listing .archive-hero__panel, .page-hero--activity .archive-hero__panel {
  display: grid;
  min-height: var(--inner-page-hero-min-height);
  align-self: stretch;
  align-content: start;
  gap: 0.8rem;
  padding: 1.05rem 1.1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(196, 30, 58, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 241, 239, 0.96) 100%);
  box-shadow: 0 20px 44px rgba(66, 31, 38, 0.06);
}.page-hero--listing .archive-hero__panel-label, .page-hero--activity .archive-hero__panel-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}.page-hero--listing .archive-hero__stats, .page-hero--activity .archive-hero__stats {
  gap: 0.65rem;
}.page-hero--listing .archive-stat, .page-hero--activity .archive-stat {
  min-height: 100%;
  padding: 0.78rem 0.85rem;
  border-radius: 16px;
}.page-hero--listing .archive-stat strong, .page-hero--activity .archive-stat strong {
  font-size: 1.62rem;
}.page-hero--listing .archive-stat span, .page-hero--activity .archive-stat span {
  font-size: 0.88rem;
}.page-hero--activity .archive-hero__summary {
  display: block;
}.page-hero--listing .archive-hero__summary, .page-hero--activity .archive-hero__summary {
  font-size: 0.92rem;
  line-height: 1.62;
}

@media (max-width: 1199px) {.page-hero--listing .archive-hero, .page-hero--activity .archive-hero {
    grid-template-columns: 1fr;
  }.page-hero--listing .archive-hero__content, .page-hero--activity .archive-hero__content, .page-hero--listing .archive-hero__panel, .page-hero--activity .archive-hero__panel {
    min-height: auto;
  }
}

@media (max-width: 767px) {.page-hero--listing, .page-hero--activity {
    --inner-page-hero-min-height: auto;
    padding: 2rem 0 1.45rem;
  }.page-hero--listing .archive-hero__content, .page-hero--activity .archive-hero__content {
    align-content: start;
  }.page-hero--listing .archive-hero__panel, .page-hero--activity .archive-hero__panel {
    padding: 1.1rem 1.05rem 1.15rem;
  }
}/* Contact page balance pass */
.contact-grid {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.35fr) minmax(460px, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}.contact-grid > * {
  min-height: 0;
  min-width: 0;
}.contact-aside, .contact-form-wrapper {
  display: grid;
  align-content: start;
}.contact-aside {
  gap: 1.35rem;
}.contact-aside .contact-intro {
  margin-bottom: 0;
  max-width: 44rem;
}.contact-aside .wechat-panel {
  margin-top: 0.1rem;
}.contact-aside .wechat-entry-stack {
  margin-top: 0.1rem;
}.contact-form-wrapper {
  justify-self: end;
  width: 100%;
  max-width: 540px;
  padding: clamp(1.5rem, 2.8vw, 2.4rem);
}.contact-form-wrapper h2 {
  margin-bottom: 0.6rem;
}.contact-form-intro {
  margin-bottom: 1.35rem;
  max-width: 34rem;
  line-height: 1.8;
}.contact-form select:required:invalid {
  color: var(--color-gray-light);
}.contact-form select option {
  color: var(--color-dark);
}.wechat-entry-stack {
  gap: 1rem;
}.wechat-panel {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 1rem;
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
  border: 1px solid rgba(196, 30, 58, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(92, 48, 55, 0.08);
}.wechat-panel__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.22rem;
  width: 100%;
}.wechat-panel__content strong {
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}.wechat-panel__content p {
  margin-bottom: 0;
  line-height: 1.7;
  max-width: 28rem;
}.wechat-panel__name, .wechat-panel__id {
  margin-top: 0.15rem;
  color: var(--color-dark);
  font-size: 0.98rem;
  font-weight: 600;
}.wechat-panel__name span {
  font-weight: 700;
}.wechat-panel__copy-link {
  margin-top: 0.15rem;
  color: var(--color-gray-light);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}.wechat-panel__copy-link:hover, .wechat-panel__copy-link:focus-visible {
  color: var(--color-primary);
  opacity: 0.9;
}.wechat-panel__actions {
  justify-content: center;
  margin-top: 0.1rem;
}.wechat-panel__secondary {
  font-size: 0.875rem;
}.wechat-panel__media {
  width: 100%;
  max-width: 170px;
  justify-self: center;
  margin-top: 0.35rem;
}.wechat-panel__media img, .wechat-panel__placeholder {
  width: 100%;
  border: 0;
  border-radius: 24px;
  box-shadow: none;
  background: transparent;
}.wechat-panel__media img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 0;
}.wechat-panel__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--color-primary);
}.wechat-panel--official .wechat-panel__media img, .wechat-panel--official .wechat-panel__placeholder, .wechat-panel--service .wechat-panel__media img, .wechat-panel--service .wechat-panel__placeholder {
  max-width: 170px;
}.contact-item {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(196, 30, 58, 0.1);
  border-radius: 24px;
  background: rgba(255,255,255,0.8);
  box-shadow: 0 14px 30px rgba(92, 48, 55, 0.06);
  align-items: flex-start;
}.contact-item--email {
  padding-left: 1.1rem;
}.contact-item--email .contact-item-text {
  padding-left: 0;
}.contact-item-icon {
  flex-shrink: 0;
  border: 1px solid rgba(196, 30, 58, 0.1);
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.12), rgba(196, 30, 58, 0.04));
}.contact-item-text strong {
  font-size: 1rem;
}.contact-item-text p {
  line-height: 1.7;
}

@media (max-width: 1199px) {.contact-grid {
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
  }.contact-grid > * {
    min-height: auto;
  }.wechat-panel {
    grid-template-columns: 1fr;
  }.wechat-panel__media {
    max-width: 160px;
  }.contact-form-wrapper {
    justify-self: start;
    max-width: none;
  }
}

@media (max-width: 767px) {.wechat-entry-stack {
    gap: var(--space-4);
  }.contact-aside__intro {
    gap: 0.85rem;
    padding-bottom: 0.2rem;
  }.contact-aside__eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
  }.contact-aside__title {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
    line-height: 1;
  }.contact-aside__lead {
    font-size: 1rem;
    line-height: 1.72;
  }.wechat-panel {
    justify-items: center;
    gap: var(--space-4);
    padding: 1rem;
  }.wechat-panel__media img, .wechat-panel__placeholder {
    aspect-ratio: 1 / 1;
    max-width: 240px;
    margin-inline: auto;
  }.wechat-panel__media {
    max-width: 240px;
    justify-self: center;
    transform: none;
  }.wechat-panel__content {
    text-align: center;
  }.wechat-panel__actions {
    flex-direction: column;
  }.wechat-panel__action, .wechat-panel__secondary {
    width: 100%;
  }.wechat-panel__action {
    justify-content: center;
  }.wechat-panel.is-external-browser .wechat-panel__media img, .wechat-panel.is-external-browser .wechat-panel__placeholder {
    aspect-ratio: 1 / 1;
  }
}.page-hero--listing, .page-hero--activity {
  --inner-page-hero-min-height: clamp(228px, 18vw, 252px);
  padding: clamp(1.45rem, 2.6vw, 1.95rem) 0 clamp(1rem, 2vw, 1.35rem);
}.page-hero--listing .archive-hero, .page-hero--activity .archive-hero {
  min-height: var(--inner-page-hero-min-height);
  gap: clamp(0.95rem, 2vw, 1.5rem);
}.page-hero--listing .archive-hero__content, .page-hero--activity .archive-hero__content {
  min-height: auto;
  gap: 0.7rem;
}.page-hero--listing .archive-hero__panel, .page-hero--activity .archive-hero__panel {
  min-height: auto;
  gap: 0.72rem;
  padding: 0.95rem 1rem 1rem;
}.page-hero--listing .page-hero__lead, .page-hero--activity .page-hero__lead {
  max-width: 32rem;
}.page-hero--listing .archive-hero__stats, .page-hero--activity .archive-hero__stats {
  gap: 0.55rem;
}.page-hero--listing .archive-stat, .page-hero--activity .archive-stat {
  padding: 0.72rem 0.8rem;
}.page-hero--listing .archive-hero__summary, .page-hero--activity .archive-hero__summary {
  font-size: 0.9rem;
  line-height: 1.58;
}.archive-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.1rem;
}.archive-hero__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.3rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 30, 58, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: #5b4649;
  font-size: 0.84rem;
  font-weight: 600;
}.page-hero--blog, .page-hero--contact {
  --marketing-hero-min-height: var(--marketing-hero-unified-min-height);
  padding-block: var(--marketing-hero-padding-top) var(--marketing-hero-padding-bottom);
}.page-hero--blog {
}.page-hero--blog.page-hero--projects-directory {
  --marketing-hero-min-height: calc(var(--marketing-hero-unified-min-height) * 0.5);
  padding-block: calc(var(--marketing-hero-padding-top) * 0.5) calc(var(--marketing-hero-padding-bottom) * 0.5);
}.page-hero--blog .project-directory-hero__copy {
  width: 100%;
  max-width: none;
}.page-hero--blog .page-hero__lead {
  width: fit-content;
  max-width: none;
  white-space: nowrap;
}.page-hero--blog .archive-hero, .page-hero--contact .archive-hero {
  grid-template-columns: minmax(0, 1fr);
  min-height: var(--marketing-hero-min-height);
  align-items: center;
}.page-hero--blog .archive-hero__content, .page-hero--contact .archive-hero__content {
  max-width: 42rem;
}.blog-page-shell {
  padding-top: 0.9rem;
}.blog-page-search .blog-page-search__icon {
  color: #8f7c81;
}.blog-list-grid .editorial-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}@media (max-width: 767px) {
  .page-hero--blog .page-hero__lead {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }
}.blog-list-grid .editorial-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}.blog-list-grid .card-tags--stacked {
  margin-bottom: 0.95rem;
}.blog-list-grid .editorial-card h3 {
  margin-bottom: 0.9rem;
}.blog-list-grid .editorial-card .card-date {
  margin-bottom: 0.7rem;
}.blog-list-grid .editorial-card .card-summary {
  flex: 1;
  min-height: calc(1.68em * 3);
}.blog-list-grid .editorial-card .card-link {
  margin-top: 1rem;
}.contact-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 32rem);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: start;
}.contact-page__layout > * {
  min-width: 0;
  min-height: 0;
}.contact-page__aside {
  display: grid;
  gap: clamp(1.1rem, 2vw, 1.5rem);
  align-content: start;
  position: static;
  top: auto;
}.contact-page__form {
  width: min(100%, 32rem);
  max-width: 32rem;
  justify-self: end;
  min-width: 0;
}.contact-aside__intro {
  display: grid;
  gap: 1.05rem;
  align-content: start;
  max-width: 44rem;
  padding: 0.1rem 0 0.35rem;
}.contact-aside__eyebrow {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}.contact-aside__title {
  margin: 0;
  color: #1f1418;
  font-size: clamp(2.95rem, 5.4vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}.contact-aside__lead {
  margin: 0;
  max-width: 42rem;
  color: #62575b;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.75;
}.wechat-entry-stack {
  display: grid;
  gap: 1.15rem;
}.contact-page__aside .wechat-panel {
  display: grid;
  grid-template-columns: minmax(106px, 142px) minmax(0, 1fr);
  align-items: center;
  justify-items: stretch;
  gap: clamp(1rem, 1.8vw, 1.35rem);
  padding: clamp(1.15rem, 2.2vw, 1.45rem);
  text-align: left;
}.contact-page__aside .wechat-panel__media {
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: clamp(106px, 12vw, 142px);
  margin-top: 0;
  transform: none;
}.contact-page__aside .wechat-panel__media img, .contact-page__aside .wechat-panel__placeholder {
  max-width: 100%;
  margin-inline: auto;
}.contact-page__aside .wechat-panel__content {
  display: grid;
  align-content: center;
  justify-items: start;
  align-items: start;
  gap: 0.35rem;
  width: 100%;
  min-width: 0;
  text-align: left;
}.contact-page__aside .wechat-panel__title {
  color: #1f1418;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}.wechat-panel__helper {
  display: none;
}.contact-page__aside .wechat-panel__copy-link, .contact-page__aside .wechat-panel__secondary {
  margin-top: 0;
  color: #8f7c81;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  text-underline-offset: 0;
  padding: 0;
  line-height: 1.4;
}.contact-page__aside .wechat-panel__copy-link:hover, .contact-page__aside .wechat-panel__copy-link:focus-visible, .contact-page__aside .wechat-panel__secondary:hover, .contact-page__aside .wechat-panel__secondary:focus-visible {
  color: var(--color-primary);
  opacity: 1;
  transform: none;
}.contact-page__aside .wechat-panel__actions {
  justify-content: flex-start;
  margin-top: 0;
}.contact-page__aside .wechat-panel__body {
  margin: 0.2rem 0 0;
  color: #5f5458;
  font-size: 0.96rem;
  line-height: 1.72;
  max-width: 28rem;
}.contact-channel {
  justify-content: flex-start;
}.contact-channel__body {
  width: 100%;
  text-align: left;
}.contact-page__form.contact-form-wrapper {
  padding: clamp(1.35rem, 2.6vw, 2.3rem);
  width: min(100%, 32rem);
}.contact-page__form.contact-form-wrapper h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}.contact-page__form .contact-form-intro {
  margin-bottom: 1.25rem;
  max-width: 30rem;
  font-size: 0.98rem;
  line-height: 1.72;
}.contact-page__form .contact-form .form-group > label {
  font-size: clamp(1.05rem, 1.45vw, 1.18rem);
  margin-bottom: 0.6rem;
}.contact-page__form .form-group input, .contact-page__form .form-group select {
  min-height: 52px;
}.contact-page__form .form-group textarea {
  min-height: 150px;
}

@media (max-width: 1240px) {.contact-page__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.6rem;
  }.contact-page__form {
    justify-self: start;
    width: min(100%, 44rem);
    max-width: none;
  }.contact-page__form.contact-form-wrapper {
    width: min(100%, 44rem);
  }
}

@media (max-width: 900px) {.contact-aside__title {
    font-size: clamp(2.7rem, 8vw, 4rem);
  }.contact-page__aside .wechat-panel {
    grid-template-columns: minmax(96px, 118px) minmax(0, 1fr);
  }.contact-page__form.contact-form-wrapper h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
}

@media (max-width: 640px) {.contact-page__layout {
    gap: 1.25rem;
  }.contact-aside__intro {
    gap: 0.85rem;
  }.contact-aside__title {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }.contact-aside__lead {
    font-size: 0.98rem;
  }.contact-page__aside .wechat-panel {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.95rem;
    padding: 1rem;
  }.contact-page__aside .wechat-panel__media {
    justify-self: start;
    max-width: 132px;
  }.contact-page__aside .wechat-panel__content {
    justify-items: start;
  }.contact-page__form.contact-form-wrapper {
    padding: 1.2rem;
  }.contact-page__form .contact-form .form-group > label {
    font-size: 1rem;
  }.contact-page__form .form-group input, .contact-page__form .form-group select {
    min-height: 50px;
  }
}.listing-section--compact {
  padding-top: 1.15rem;
}.listing-section--compact .listing-toolbar {
  margin: 0.95rem 0 1.2rem;
}.filter-toolbar--activity {
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.54fr) minmax(200px, 0.62fr) auto auto;
}.filter-toolbar--activity .activity-view-switch {
  justify-self: end;
}.listing-result--activity {
  margin: 0.05rem 0 0.15rem;
  color: #5a4b4e;
  font-size: 0.94rem;
}.table-heading-label {
  display: inline-flex;
  align-items: center;
  min-height: 60px;
  padding: 0 1.2rem;
  color: #3f3134;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}.table-heading-label--active {
  color: var(--color-primary);
}.table-heading-label--center {
  justify-content: center;
  width: 100%;
}

@media (max-width: 1199px) {.filter-toolbar--activity {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.filter-toolbar--activity .filter-search {
    grid-column: 1 / -1;
  }.filter-toolbar--activity .activity-view-switch {
    width: 100%;
    justify-self: stretch;
  }.filter-toolbar--activity .activity-view-switch .view-btn {
    flex: 1;
  }
}

@media (max-width: 767px) {.listing-section--compact {
    padding-top: 0.95rem;
  }.filter-toolbar--activity {
    grid-template-columns: 1fr;
  }.filter-toolbar--activity .activity-view-switch {
    width: 100%;
  }
}.page-hero--project {
  padding: clamp(1.55rem, 2.8vw, 2.2rem) 0 clamp(1.05rem, 2vw, 1.45rem);
}.project-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(1.1rem, 2.4vw, 1.9rem);
  align-items: start;
}.project-hero-copy {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  min-width: 0;
  max-width: 46rem;
}.project-hero-copy .breadcrumb, .project-hero-copy .page-hero__title, .project-hero-copy .page-hero__lead {
  margin: 0;
}.page-hero--project .page-hero__title--project {
  max-width: 9ch;
  font-size: clamp(2.45rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}.page-hero--project .page-hero__lead {
  max-width: 39rem;
  font-size: 1rem;
  line-height: 1.72;
}.page-hero--project .hero-meta-list {
  margin: 0.15rem 0 0.1rem;
}.project-hero-card {
  display: grid;
  gap: 0.82rem;
  padding: 1.05rem 1.1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(196, 30, 58, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 241, 239, 0.96) 100%);
  box-shadow: 0 18px 42px rgba(92, 48, 55, 0.08);
}.project-hero-card__eyebrow {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}.project-hero-card__note {
  margin: 0;
  color: #5a4b4e;
  font-size: 0.92rem;
  line-height: 1.64;
}.project-hero-card__cta {
  width: 100%;
  margin-top: 0.1rem;
}.project-single-layout--single-column {
  grid-template-columns: 1fr;
}.project-single-layout--single-column .project-single-content {
  max-width: 860px;
}

@media (max-width: 1199px) {.project-hero-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {.page-hero--project .page-hero__title--project {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 3.05rem);
  }
}.page-hero--project-editorial {
  padding: clamp(2rem, 4vw, 3.25rem) 0 clamp(1.2rem, 2.8vw, 2rem);
}.page-hero--project-editorial .breadcrumb {
  margin: 0 0 1rem;
}.project-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(1.35rem, 3vw, 2.6rem);
  align-items: stretch;
}.project-detail-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.95rem;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 244, 240, 0.96) 100%);
  border: 1px solid rgba(58, 73, 87, 0.08);
  box-shadow: 0 16px 34px rgba(54, 61, 68, 0.06);
}.page-hero--project-editorial .section-kicker, .page-hero--project-editorial .page-hero__title--project, .project-detail-intro {
  margin: 0;
}.page-hero--project-editorial .page-hero__title--project {
  max-width: 80%;
  font-size: clamp(2.7rem, 4.9vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}.project-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}.project-detail-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #596675;
  font-size: 0.95rem;
  font-weight: 600;
}.project-detail-meta__item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
}.project-detail-intro {
  max-width: 38rem;
  color: #3e454f;
  font-size: 1.06rem;
  line-height: 1.85;
}.project-detail-hero__actions {
  margin-top: 0.35rem;
}.project-detail-hero__visual {
  min-height: clamp(320px, 42vw, 560px);
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(58, 73, 87, 0.08);
  background: linear-gradient(135deg, rgba(246, 247, 244, 0.98) 0%, rgba(241, 234, 229, 0.98) 100%);
  box-shadow: 0 20px 42px rgba(54, 61, 68, 0.07);
}.project-detail-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}.project-detail-hero__visual--badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem);
}.project-detail-hero__badge-image {
  display: block;
  width: min(280px, 68%);
  height: auto;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(48, 46, 44, 0.12));
}.project-detail-main {
  padding-top: 0.7rem;
}.project-detail-layout {
  display: grid;
  gap: clamp(2rem, 3vw, 3rem);
}.project-detail-layout--has-aside {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  align-items: start;
}.project-detail-article {
  display: grid;
  gap: clamp(2rem, 3vw, 3rem);
}.project-detail-block {
  padding-bottom: clamp(1.7rem, 3vw, 2.4rem);
  border-bottom: 1px solid rgba(59, 74, 88, 0.12);
}.project-detail-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}.project-detail-block__eyebrow {
  margin: 0 0 0.55rem;
  color: #6c7986;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}.project-detail-block h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
}.project-detail-aside {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}.project-detail-card {
  padding: 1.3rem 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(58, 73, 87, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 244, 240, 0.96) 100%);
  box-shadow: 0 14px 28px rgba(54, 61, 68, 0.06);
}.project-detail-card__eyebrow {
  margin: 0 0 1rem;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}.project-detail-facts {
  display: grid;
  gap: 0.95rem;
  margin: 0;
}.project-detail-facts dt {
  margin-bottom: 0.15rem;
  color: #6c7682;
  font-size: 0.88rem;
}.project-detail-facts dd {
  margin: 0;
  color: #28313a;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}.project-detail-cta {
  padding-top: 0;
}.project-detail-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  border-radius: 32px;
  background: linear-gradient(135deg, #33485c 0%, #506a80 100%);
  box-shadow: 0 20px 36px rgba(39, 53, 67, 0.16);
}.project-detail-cta__copy {
  color: rgba(255, 255, 255, 0.92);
}.project-detail-cta__copy h2, .project-detail-cta__copy p, .project-detail-cta__eyebrow {
  margin: 0;
}.project-detail-cta__copy h2 {
  margin-bottom: 0.55rem;
  color: #fff;
}.project-detail-cta__copy p {
  max-width: 42rem;
  line-height: 1.72;
}.project-detail-cta__eyebrow {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}.project-detail-cta__button {
  flex-shrink: 0;
  min-width: 172px;
}.blog-directory-cta .project-detail-cta__button {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  justify-self: auto;
  gap: 0;
  text-align: center;
  line-height: 1.15;
}

@media (max-width: 1199px) {.project-detail-hero, .project-detail-layout--has-aside {
    grid-template-columns: 1fr;
  }.page-hero--project-editorial .page-hero__title--project {
    max-width: 100%;
  }.project-detail-aside {
    position: static;
  }
}

@media (max-width: 991px) {.project-detail-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================
   BLOG ARTICLE STORY LAYOUT
   ============================================ */
.page-hero--article-story {
  padding-bottom: clamp(1.8rem, 3.6vw, 3rem);
}.page-hero--article-story .page-hero__title--article {
  max-width: none;
  font-size: clamp(2.2rem, 3.05vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}.article-hero-shell {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: end;
}.article-hero-shell--summary {
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.65fr);
  align-items: start;
}.article-hero-shell--visual {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}.article-hero__copy {
  max-width: none;
}.article-hero__source {
  margin-top: 0.9rem;
  color: #7a6b6d;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}.article-hero__intro {
  margin-top: 0;
  padding-left: 1.25rem;
  border-left: 3px solid rgba(196, 30, 58, 0.18);
}.article-hero__intro p {
  margin: 0;
  max-width: 58ch;
  color: #3c3133;
  font-size: clamp(1.05rem, 1.8vw, 1.26rem);
  line-height: 1.9;
}.article-hero__intro p + p {
  margin-top: 1rem;
}.article-hero__media {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 241, 238, 0.96) 100%);
  box-shadow: 0 28px 60px rgba(62, 41, 43, 0.08);
}.article-hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}.article-hero__summary {
  display: grid;
  gap: 0.9rem;
  align-self: stretch;
  padding: clamp(1.05rem, 1.8vw, 1.4rem);
  border: 1px solid rgba(95, 69, 73, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 245, 243, 0.98) 100%);
  box-shadow: 0 18px 38px rgba(62, 41, 43, 0.06);
}.article-hero__summary .article-hero__intro {
  padding: 0;
  border-left: none;
}.article-hero__summary .article-hero__intro p {
  max-width: none;
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
  line-height: 1.75;
}.article-hero__summary-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}.article-hero__source--summary {
  margin-top: 0;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(95, 69, 73, 0.08);
}.section--article-story {
  padding-top: 0;
}.article-layout--story {
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(2rem, 4vw, 4rem);
}.article-shell {
  min-width: 0;
}.article-prose {
  padding: clamp(1.5rem, 2vw, 2rem);
  border: 1px solid rgba(95, 69, 73, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 48px rgba(66, 47, 49, 0.06);
}.article-prose > :first-child {
  margin-top: 0 !important;
}.article-prose > :last-child {
  margin-bottom: 0 !important;
}.article-prose p {
  margin: 0 0 1.15rem;
  color: #3a3032;
  font-size: 1rem;
  line-height: 1.95;
}.article-prose p + p {
  margin-top: 0;
}.article-prose > h2 {
  position: relative;
  margin: 3rem 0 1.2rem;
  padding: 0 0 0 1.1rem;
  border-top: none;
  color: #23191b;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.25;
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}.article-prose > h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 4px;
  height: 1.05em;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(196, 30, 58, 0.95) 0%, rgba(242, 195, 203, 0.95) 100%);
}.article-prose > h3 {
  display: inline-block;
  margin: 2.15rem 0 0.9rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(95, 69, 73, 0.1);
  color: #2c2022;
  font-size: 1.18rem;
  line-height: 1.45;
}.article-prose figure {
  margin: 1.6rem 0 1.9rem;
}.article-prose .wp-block-image, .article-prose .wp-block-table {
  margin: 1.75rem 0 2rem;
}.article-prose .wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(66, 47, 49, 0.08);
}.article-prose figcaption {
  margin-top: 0.75rem;
  color: #7a686b;
  font-size: 0.9rem;
  line-height: 1.6;
}.article-prose .wp-block-table {
  overflow-x: auto;
  border: 1px solid rgba(95, 69, 73, 0.1);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 247, 245, 0.96) 100%);
  box-shadow: 0 16px 36px rgba(66, 47, 49, 0.06);
}.article-prose .wp-block-table table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}.article-prose .wp-block-table thead {
  background: rgba(196, 30, 58, 0.07);
}.article-prose .wp-block-table th, .article-prose .wp-block-table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(95, 69, 73, 0.08);
  border-right: 1px solid rgba(95, 69, 73, 0.08);
  text-align: left;
  vertical-align: top;
  color: #2c2224;
  font-size: 0.98rem;
  line-height: 1.8;
}.article-prose .wp-block-table th:last-child, .article-prose .wp-block-table td:last-child {
  border-right: none;
}.article-prose .wp-block-table tbody tr:last-child td {
  border-bottom: none;
}.article-prose .wp-block-table th {
  color: #23191b;
  font-weight: 700;
}.article-section-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  margin: 3rem 0 1.35rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(95, 69, 73, 0.12);
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}.article-section-heading__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 56px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(196, 30, 58, 0.1);
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}.article-section-heading h2 {
  margin: 0;
  color: #23191b;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.25;
}.article-subheading {
  margin: 2.15rem 0 0.9rem;
  color: #2c2022;
  font-size: 1.18rem;
  line-height: 1.45;
}.article-prose-list {
  margin: 1.15rem 0 1.5rem;
  padding-left: 1.35rem;
  color: #3a3032;
}.article-prose-list li {
  margin-bottom: 0.7rem;
  line-height: 1.85;
}.article-prose-list--ordered {
  list-style: decimal;
}.article-prose-list--unordered {
  list-style: disc;
}.article-fact-list {
  margin: 1.2rem 0 1.5rem;
  border: 1px solid rgba(95, 69, 73, 0.1);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 247, 245, 0.96) 100%);
}.article-fact-list__row {
  display: grid;
  grid-template-columns: minmax(88px, 148px) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(95, 69, 73, 0.08);
}.article-fact-list__row:last-child {
  border-bottom: none;
}.article-fact-list dt, .article-fact-list dd {
  margin: 0;
}.article-fact-list dt {
  color: #7a686b;
  font-size: 0.9rem;
  font-weight: 700;
}.article-fact-list dd {
  color: #2c2224;
  line-height: 1.85;
}.article-faq-item {
  margin: 1rem 0;
  border: 1px solid rgba(95, 69, 73, 0.1);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
}.article-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  color: #201719;
  font-weight: 700;
  line-height: 1.6;
}.article-faq-item summary::-webkit-details-marker {
  display: none;
}.article-faq-item[open] summary {
  background: rgba(196, 30, 58, 0.05);
}.article-faq-item__body {
  padding: 0 1.25rem 1.15rem;
}.article-faq-item__body p:last-child {
  margin-bottom: 0;
}.article-toc-mobile {
  display: none;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(95, 69, 73, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
}.article-toc-mobile summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 700;
  color: #201719;
  list-style: none;
}.article-toc-mobile summary::-webkit-details-marker {
  display: none;
}.article-toc-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(95, 69, 73, 0.08);
}.article-toc-card__nav {
  display: grid;
  gap: 0.55rem;
}.article-toc-card__link {
  display: block;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  color: #4c4042;
  text-decoration: none;
  line-height: 1.55;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}.article-toc-card__link:hover {
  background: rgba(196, 30, 58, 0.06);
  color: var(--color-primary);
  transform: translateX(2px);
}.article-toc-card--desktop .article-side-card__title {
  margin-bottom: 0.8rem;
}

@media (max-width: 1199px) {.article-hero-shell--summary, .article-hero-shell--visual {
    grid-template-columns: 1fr;
  }.article-hero__summary, .article-hero__media {
    max-width: 680px;
  }.article-layout--story {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
}

@media (max-width: 767px) {.page-hero--article-story {
    padding-bottom: 2rem;
  }.page-hero--article-story .page-hero__title--article {
    max-width: 100%;
    font-size: clamp(2rem, 8.9vw, 3.15rem);
  }.article-hero__intro {
    padding-left: 1rem;
  }.article-hero__summary {
    padding: 1rem;
    border-radius: 22px;
  }.article-layout--story {
    grid-template-columns: 1fr;
  }.article-prose {
    padding: 1.2rem 1rem;
    border-radius: 22px;
  }.article-section-heading {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 2.35rem;
    padding-top: 1.8rem;
  }.article-section-heading__number {
    min-width: 50px;
    min-height: 50px;
    width: fit-content;
  }.article-fact-list__row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }.article-toc-mobile {
    display: block;
  }.article-toc-card--desktop {
    display: none;
  }
}#homepage-activities {
  --homepage-activities-date-col: 13%;
  --homepage-activities-city-col: 12%;
  --homepage-activities-title-col: 75%;
}#homepage-activities .homepage-activities-shell {
  position: relative;
  display: block;
  overflow: hidden;
}#homepage-activities .homepage-activities-table {
  width: 100%;
  table-layout: fixed;
  margin: 0;
}#homepage-activities .homepage-activities-table .homepage-activities-table__col--date {
  width: var(--homepage-activities-date-col);
}#homepage-activities .homepage-activities-table .homepage-activities-table__col--city {
  width: var(--homepage-activities-city-col);
}#homepage-activities .homepage-activities-table .homepage-activities-table__col--title {
  width: var(--homepage-activities-title-col);
}#homepage-activities .homepage-activities-table td {
  vertical-align: middle;
}#homepage-activities .homepage-activities-table .date-cell {
  width: var(--homepage-activities-date-col);
}#homepage-activities .homepage-activities-table .table-city {
  width: var(--homepage-activities-city-col);
}#homepage-activities .homepage-activities-table .title-cell {
  width: var(--homepage-activities-title-col);
  min-width: 0;
}#homepage-activities .homepage-activities-table .activity-row-title {
  margin: 0;
  font-size: clamp(1rem, 1.55vw, 1.1rem);
  line-height: 1.5;
}.section--home-projects, .section--home-insights {
  position: relative;
}.hero-shell {
  gap: clamp(2rem, 4vw, 4rem);
}.section--home-projects .section-header--left, .section--home-insights .section-header--left {
  max-width: 44rem;
}.section--home-projects .projects-grid, .section--home-insights .grid {
  margin-top: clamp(2rem, 3vw, 3rem);
}.section--home-insights .text-center, .section--home-projects .text-center {
  margin-top: clamp(2rem, 3vw, 3rem) !important;
}.home-cta > .container {
  max-width: 72rem;
}

@media (max-width: 960px) {.hero-shell {
    grid-template-columns: 1fr;
  }.section--home-projects .section-header--left, .section--home-insights .section-header--left {
    max-width: 100%;
  }
}/* PDF three-page fluid rebuild */
body.home .home-pdf-projects > .container, body.home .home-pdf-stats > .container, body.home .home-pdf-insights > .container, body.page-template-page-about .about-pdf-stats > .container, body.page-template-page-about-php .about-pdf-stats > .container, body.page-template-page-about .about-pdf-work > .container, body.page-template-page-about-php .about-pdf-work > .container, .home-cta--pdf > .container {
  width: min(100% - clamp(1.25rem, 5vw, 4rem), 76rem);
  margin-inline: auto;
}.home-cta--pdf .home-cta__shell {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}.home-cta--pdf .home-cta__shell {
  grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
  align-items: center;
}.home-pdf-section-head__copy, .home-cta--pdf .home-cta__copy {
  max-width: 44rem;
}.home-pdf-section-head__copy > p, .home-cta--pdf .home-cta__lead {
  max-width: 38rem;
}.home-cta--pdf .home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}.home-pdf-stats__grid, .home-pdf-directions__grid {
  display: grid;
  gap: clamp(0.875rem, 2vw, 1.5rem);
}.home-pdf-stats__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}.home-pdf-directions__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}.home-pdf-direction-card {
  display: grid;
  grid-template-rows: minmax(3.3rem, auto) clamp(8.9rem, 10vw, 10.25rem) minmax(6.3rem, 1fr);
  align-content: start;
  justify-items: center;
  gap: 0.9rem;
  min-height: clamp(18.5rem, 23vw, 22.5rem);
  padding: clamp(1.2rem, 1.9vw, 1.6rem);
  border: 1.5px solid rgba(227, 170, 34, 0.92);
  border-radius: 1.65rem;
  color: var(--color-dark);
  box-shadow: none;
  background: linear-gradient(180deg, rgba(252, 245, 246, 0.98), rgba(248, 236, 239, 0.96));
}.home-pdf-direction-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(252, 247, 243, 0.98), rgba(249, 241, 233, 0.96));
}.home-pdf-direction-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(247, 242, 241, 0.98), rgba(239, 231, 228, 0.96));
}.home-pdf-direction-card:nth-child(4) {
  background: linear-gradient(180deg, rgba(243, 246, 249, 0.98), rgba(234, 239, 245, 0.96));
}.home-pdf-direction-card__title-block {
  width: 100%;
  min-height: 3.3rem;
  padding-top: 0.1rem;
}.home-pdf-direction-card__title {
  margin: 0;
  color: #1f1418;
  text-align: center;
  font-size: clamp(1.5rem, 1.9vw, 2.15rem);
  line-height: 1.06;
  text-shadow: none;
}.home-pdf-direction-card__figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(10.25rem, 74%);
  height: clamp(8.9rem, 10vw, 10.25rem);
  margin-inline: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}.home-pdf-direction-card__figure::after {
  content: none;
}.home-pdf-direction-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
}.home-pdf-direction-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}.home-pdf-direction-card__copy {
  width: 100%;
  min-height: 6.3rem;
  padding: 0;
}.home-pdf-direction-card__copy p {
  max-width: 12ch;
  margin: 0 auto;
  color: #5b6470;
  text-align: center;
  font-size: 1rem;
  line-height: 1.55;
}.home-pdf-stat-card {
  display: grid;
  gap: 0.12rem;
  min-height: clamp(9rem, 14vw, 11rem);
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1.5px solid rgba(196, 151, 58, 0.82);
  background:
    radial-gradient(circle at 50% 0%, rgba(152, 24, 46, 0.08), transparent 46%),
    linear-gradient(180deg, rgba(255, 251, 248, 0.98) 0%, rgba(251, 244, 241, 0.96) 100%);
  border-radius: 1.25rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 16px 34px rgba(96, 24, 40, 0.1);
  justify-items: center;
  align-content: center;
  text-align: center;
}.home-pdf-stat-card strong {
  margin: 0;
  color: #581423;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}.home-pdf-stat-card span {
  margin: 0;
  color: #6a4b4f;
  line-height: 1.28;
  font-weight: 600;
}.home-pdf-projects__grid, .home-pdf-insights__grid {
  margin-top: 0;
}.home-pdf-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}.home-pdf-projects .home-pdf-section-head__copy {
  max-width: none;
}.home-pdf-projects .project-card--home-directory {
  gap: 1rem;
  min-height: clamp(31rem, 38vw, 34rem);
  padding: 1.15rem 1.15rem 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}.home-pdf-stats > .container > .home-pdf-section-head {
  justify-content: flex-start;
}.home-pdf-stats > .container > .home-pdf-section-head .home-pdf-section-head__copy {
  text-align: left;
  margin-inline: 0;
}.home-pdf-activities__head h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}.home-pdf-section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #6d6d6d;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.28em;
  text-decoration-thickness: 2px;
}.home-pdf-section-link:hover {
  color: #111827;
}.home-pdf-activity-panel {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.5rem, 2.8vw, 2.35rem);
  border-radius: 1.65rem;
  border: 1.5px solid rgba(196, 151, 58, 0.7);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 214, 126, 0.16), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(135deg, #641126 0%, #7b1730 48%, #8f2440 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 226, 0.16),
    0 20px 42px rgba(78, 16, 30, 0.18);
  justify-items: start;
  text-align: left;
}.home-pdf-activity-panel[data-home-activity-booking-panel] {
  position: relative;
}.home-pdf-activity-panel__copy {
  min-width: 0;
}.home-pdf-activity-panel h3, .home-pdf-activity-panel p {
  margin: 0;
  color: #fff8ef;
}.home-pdf-activity-panel h3 {
  font-size: clamp(1.7rem, 2.2vw, 2.45rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}.home-pdf-activity-panel p {
  max-width: 44rem;
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 246, 237, 0.92);
}.home-pdf-activity-booking-entry {
  position: absolute;
  top: clamp(1.5rem, 2.8vw, 2.35rem);
  right: clamp(1.5rem, 2.8vw, 2.35rem);
  bottom: clamp(1.5rem, 2.8vw, 2.35rem);
  width: clamp(9.25rem, 11.2vw, 10.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  pointer-events: none;
}.home-pdf-activity-booking-toggle,
.home-pdf-activity-booking-qr {
  border: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
}.home-pdf-activity-booking-toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.625rem;
  min-height: 3.5rem;
  padding: 0 1.5rem;
  border-radius: 1.125rem;
  background: #fff;
  color: #c72b48;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(62, 12, 24, 0.16);
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  will-change: transform, opacity, filter;
  transition: opacity 180ms ease, filter 180ms ease, transform 240ms ease;
}.home-pdf-activity-booking-toggle:hover {
  filter: brightness(0.98);
}.home-pdf-activity-booking-toggle:focus-visible,
.home-pdf-activity-booking-qr:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.82);
  outline-offset: 4px;
}.home-pdf-activity-booking-qr {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: min(100%, 8.9rem);
  aspect-ratio: 1 / 1;
  padding: 0.5rem;
  border-radius: 1.375rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 28px rgba(62, 12, 24, 0.18);
  cursor: pointer;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  filter: blur(10px);
  transform: translate(-50%, -50%) scale(0.92);
  will-change: transform, opacity, filter;
  transition: opacity 220ms ease, transform 260ms ease, visibility 220ms ease, filter 220ms ease;
}.home-pdf-activity-booking-qr img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  padding: 0;
  border-radius: 0.625rem;
  background: transparent;
  object-fit: contain;
}.home-pdf-activity-panel.is-booking-animating .home-pdf-activity-booking-toggle,
.home-pdf-activity-panel.is-booking-animating .home-pdf-activity-booking-qr {
  pointer-events: none;
}.home-pdf-activity-panel.is-booking-open:not(.is-booking-animating) .home-pdf-activity-booking-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}.home-pdf-activity-panel.is-booking-open .home-pdf-activity-booking-qr {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  transform: translate(-50%, -50%) scale(1);
}.home-pdf-activity-booking-qr[hidden] {
  display: none;
}
@media (max-width: 1100px) {
  .home-pdf-activity-booking-entry {
    width: 9.25rem;
  }

  .home-pdf-activity-booking-toggle {
    min-width: 7.75rem;
    min-height: 3.2rem;
    font-size: 1rem;
  }

  .home-pdf-activity-booking-qr {
    width: min(100%, 7.9rem);
  }
}.home-pdf-activity-more {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  justify-self: auto;
  margin-inline: auto;
  gap: 0;
  min-width: 11rem;
  text-align: center;
  line-height: 1.1;
  text-decoration: none;
}.home-pdf-activity-more-wrap {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: clamp(1.2rem, 2.4vw, 1.8rem);
}.homepage-activities-shell.is-scrollable {
  overflow-y: auto;
  padding-right: 0.4rem;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 31, 67, 0.72) rgba(200, 31, 67, 0.08);
}.homepage-activities-shell.is-scrollable::-webkit-scrollbar {
  width: 0.7rem;
}.homepage-activities-shell.is-scrollable::-webkit-scrollbar-track {
  background: rgba(200, 31, 67, 0.08);
  border-radius: 999px;
}.homepage-activities-shell.is-scrollable::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(200, 31, 67, 0.86), rgba(152, 24, 46, 0.92));
  border-radius: 999px;
}.homepage-activities-shell.is-expanded.has-overflow::after {
  content: "";
  position: sticky;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  height: 3rem;
  margin-top: -3rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(246, 242, 239, 0), rgba(246, 242, 239, 0.92) 76%, rgba(246, 242, 239, 1));
}.home-pdf-insights .home-pdf-section-head {
  align-items: start;
  margin-bottom: clamp(1.85rem, 4vw, 2.6rem);
}.home-pdf-insights .home-pdf-section-head__copy {
  max-width: none;
}.home-pdf-insights .home-pdf-section-head h2 {
  margin: 0;
  color: #1f1418;
  font-family: var(--font-heading);
  font-size: clamp(3.1rem, 4.8vw, 4.95rem);
  line-height: 1.02;
  letter-spacing: -0.046em;
}.home-pdf-insights .home-pdf-section-link {
  margin-top: clamp(0.45rem, 1vw, 0.8rem);
  color: #6d6d6d;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.28em;
  text-decoration-thickness: 2px;
}.home-pdf-insights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 2.4vw, 2.2rem);
  align-items: start;
}.home-pdf-insights .card,
.home-pdf-insights .editorial-card--home {
  display: grid;
  align-content: start;
  gap: clamp(1rem, 1.7vw, 1.35rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}.home-pdf-insights .card:hover {
  transform: none;
  box-shadow: none;
}.home-pdf-insights .card-img {
  min-height: clamp(11.5rem, 14vw, 14rem);
  padding-top: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(196, 30, 58, 0.12);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(255, 252, 250, 0.98), rgba(249, 242, 239, 0.98));
  box-shadow: 0 14px 30px rgba(92, 48, 55, 0.04);
}.home-pdf-insights .card-img img {
  transition: none;
}.home-pdf-insights .card:hover .card-img img {
  transform: none;
}.home-pdf-insights .card-body,
.home-pdf-insights .editorial-card--home .card-body {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  padding: 0;
}.home-pdf-insights .card-tags--stacked {
  gap: 0.75rem;
  margin: 0;
}.home-pdf-insights .card-tag {
  min-height: 3.15rem;
  padding: 0.35rem 1.25rem;
  border: 1.5px solid rgba(196, 30, 58, 0.18);
  border-radius: 1.05rem;
  background: rgba(196, 30, 58, 0.06);
  color: var(--color-primary);
  font-size: clamp(1rem, 1.02vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0;
}.home-pdf-insights .card-head {
  margin: 0;
  justify-content: flex-start;
}.home-pdf-insights .card-location {
  min-height: 3.15rem;
  padding: 0.35rem 1.25rem;
  border: 1.5px solid rgba(196, 30, 58, 0.18);
  border-radius: 1.05rem;
  background: rgba(196, 30, 58, 0.06);
  color: var(--color-primary);
  font-size: clamp(1rem, 1.02vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0;
}.home-pdf-insights .editorial-card--home h3 {
  margin: 0;
  color: #261a1e;
  font-size: clamp(1.72rem, 2vw, 2.18rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}.home-pdf-insights .editorial-card--home h3 a {
  color: inherit;
}.home-pdf-insights .editorial-card--home h3 a:hover {
  color: var(--color-primary);
}.home-pdf-insights .editorial-card--home .card-summary {
  margin: 0;
  color: #6b5f62;
  font-size: clamp(1.05rem, 1.12vw, 1.18rem);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}.home-pdf-insights .card-date,
.home-pdf-insights .card-link {
  display: none;
}.home-pdf-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}.home-pdf-section-head__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem;
  color: var(--color-gray);
  font-size: 0.95rem;
}.home-pdf-stats__note {
  margin-top: clamp(0.75rem, 1.5vw, 1.1rem);
  padding: clamp(1rem, 2vw, 1.4rem);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: none;
}.home-pdf-activities {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}.home-pdf-activities-groups {
  display: grid;
  gap: clamp(2.8rem, 5vw, 4.4rem);
  margin-top: 1.6rem;
}.home-pdf-activities-group {
  display: grid;
  gap: 1rem;
}.home-pdf-activities-group__head {
  display: grid;
  gap: 0.5rem;
}.home-pdf-activities-group__heading {
  margin: 0;
  color: #000;
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 3.5vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}.home-pdf-activities__head {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}.homepage-activities-shell {
  margin-top: 1.4rem;
}.homepage-activities-table .activity-row {
  border-bottom-color: rgba(15, 23, 42, 0.14);
}.homepage-activities-table .date-cell time, .homepage-activities-table .activity-row-title {
  color: #000;
}.homepage-activities-table .city-badge {
  min-width: 7rem;
  border-width: 2px;
  border-radius: 1rem;
  color: #000;
}.homepage-activities-table .city-badge--empty {
  color: #7b6770;
}.homepage-activities-table .activity-empty-cell {
  padding-block: clamp(1.9rem, 3vw, 2.3rem);
  text-align: center;
  vertical-align: middle;
}.homepage-activities-table .activity-row-title--empty {
  margin: 0;
  width: 100%;
  text-align: center;
  white-space: normal;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  font-weight: 400;
  color: #5a484c;
}.homepage-activities-table .activity-row--empty:hover {
  background: transparent;
}.home-cta--pdf {
  padding-block: clamp(2.5rem, 8vw, 4rem);
}.home-cta--pdf .home-cta__shell {
  grid-template-columns: minmax(0, 1fr) clamp(12.5rem, 14vw, 15.5rem);
  align-items: center;
}.page-hero--about-pdf {
  --marketing-hero-min-height: var(--marketing-hero-unified-min-height);
  position: relative;
  overflow: hidden;
  padding-block: var(--marketing-hero-padding-top) var(--marketing-hero-padding-bottom);
}.page-hero--about-pdf.page-hero--custom-background {
  background-color: #ebe5e1;
  background-image:
    var(--hero-custom-background-image),
    var(--hero-custom-background-image);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: cover, 114% 114%;
}.about-pdf-hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: var(--marketing-hero-min-height);
}.about-pdf-hero__copy {
  display: grid;
  gap: clamp(1rem, 1.8vw, 1.35rem);
  width: min(100%, 80rem);
  max-width: min(100%, 90%);
}.about-pdf-hero__copy .section-kicker {
  margin: 0;
  color: var(--color-primary) !important;
}.about-pdf-hero__copy .page-hero__title {
  margin: 0;
  color: var(--about-hero-text-color, #1A1A1A) !important;
  max-width: min(100%, 58rem);
  font-size: clamp(3.35rem, 5.05vw, 5.05rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.042em;
}.about-pdf-hero__body {
  display: grid;
  gap: clamp(1.1rem, 2vw, 1.8rem);
  max-width: min(100%, 64rem);
}.page-hero--about-pdf .about-pdf-hero__paragraph,
.page-hero--about-pdf .about-pdf-hero__body p {
  margin: 0;
  white-space: pre-wrap;
  color: var(--about-hero-text-color, #1A1A1A) !important;
  font-size: clamp(1.24rem, 1.72vw, 1.46rem);
  font-weight: 500;
  line-height: 1.74;
}.about-pdf-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.875rem, 2vw, 1.5rem);
}.about-pdf-stat-card {
  display: grid;
  gap: 0.375rem;
  min-height: clamp(9rem, 14vw, 11rem);
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid rgba(196, 30, 58, 0.1);
  border-radius: 1.55rem;
  background: linear-gradient(180deg, rgba(255, 252, 251, 0.98), rgba(248, 241, 239, 0.96));
  box-shadow: 0 14px 30px rgba(92, 48, 55, 0.08);
  justify-items: center;
  align-content: center;
  text-align: center;
}.about-pdf-stat-card strong {
  color: #1f1418;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1;
}.about-pdf-stat-card span {
  color: #40333a;
}.about-pdf-platform-summary {
  max-width: 44rem;
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}.about-pdf-platform-summary h2 {
  margin: 0;
}.section.about-pdf-stats {
  padding-bottom: clamp(1.5rem, 3vw, 2.4rem);
}.about-pdf-activities {
  margin-top: clamp(2rem, 4.4vw, 3.1rem);
  margin-bottom: clamp(1.9rem, 4vw, 3rem);
}.about-pdf-stats .home-pdf-activity-panel {
  padding: clamp(1.9rem, 3.4vw, 2.9rem) clamp(1.55rem, 3.6vw, 3.2rem);
}.about-pdf-work {
  margin-top: 0;
  padding-top: clamp(1.1rem, 2.4vw, 2rem);
}.about-pdf-work-head {
  display: grid;
  gap: 0.5rem;
  margin-bottom: clamp(0.9rem, 2vw, 1.35rem);
}.about-pdf-work-head__copy {
  display: grid;
  gap: 0.5rem;
  max-width: 44rem;
}.about-pdf-work-head__copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}.about-pdf-work-head__lead {
  margin: 0;
  color: #5b6470;
  font-size: 0.98rem;
  line-height: 1.75;
}.about-pdf-work__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.875rem, 2vw, 1.5rem);
}.about-pdf-work-card {
  display: grid;
  gap: 0.875rem;
  min-height: 16rem;
  padding: clamp(1.35rem, 2vw, 1.8rem);
  border: 1px solid rgba(196, 30, 58, 0.12);
  border-radius: 1.55rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,242,240,0.96));
  box-shadow: 0 18px 34px rgba(92, 48, 55, 0.08);
}.about-pdf-work-card__index {
  color: rgba(196, 30, 58, 0.56);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1;
}.about-pdf-work-card h3 {
  color: #261b1e;
}.about-pdf-work-card p {
  color: #5b6470;
}.about-pdf-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 8vw, 4rem);
  background: linear-gradient(135deg, var(--color-primary) 0%, #80142c 50%, var(--color-primary-dark) 100%);
}.about-pdf-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.12), transparent 26%);
  pointer-events: none;
}.about-pdf-cta__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}.about-pdf-cta__copy {
  max-width: 44rem;
}.about-pdf-cta__title {
  margin: 0;
  color: #fff;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}.about-pdf-cta__lead {
  max-width: 44rem;
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.72;
}.about-pdf-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: flex-end;
}.about-pdf-cta .btn--primary {
  background-color: #fff;
  color: var(--color-primary);
  border-color: #fff;
}.about-pdf-cta .btn--primary:hover {
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--color-primary-dark);
  border-color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 960px) {body.home .hero--pdf-home .hero-shell, .home-cta--pdf .home-cta__shell {
    grid-template-columns: 1fr;
  }.home-cta--pdf .home-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {.home-pdf-section-head, .home-cta--pdf .home-cta__shell {
    align-items: start;
  }
}.page-hero--projects-directory {
  --marketing-hero-min-height: var(--marketing-hero-unified-min-height);
  position: relative;
  overflow: hidden;
  padding-block: var(--marketing-hero-padding-top) var(--marketing-hero-padding-bottom);
}.page-hero--projects-directory .breadcrumb {
  margin: 0 0 1rem;
}.project-directory-hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: var(--marketing-hero-min-height);
}.project-directory-hero__copy {
  display: grid;
  gap: 0.85rem;
  max-width: 46rem;
}.project-directory-hero__copy .section-kicker, .project-directory-hero__copy .page-hero__title, .project-directory-hero__copy .page-hero__lead {
  margin: 0;
}.page-hero--projects-directory .project-directory-hero__copy .section-kicker {
  color: var(--color-primary) !important;
}.page-hero--projects-directory .project-directory-hero__copy .page-hero__title,
.page-hero--projects-directory .project-directory-hero__copy .page-hero__lead {
  color: var(--directory-hero-text-color, #1A1A1A) !important;
}.project-directory-hero--pdf .page-hero__title {
  font-size: clamp(3.25rem, 4.85vw, 4.9rem);
  line-height: 1.01;
  letter-spacing: -0.046em;
}.project-directory-hero--pdf .page-hero__lead {
  max-width: 44rem;
  color: #5b6470;
  font-size: clamp(1.24rem, 1.6vw, 1.42rem);
  font-weight: 500;
  line-height: 1.72;
}.project-directory-section {
  padding-top: 0;
}.project-directory-section .projects-grid--directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: clamp(2.25rem, 3vw, 3rem) clamp(2.5rem, 3.2vw, 3.5rem);
  margin-top: clamp(2rem, 3vw, 3rem);
  align-content: start;
}.project-directory-section .projects-grid--directory.projects-grid--directory-scroll {
  overflow: visible;
  scrollbar-gutter: stable;
}.project-directory-section .projects-grid--directory.projects-grid--directory-scroll::-webkit-scrollbar {
  width: 11px;
}.project-directory-section .projects-grid--directory.projects-grid--directory-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.56);
}.project-directory-section .projects-grid--directory.projects-grid--directory-scroll::-webkit-scrollbar-thumb {
  border: 2px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(121, 126, 133, 0.82);
}.project-directory-section .projects-grid--directory.projects-grid--directory-scroll.is-expanded {
  height: auto;
  max-height: none;
  overflow-y: visible;
  scroll-behavior: smooth;
}.project-directory-section .project-directory-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin: 1.4rem 0 1.6rem;
}.project-directory-summary__copy {
  display: grid;
  gap: 0.15rem;
}.project-directory-summary__count {
  margin: 0;
  color: #33485c;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  line-height: 1.15;
}.project-directory-summary__title {
  margin: 0;
  font-size: clamp(1.95rem, 3vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}.project-directory-summary__expand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(196, 30, 58, 0.16);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.94);
  color: #7f1f32;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  box-shadow: 0 10px 24px rgba(92, 48, 55, 0.08);
}.project-directory-summary__expand:hover {
  border-color: rgba(196, 30, 58, 0.28);
  color: #8f1f33;
}.project-directory-summary__expand-count {
  font-size: 1.05rem;
  line-height: 1.1;
}.project-directory-summary__expand-label {
  font-size: 0.95rem;
  line-height: 1.1;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}.project-directory-filter-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 7.5rem), max-content));
  gap: clamp(0.875rem, 2vw, 1.5rem);
  margin-top: 1rem;
}.project-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.625rem 1rem;
  color: var(--color-dark);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1.25rem;
}.project-filter-chip.is-active, .project-filter-chip:hover {
  border-color: var(--color-dark);
  background: var(--color-dark);
  color: #fff;
}.project-card--directory {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}.project-card--directory:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 30, 58, 0.24);
  box-shadow: 0 16px 26px rgba(15, 23, 42, 0.06);
}.project-card--directory .project-card__body {
  display: grid;
  gap: 0.45rem;
  flex: 1;
}.project-card--directory:not(.project-card--home-directory),
.project-card--directory-more,
.project-card--directory-collapse {
  position: relative;
  gap: clamp(0.72rem, 1vw, 0.95rem);
  min-height: clamp(11.8rem, 13.6vw, 13.4rem);
  padding: clamp(1.05rem, 1.35vw, 1.2rem) clamp(1.3rem, 1.7vw, 1.55rem) clamp(1.15rem, 1.55vw, 1.35rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}.project-card--directory:not(.project-card--home-directory):hover,
.project-card--directory-more:hover,
.project-card--directory-collapse:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}.project-card--directory:not(.project-card--home-directory) .project-card__body {
  width: 100%;
  grid-template-rows: auto auto minmax(1.25rem, 1fr);
  gap: clamp(0.38rem, 0.55vw, 0.56rem);
  align-content: flex-start;
  align-self: flex-start;
}.project-card--directory:not(.project-card--home-directory) .project-card__body::before {
  content: "";
  display: block;
}.project-card--directory:not(.project-card--home-directory) .project-card__media {
  width: clamp(8.7rem, 11.2vw, 10.4rem);
  height: clamp(6.5rem, 8vw, 7.6rem);
  min-height: clamp(6.5rem, 8vw, 7.6rem);
  padding: 0;
  margin-bottom: 0.1rem;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  align-self: flex-start;
}.project-card--directory:not(.project-card--home-directory) .project-card__media-image,
.project-card--directory:not(.project-card--home-directory) .project-card__media-placeholder {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}.project-card--directory:not(.project-card--home-directory) .project-card__eyebrow {
  margin: 0;
  width: 100%;
  max-width: none;
  color: #8b9096;
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  font-weight: 500;
  line-height: 1.22;
}.project-card--directory:not(.project-card--home-directory) .project-card__title {
  margin: 0;
  max-width: 100%;
  color: #72777d;
  font-size: clamp(2.2rem, 2.95vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}.project-card--directory:not(.project-card--home-directory) .project-card__title a {
  display: block;
  color: inherit;
}.project-card__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: 0;
}.project-card__overlay-link:focus-visible {
  outline: 2px solid rgba(127, 31, 50, 0.42);
  outline-offset: -2px;
}.project-card--directory-more {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding-left: clamp(1.3rem, 1.7vw, 1.55rem);
  appearance: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
}.project-card--directory-more::after {
  content: "";
  position: absolute;
  left: clamp(1.3rem, 1.7vw, 1.55rem);
  bottom: clamp(1.15rem, 1.55vw, 1.35rem);
  width: 86%;
  border-bottom: 2px solid rgba(104, 112, 122, 0.62);
}.project-card--directory-collapse::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: clamp(1.15rem, 1.55vw, 1.35rem);
  width: 86%;
  transform: translateX(-50%);
  border-bottom: 2px solid rgba(104, 112, 122, 0.62);
}.project-card--directory-more__text {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 100%;
  color: #9aa0a6;
  font-family: var(--font-heading);
  font-size: clamp(2.13rem, 2.85vw, 2.85rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-align: left;
}.project-card--directory-collapse {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
  width: 100%;
  appearance: none;
  color: inherit;
  text-align: center;
  cursor: pointer;
}.project-card--directory-collapse__text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: min(100%, 18ch);
  color: #7d8791;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.55vw, 1.45rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-align: center;
}.project-card--directory-collapse:hover {
  transform: none;
  border-color: rgba(126, 128, 134, 0.38);
  background: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}.project-card--directory-collapse[hidden] {
  display: none !important;
}.project-card--directory[hidden] {
  display: none !important;
}.project-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8.5rem;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}.project-card__media--directory {
  align-items: flex-start;
  justify-content: flex-start;
}.project-card__media--home {
  width: 100%;
  min-height: clamp(13.5rem, 18vw, 15rem);
  height: clamp(13.5rem, 18vw, 15rem);
  padding: 0;
  margin-inline: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}.project-card__media-image,
.project-card__media-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}.project-card__media--home .project-card__media-image,
.project-card__media--home .project-card__media-placeholder {
  width: auto;
  max-width: min(82%, 15rem);
  height: auto;
  max-height: 100%;
  margin-inline: auto;
  object-position: center center;
}.project-card--directory .project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}.project-card--directory .project-card__pill {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0;
}.project-card--directory .project-card__pill + .project-card__pill::before {
  content: "·";
  margin-right: 0.35rem;
  color: #9ba3af;
}.project-card--directory .project-card__title {
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.12;
}.project-card--home-directory .project-card__location {
  margin: 0;
  min-height: 1.5em;
  color: #5b6470;
  font-size: 0.94rem;
  line-height: 1.5;
}.project-card--home-directory .project-card__title {
  font-size: clamp(1.18rem, 1.5vw, 1.42rem);
  min-height: calc(1.12em * 2);
}.project-card--home-directory .project-card__body {
  gap: 0.62rem;
  grid-template-rows: minmax(1.5em, auto) minmax(calc(1.12em * 2), auto) minmax(calc(1.68em * 3), auto) auto;
  align-content: start;
  padding-top: 0.15rem;
}.project-card--home-directory .project-card__title a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}.project-card__media--home .project-card__media-placeholder {
  width: min(72%, 12rem);
  height: 100%;
}.project-card--directory .project-card__excerpt {
  margin: 0;
  color: #4b5764;
  display: -webkit-box;
  min-height: calc(1.68em * 3);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}.project-card--directory .card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  width: fit-content;
  color: var(--color-primary);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 calc(100% - 0.08em);
  background-repeat: no-repeat;
  background-size: 100% 1.8px;
  padding-bottom: 0.08em;
}.project-card--home-directory .card-link {
  font-size: clamp(1.08rem, 1.15vw, 1.2rem);
  font-weight: 700;
}.project-card--directory .card-link:hover {
  color: #8f1f33;
}.project-directory-cta {
  padding-top: clamp(2rem, 4vw, 2.6rem);
  padding-bottom: 0;
}.project-directory-cta .container {
  max-width: none;
  padding-inline: 0;
}.project-directory-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(12.25rem, 13vw, 14.5rem);
  align-items: center;
  gap: clamp(1.5rem, 2.4vw, 2.5rem);
  min-height: clamp(16.5rem, 20.25vw, 18.9rem);
  padding: clamp(3.15rem, 4.5vw, 4.05rem) clamp(2.25rem, 3.5vw, 4rem);
  border-radius: 0;
  background:
    radial-gradient(circle at 12% 86%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 42%),
    linear-gradient(90deg, #cb2a4a 0%, #a10f2e 52%, #b82f4d 100%);
  box-shadow: none;
}.project-directory-cta__copy {
  width: 100%;
  max-width: none;
  display: grid;
  gap: 0;
}.project-directory-cta__title {
  width: min(100%, 52rem);
  max-width: 52rem;
  margin: 0;
  color: #fff;
  font-size: clamp(2.15rem, 2.85vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  display: grid;
  gap: 0.4rem;
}.project-directory-cta__title-line {
  display: block;
}.project-directory-cta__lead {
  max-width: 38rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 0.92vw, 1.08rem);
  line-height: 1.42;
}.project-directory-cta__eyebrow {
  display: none;
}.project-directory-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  min-height: clamp(3.8rem, 4.2vw, 4.35rem);
  padding-inline: 1.3rem;
  border-color: transparent;
  border-radius: 1.25rem;
  background: #fff;
  color: #c61d3d;
  box-shadow: none;
  font-size: clamp(1rem, 0.96vw, 1.08rem);
  font-weight: 700;
  text-decoration: none;
}.project-directory-cta__button:hover {
  border-color: transparent;
  background: #fff4f6;
  color: #b61a38;
}.filter-toolbar--project-directory {
  background: rgba(255, 255, 255, 0.96);
}

.page-hero--projects-wireframe-preview {
  padding-bottom: clamp(2rem, 3vw, 2.7rem);
}.page-hero--projects-wireframe-preview .project-directory-hero {
  align-items: end;
  min-height: clamp(21rem, 34vw, 31rem);
}.page-hero--projects-wireframe-preview .project-directory-hero__copy {
  max-width: min(100%, 31rem);
  gap: 1rem;
  padding-block: clamp(5rem, 8.5vw, 7rem) clamp(3.8rem, 6vw, 5.2rem);
}.page-hero--projects-wireframe-preview .project-directory-hero__copy .section-kicker {
  display: none;
}.page-hero--projects-wireframe-preview .project-directory-hero--pdf .page-hero__title {
  font-size: clamp(2.9rem, 4.6vw, 4.35rem);
}.page-hero--projects-wireframe-preview .project-directory-hero--pdf .page-hero__lead {
  max-width: 31rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.12rem, 1.3vw, 1.3rem);
  line-height: 1.55;
}.project-directory-section--wireframe-preview {
  padding-top: clamp(2rem, 3vw, 2.6rem);
}.project-directory-section--wireframe-preview .filter-toolbar--project-directory {
  padding: 1rem;
  margin-bottom: 0;
  border: 1px solid rgba(196, 30, 58, 0.08);
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 36px rgba(92, 48, 55, 0.06);
}.project-directory-section--wireframe-preview .filter-search {
  flex: 1 1 100%;
}.project-directory-section--wireframe-preview .filter-search > svg {
  left: 1.35rem;
  color: #949aa1;
}.project-directory-section--wireframe-preview .filter-search input {
  min-height: clamp(4.55rem, 5vw, 5rem);
  padding-left: 3.2rem;
  padding-right: 5rem;
  border: 1.5px solid rgba(38, 44, 52, 0.18);
  border-radius: 1.4rem;
  font-size: clamp(1.1rem, 1.2vw, 1.24rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}.project-directory-section--wireframe-preview .filter-icon-button {
  right: 0.8rem;
  width: 3.15rem;
  height: 3.15rem;
  border: 1.5px solid rgba(196, 30, 58, 0.18);
  border-radius: 1rem;
  background: #fff;
  color: var(--color-primary);
}.project-directory-section--wireframe-preview .filter-icon-button:hover {
  border-color: rgba(196, 30, 58, 0.28);
  background: #fff5f7;
  color: #b61a38;
  transform: translateY(-50%);
}.project-directory-section--wireframe-preview .project-directory-filter-chips {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 8rem), max-content));
  gap: 0.9rem 1rem;
  margin-top: 1.25rem;
}.project-directory-section--wireframe-preview .project-filter-chip {
  min-height: 3.55rem;
  padding: 0.75rem 1.45rem;
  border-width: 1.5px;
  border-color: rgba(38, 44, 52, 0.28);
  border-radius: 999px;
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  box-shadow: none;
}.project-directory-summary--wireframe-preview {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin: 1.55rem 0 1.4rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(98, 104, 112, 0.34);
  border-bottom: 1px solid rgba(98, 104, 112, 0.34);
}.project-directory-summary--wireframe-preview .project-directory-summary__count {
  color: #8d949c;
  font-size: clamp(1.14rem, 1.28vw, 1.28rem);
  font-weight: 600;
  line-height: 1.2;
}.project-directory-section--wireframe-preview .projects-grid--directory-wireframe-preview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.95rem, 1.25vw, 1.25rem);
  margin-top: 0;
  align-items: start;
}.project-directory-section--wireframe-preview .project-card--directory-wireframe-preview {
  gap: 0.55rem;
  min-height: auto;
  align-self: start;
  padding: 0.45rem 0.35rem 0.25rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}.project-directory-section--wireframe-preview .project-card--directory-wireframe-preview:hover {
  transform: none;
  border: 0;
  background: transparent;
  box-shadow: none;
}.project-directory-section--wireframe-preview .project-card--directory-wireframe-preview .project-card__media {
  width: clamp(11.3rem, 12vw, 13rem);
  height: clamp(8.1rem, 8.7vw, 9.3rem);
  min-height: clamp(8.1rem, 8.7vw, 9.3rem);
  margin-bottom: 0;
}.project-directory-section--wireframe-preview .project-card--directory-wireframe-preview .project-card__body {
  gap: 0.35rem;
  grid-template-rows: auto auto;
  align-self: stretch;
  align-content: start;
}.project-directory-section--wireframe-preview .project-card--directory-wireframe-preview .project-card__body::before {
  content: none;
  display: none;
}.project-directory-section--wireframe-preview .project-card--directory-wireframe-preview .project-card__eyebrow {
  color: #9aa0a6;
  font-size: clamp(0.72rem, 0.82vw, 0.8rem);
  line-height: 1.2;
  margin: 0 0 0.7rem;
}.project-directory-section--wireframe-preview .project-card--directory-wireframe-preview .project-card__eyebrow-link {
  display: inline-flex;
  width: fit-content;
  position: relative;
  z-index: 4;
  color: #7f8790;
  font-size: clamp(0.94rem, 1vw, 1.06rem);
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
}.project-directory-section--wireframe-preview .project-card--directory-wireframe-preview .project-card__eyebrow-link:hover {
  color: #5f6770;
}.project-directory-section--wireframe-preview .project-card--directory-wireframe-preview .project-card__title {
  color: #656b72;
  font-size: clamp(1.6rem, 1.95vw, 2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 92%;
}.project-directory-section--wireframe-preview .project-card--directory-wireframe-preview .project-card__title a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}.project-directory-preview-more-shell {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 0.05rem;
}.project-directory-preview-more-shell[hidden],
.project-directory-preview-collapse-button[hidden] {
  display: none !important;
}.project-directory-preview-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18rem;
  padding: 0.95rem 1.5rem;
  border: 1.5px solid rgba(104, 112, 122, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #8f969e;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: none;
}.project-directory-preview-more-button:hover {
  border-color: rgba(104, 112, 122, 0.9);
  background: #fff;
}.project-directory-preview-more-button span {
  display: inline-flex;
  justify-content: center;
  color: inherit;
  font-size: clamp(1.18rem, 1.3vw, 1.3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-align: center;
}.project-directory-preview-collapse-button {
  grid-column: 1 / -1;
  justify-self: center;
  min-height: auto;
  margin: 0 auto;
  padding: 0.8rem 1.4rem;
  border: 1px solid rgba(104, 112, 122, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #7a828a;
  font: inherit;
  font-size: 1rem;
  cursor: pointer;
}.project-directory-cta--wireframe-preview {
  padding-top: clamp(2.4rem, 4vw, 3rem);
}

@media (max-width: 900px) {.project-directory-hero--pdf .project-directory-hero__copy {
    max-width: min(100%, 48rem);
  }.home-pdf-insights__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }.home-pdf-insights .home-pdf-section-head h2 {
    font-size: clamp(2.85rem, 8vw, 4.15rem);
  }.home-pdf-insights .editorial-card--home h3 {
    font-size: clamp(1.5rem, 2.8vw, 1.95rem);
  }.project-directory-summary__expand {
    align-self: flex-start;
  }
}

@media (max-width: 820px) {.filter-toolbar--project-directory {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {.project-directory-hero--pdf .project-directory-hero__copy {
    max-width: 100%;
  }.about-pdf-hero__copy, .about-pdf-hero__copy .page-hero__title, .about-pdf-hero__body {
    width: 100%;
    max-width: 100%;
  }.page-hero--about-pdf .about-pdf-hero__copy {
    gap: 0.85rem;
  }.page-hero--about-pdf .about-pdf-hero__copy .section-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }.page-hero--about-pdf .about-pdf-hero__copy .page-hero__title {
    font-size: clamp(2.35rem, 8.5vw, 2.9rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }.page-hero--about-pdf .about-pdf-hero__paragraph,
  .page-hero--about-pdf .about-pdf-hero__body p {
    font-size: 1rem;
    line-height: 1.68;
    font-weight: 450;
  }.home-pdf-insights__grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }.home-pdf-insights .home-pdf-section-head h2 {
    font-size: clamp(2.6rem, 14vw, 3.5rem);
    line-height: 1.01;
  }.home-pdf-insights .home-pdf-section-link {
    font-size: 1rem;
  }.home-pdf-insights .card-img {
    min-height: clamp(11rem, 58vw, 13rem);
  }.home-pdf-insights .card-tag,
  .home-pdf-insights .card-location {
    min-height: 2.7rem;
    padding: 0.28rem 1rem;
    font-size: 0.98rem;
  }.home-pdf-insights .editorial-card--home h3 {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }.home-pdf-insights .editorial-card--home .card-summary {
    font-size: 1rem;
    line-height: 1.62;
  }.home-pdf-directions__grid, .home-pdf-stats__grid, .home-pdf-projects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: start;
  }.home-pdf-direction-card {
    grid-template-rows: minmax(2.25rem, auto) clamp(4.25rem, 18vw, 5.6rem) minmax(4rem, 1fr);
    gap: 0.5rem;
    min-height: 100%;
    padding: 0.75rem 0.65rem 0.85rem;
    border-radius: 1rem;
  }.home-pdf-direction-card__title-block {
    min-height: 2.25rem;
  }.home-pdf-direction-card__title {
    font-size: clamp(0.98rem, 3.7vw, 1.14rem);
    line-height: 1.12;
  }.home-pdf-direction-card__figure {
    width: min(5.5rem, 80%);
    height: clamp(4.25rem, 18vw, 5.6rem);
    padding: 0;
  }.home-pdf-direction-card__copy {
    min-height: 4rem;
  }.home-pdf-direction-card__copy p {
    max-width: none;
    font-size: 0.84rem;
    line-height: 1.38;
  }.home-pdf-stat-card {
    min-height: clamp(5.8rem, 22vw, 7rem);
    gap: 0.2rem;
    padding: 0.72rem 0.55rem;
    border-radius: 0.92rem;
  }.home-pdf-stat-card strong {
    font-size: clamp(1.12rem, 5.3vw, 1.45rem);
    line-height: 1;
  }.home-pdf-stat-card span {
    font-size: 0.78rem;
    line-height: 1.24;
  }.project-card__media--home {
    min-height: clamp(5.5rem, 26vw, 7rem);
    height: clamp(5.5rem, 26vw, 7rem);
  }.home-pdf-projects .project-card--home-directory {
    min-height: 100%;
    gap: 0.58rem;
    padding: 0.72rem 0.62rem 0.8rem;
    border-radius: 0.95rem;
  }.project-card--home-directory .project-card__location {
    font-size: 0.75rem;
    line-height: 1.3;
    min-height: 1.3em;
  }.project-card--home-directory .project-card__title {
    min-height: auto;
    font-size: clamp(0.92rem, 3.75vw, 1.08rem);
    line-height: 1.18;
  }.project-card--home-directory .project-card__body {
    grid-template-rows: auto auto minmax(calc(1.38em * 3), auto) auto;
    gap: 0.34rem;
    padding-top: 0;
  }.project-card--directory .project-card__excerpt {
    min-height: calc(1.38em * 3);
    font-size: 0.8rem;
    line-height: 1.38;
  }.project-card--home-directory .card-link {
    font-size: 0.88rem;
    line-height: 1.18;
  }.home-pdf-activity-panel {
    gap: 0.45rem;
    padding: 0.9rem 0.8rem 0.95rem;
    border-radius: 1rem;
  }.home-pdf-activity-panel h3 {
    font-size: clamp(0.98rem, 4vw, 1.12rem);
    line-height: 1.22;
    letter-spacing: -0.01em;
  }.home-pdf-activity-panel p {
    max-width: none;
    font-size: 0.88rem;
    line-height: 1.48;
    font-weight: 400;
    color: rgba(255, 246, 237, 0.84);
  }.project-directory-section .projects-grid--directory {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-top: 1.6rem;
    border-left: 0;
  }.project-directory-section .projects-grid--directory.projects-grid--directory-scroll {
    overflow: visible;
  }.project-card--directory:not(.project-card--home-directory),
  .project-card--directory-more,
  .project-card--directory-collapse {
    min-height: auto;
    gap: 0.95rem;
    padding: 1.2rem 0 1.25rem;
    border-right: 0;
  }.project-card--directory:not(.project-card--home-directory) .project-card__body {
    width: 100%;
    grid-template-rows: auto auto minmax(1rem, 1fr);
  }.project-card--directory:not(.project-card--home-directory) .project-card__title {
    max-width: 100%;
    font-size: clamp(1.95rem, 7vw, 2.45rem);
  }.project-card--directory:not(.project-card--home-directory) .project-card__eyebrow {
    max-width: 100%;
    font-size: clamp(0.92rem, 3.7vw, 1rem);
  }.project-card--directory:not(.project-card--home-directory) .project-card__media {
    width: min(8.85rem, 52%);
    height: clamp(5.6rem, 24vw, 6.4rem);
    min-height: clamp(5.6rem, 24vw, 6.4rem);
  }.project-card--directory-more {
    justify-content: center;
    align-items: flex-start;
    padding: 1.35rem 0.4rem;
  }.project-card--directory-collapse {
    justify-content: center;
    padding-block: 1.35rem;
  }.project-card--directory-more__text {
    font-size: clamp(2.04rem, 8.4vw, 2.7rem);
  }.project-card--directory-collapse__text {
    font-size: clamp(1.14rem, 4.6vw, 1.45rem);
  }.project-card__media--home {
    min-height: clamp(11rem, 56vw, 13rem);
    height: clamp(11rem, 56vw, 13rem);
  }.home-pdf-projects .project-card--home-directory {
    min-height: auto;
    gap: 0.85rem;
    padding: 1rem 1rem 1.15rem;
  }.project-card--home-directory .project-card__title {
    min-height: auto;
  }.project-card--home-directory .project-card__body {
    grid-template-rows: auto auto minmax(calc(1.68em * 3), auto) auto;
    gap: 0.55rem;
    padding-top: 0;
  }.project-card--home-directory .card-link {
    font-size: 1.12rem;
  }.project-directory-summary, .home-pdf-section-head {
    align-items: start;
    flex-direction: column;
  }.project-directory-cta {
    padding-top: 1.6rem;
    padding-bottom: 0;
  }.project-directory-cta .container {
    padding-inline: 0;
  }.project-directory-cta__inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    min-height: auto;
    padding: 2.55rem 1.2rem 2.7rem;
    border-radius: 0;
  }.project-directory-cta__title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.95rem, 6.8vw, 2.55rem);
    gap: 0.3rem;
  }.project-directory-cta__button {
    justify-self: start;
    width: auto;
    min-width: 11.25rem;
    min-height: 3.6rem;
    font-size: 0.98rem;
  }.project-directory-summary__expand {
    width: fit-content;
  }.about-pdf-activities {
    margin-top: 1.55rem;
    margin-bottom: 1.65rem;
  }.about-pdf-stats .home-pdf-activity-panel {
    padding: 1.45rem 1.2rem 1.6rem;
  }.about-pdf-work {
    padding-top: 0.9rem;
  }.about-pdf-work__grid {
    grid-template-columns: 1fr;
  }.project-directory-filter-chips {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 6.5rem), 1fr));
  }
}

@media (max-width: 1100px) {
  .project-directory-section--wireframe-preview .projects-grid--directory-wireframe-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .project-directory-preview-more-button span {
    font-size: clamp(1.08rem, 2.2vw, 1.18rem);
  }
}

@media (max-width: 720px) {
  .page-hero--projects-wireframe-preview .project-directory-hero {
    min-height: clamp(18rem, 62vw, 22rem);
  }

  .page-hero--projects-wireframe-preview .project-directory-hero__copy {
    max-width: 100%;
    padding-block: clamp(4.2rem, 16vw, 5.6rem) clamp(2.2rem, 8vw, 3rem);
  }

  .page-hero--projects-wireframe-preview .project-directory-hero--pdf .page-hero__lead {
    max-width: 100%;
    font-size: 1rem;
  }

  .project-directory-section--wireframe-preview .projects-grid--directory-wireframe-preview {
    gap: 1.9rem;
    margin-top: 0;
  }

  .project-directory-section--wireframe-preview .project-card--directory-wireframe-preview {
    gap: 0.8rem;
    padding-top: 0;
  }

  .project-directory-section--wireframe-preview .project-card--directory-wireframe-preview .project-card__media {
    width: min(9.2rem, 56%);
    height: clamp(6rem, 28vw, 7rem);
    min-height: clamp(6rem, 28vw, 7rem);
  }

  .project-directory-section--wireframe-preview .project-card--directory-wireframe-preview .project-card__title {
    font-size: clamp(1.45rem, 5.6vw, 1.7rem);
  }

  .project-directory-section--wireframe-preview .project-card--directory-wireframe-preview .project-card__eyebrow-link {
    font-size: clamp(0.88rem, 3.4vw, 0.96rem);
  }

  .project-directory-section--wireframe-preview .project-directory-summary--wireframe-preview {
    margin: 1.5rem 0 1.15rem;
    padding: 1rem 0;
  }

  .project-directory-section--wireframe-preview .project-directory-summary--wireframe-preview .project-directory-summary__count {
    font-size: 1.05rem;
  }

  .project-directory-preview-more-shell {
    margin-top: 0.05rem;
  }

  .project-directory-preview-more-button {
    width: 100%;
    max-width: 19rem;
    min-width: 0;
    padding-inline: 1.2rem;
  }

  .project-directory-preview-more-button span {
    font-size: clamp(1rem, 4.8vw, 1.14rem);
  }
}

@media (max-width: 720px) {
  .home-pdf-activity-panel[data-home-activity-booking-panel] {
    gap: 0.7rem;
    padding: 0.95rem 0.85rem 1rem;
  }

  .home-pdf-activity-panel[data-home-activity-booking-panel] .home-pdf-activity-panel__copy {
    width: 100%;
  }

  .home-pdf-activity-panel[data-home-activity-booking-panel] .home-pdf-activity-panel__copy p {
    max-width: none;
  }

  .home-pdf-activity-panel[data-home-activity-booking-panel] h3 {
    font-size: clamp(1rem, 4.2vw, 1.14rem);
    line-height: 1.22;
    letter-spacing: -0.01em;
  }

  .home-pdf-activity-panel[data-home-activity-booking-panel] p {
    font-size: 0.88rem;
    line-height: 1.5;
    font-weight: 400;
  }

  .home-pdf-activity-booking-entry {
    position: static;
    inset: auto;
    width: 100%;
    min-height: 0;
    display: grid;
    justify-content: flex-start;
    pointer-events: auto;
  }

  .home-pdf-activity-booking-toggle,
  .home-pdf-activity-booking-qr {
    position: relative;
    top: auto;
    left: auto;
    inset: auto;
    transform: none;
  }

  .home-pdf-activity-booking-toggle {
    min-width: 8.5rem;
    min-height: 3.35rem;
    padding-inline: 1.4rem;
    border-radius: 999px;
    font-size: 1rem;
  }

  .home-pdf-activity-booking-qr {
    width: min(100%, 8.4rem);
    margin-top: 0.2rem;
  }

  .home-pdf-activity-panel.is-booking-open .home-pdf-activity-booking-qr {
    transform: none;
  }

  #homepage-activities .home-pdf-activities-group {
    gap: 0.8rem;
  }

  #homepage-activities .home-pdf-activities-group__head {
    gap: 0.25rem;
  }

  #homepage-activities .home-pdf-activities-group__heading {
    font-size: clamp(1.5rem, 7.2vw, 1.9rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  #homepage-activities .homepage-activities-shell {
    margin-top: 0.8rem;
  }

  #homepage-activities .homepage-activities-table {
    display: block;
    min-width: 0;
    table-layout: auto;
  }

  #homepage-activities .homepage-activities-table colgroup {
    display: none;
  }

  #homepage-activities .homepage-activities-table tbody {
    display: block;
  }

  #homepage-activities .homepage-activities-table .activity-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.55rem 0.7rem;
    width: 100%;
  }

  #homepage-activities .homepage-activities-table td {
    display: block;
    width: 100%;
    padding-block: 0.8rem;
  }

  #homepage-activities .homepage-activities-table .date-cell,
  #homepage-activities .homepage-activities-table .table-city {
    width: auto;
    padding-bottom: 0;
  }

  #homepage-activities .homepage-activities-table .date-cell {
    padding-right: 0;
  }

  #homepage-activities .homepage-activities-table .table-city {
    padding-inline: 0;
    justify-self: start;
    text-align: left;
  }

  #homepage-activities .homepage-activities-table .table-city > .city-badge,
  #homepage-activities .homepage-activities-table .table-city > .table-city-empty {
    margin-inline: 0;
  }

  #homepage-activities .homepage-activities-table .title-cell {
    grid-column: 1 / -1;
    width: auto;
    min-width: 0;
    padding-top: 0;
    padding-right: 0;
  }

  #homepage-activities .homepage-activities-table .date-cell time {
    display: block;
    font-size: 0.88rem;
    line-height: 1.3;
    font-weight: 600;
  }

  #homepage-activities .homepage-activities-table .city-badge,
  #homepage-activities .homepage-activities-table .table-city-empty {
    min-width: 4.8rem;
    height: 2.25rem;
    padding-inline: 0.72rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
  }

  #homepage-activities .homepage-activities-table .activity-row-title {
    font-size: clamp(1.08rem, 5.1vw, 1.28rem);
    line-height: 1.42;
    font-weight: 600;
  }

  #homepage-activities .homepage-activities-table .activity-row-title--empty {
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    font-weight: 400;
    color: #5f5054;
  }

  #homepage-activities .homepage-activities-table .activity-row-title a {
    display: inline;
    overflow-wrap: anywhere;
  }

  .home-pdf-insights .card-img {
    width: 100%;
    min-height: clamp(10rem, 54vw, 12rem);
  }

  .home-pdf-insights .editorial-card--home h3 {
    font-size: 1.15rem;
    line-height: 1.45;
    letter-spacing: -0.02em;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
  }

  .home-pdf-insights .editorial-card--home h3 a {
    display: block;
  }

  .home-pdf-insights .editorial-card--home .card-summary {
    font-size: 0.92rem;
    line-height: 1.6;
  }
}

@media (max-width: 767px) {
  .nav-toggle {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #fff;
    border: 1.5px solid rgba(196, 30, 58, 0.16);
    box-shadow: none;
  }

  .nav-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--color-primary);
  }

  .mobile-nav {
    display: block;
    top: 72px;
    padding: 0.75rem 0.9rem 1.4rem;
    background: linear-gradient(180deg, rgba(250, 247, 244, 0.94), rgba(246, 240, 236, 0.98));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 220ms ease, visibility 180ms ease;
  }

  .mobile-nav.active {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav__panel {
    padding: 1rem 1rem 1.35rem;
    border: 1px solid rgba(31, 20, 24, 0.08);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 22px 40px rgba(31, 20, 24, 0.08);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 200ms ease, transform 240ms ease;
  }

  .mobile-nav.active .mobile-nav__panel {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav .nav-menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    counter-reset: mobile-nav-item;
  }

  .mobile-nav .nav-menu > li {
    margin: 0;
    padding: 0;
  }

  .mobile-nav .nav-menu > li:not(.menu-item--cta) {
    position: relative;
    counter-increment: mobile-nav-item;
    border-bottom: 1px solid rgba(31, 20, 24, 0.08);
  }

  .mobile-nav .nav-menu > li:not(.menu-item--cta)::after {
    content: counter(mobile-nav-item, decimal-leading-zero);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #a99298;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    pointer-events: none;
  }

  .mobile-nav .nav-menu > li > a {
    border-bottom: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .mobile-nav .nav-menu > li > a::after {
    display: none;
  }

  .mobile-nav .nav-menu > li:not(.menu-item--cta) > a {
    padding: 1rem 2.55rem 1rem 0;
    font-size: clamp(2rem, 8.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: #23181b;
  }

  .mobile-nav .nav-menu > li:not(.menu-item--cta) > a:hover,
  .mobile-nav .nav-menu > li:not(.menu-item--cta).current-menu-item > a {
    color: var(--color-primary);
    background: transparent;
  }

  .mobile-nav .nav-menu > .menu-item--cta {
    margin-top: 1rem;
    justify-self: start;
  }

  .mobile-nav .nav-menu > .menu-item--cta > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 3.45rem;
    padding: 0.85rem 1.35rem;
    border-radius: 0.9rem;
    font-size: 1.35rem;
    font-weight: 800;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .home-pdf-activity-booking-entry {
    gap: 0.75rem;
  }

  .home-pdf-activity-panel.is-booking-open:not(.is-booking-animating) .home-pdf-activity-booking-toggle {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .home-pdf-activity-booking-toggle {
    transition: filter 180ms ease, background-color 180ms ease, color 180ms ease;
  }

  .home-pdf-activity-booking-qr {
    width: min(100%, 8.8rem);
    margin-top: 0;
    padding: 0.45rem;
    border-radius: 1.15rem;
    opacity: 1;
    visibility: visible;
    filter: none;
    transform: none;
    transform-origin: top left;
    box-shadow: 0 14px 26px rgba(62, 12, 24, 0.18);
  }

  .home-pdf-activity-panel.is-booking-open .home-pdf-activity-booking-qr {
    opacity: 1;
    visibility: visible;
    filter: none;
    transform: none;
  }
}
