/* Bangkok STI Center — Ultra Modern Metropolitan Design System */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Color Tokens */
  --bg: #f8fafc;
  --bg-card: #ffffff;
  --bg-soft: #f1f5f9;
  --bg-subtle: #f8fafc;
  
  --navy-dark: #0a1128;
  --navy-slate: #0b152d;
  --navy-surface: #132247;
  --navy-border: rgba(255, 255, 255, 0.12);
  
  --accent: #0077b6;
  --accent-cyan: #00b4d8;
  --accent-teal: #06b6d4;
  --accent-glow: rgba(0, 180, 216, 0.25);
  --accent-light: #e0f2fe;
  
  --hot-coral: #ef4444;
  --hot-amber: #f59e0b;
  --hot-soft: #fef2f2;
  
  --transit-bts: #00a859;
  --transit-mrt: #185a9d;
  --transit-gold: #c59b27;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-inverse: #ffffff;
  
  --border: #e2e8f0;
  --border-focus: #00b4d8;
  
  /* Typography */
  --font: 'Noto Sans Thai', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Noto Sans Thai', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Radii & Shadows — PROMPT: 8 / 14 / 20 / 9999 */
  --radius-xs: 8px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 20px -4px rgba(15, 23, 42, 0.08), 0 3px 8px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 16px 36px -6px rgba(15, 23, 42, 0.12), 0 6px 12px -2px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 24px 48px -10px rgba(7, 13, 30, 0.2);
  --shadow-glow: 0 0 25px rgba(0, 180, 216, 0.35);
  
  --max-w: 1220px;
  --header-height: 76px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  padding-top: var(--header-height);
  background: var(--bg);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--accent-cyan);
}

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

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #00b4d8 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.badge-cyan {
  background: rgba(0, 180, 216, 0.12);
  color: #0284c7;
  border: 1px solid rgba(0, 180, 216, 0.28);
}

.badge-dark-cyan {
  background: rgba(0, 180, 216, 0.18);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.badge-hot {
  background: rgba(239, 68, 68, 0.1);
  color: var(--hot-coral);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.badge-bts {
  background: rgba(0, 168, 89, 0.12);
  color: var(--transit-bts);
  border: 1px solid rgba(0, 168, 89, 0.3);
}

.badge-mrt {
  background: rgba(24, 90, 157, 0.12);
  color: var(--transit-mrt);
  border: 1px solid rgba(24, 90, 157, 0.3);
}

/* Header & Sticky Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(7, 13, 30, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  text-decoration: none;
}

.brand-logo:hover {
  transform: scale(1.02);
}

.brand-title {
  font-size: 1.18rem;
  line-height: 1.1;
  color: #ffffff;
}

.brand-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.nav-link {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.6);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--navy-dark) !important;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-soft);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

.btn-hot {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.35);
}

.btn-hot:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.55);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  padding: 8px;
  cursor: pointer;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* Hero Section */
.hero-section {
  background: radial-gradient(circle at 80% 20%, rgba(0, 180, 216, 0.15) 0%, rgba(7, 13, 30, 0) 50%),
              radial-gradient(circle at 10% 80%, rgba(56, 189, 248, 0.1) 0%, rgba(7, 13, 30, 0) 50%),
              linear-gradient(175deg, #070d1e 0%, #0b152d 60%, #132247 100%);
  color: #ffffff;
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-heading {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-desc {
  font-size: 1.15rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-search-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 6px 6px 6px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 560px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.hero-search-box:focus-within {
  border-color: #38bdf8;
  box-shadow: var(--shadow-glow);
}

.hero-search-box input {
  flex: 1;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.02rem;
  font-family: var(--font);
  outline: none;
}

.hero-search-box input::placeholder {
  color: #94a3b8;
}

.hero-quick-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.88rem;
  color: #94a3b8;
}

.hero-quick-tags a {
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-quick-tags a:hover {
  background: var(--accent-cyan);
  color: var(--navy-dark) !important;
  border-color: var(--accent-cyan);
}

/* Hero Right Matrix Panel */
.hero-card-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero-card-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00b4d8, transparent);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 4px;
}

/* 4-Card Triage Section */
.triage-section {
  padding: 50px 0 60px;
  position: relative;
  margin-top: -40px;
  z-index: 5;
}

.triage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.triage-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  text-decoration: none;
}

.triage-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-cyan);
}

.triage-card.bts-card { border-top: 4px solid var(--transit-bts); }
.triage-card.mrt-card { border-top: 4px solid var(--transit-mrt); }
.triage-card.hot-card { border-top: 4px solid var(--hot-coral); }
.triage-card.prep-card { border-top: 4px solid var(--accent); }

.triage-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.bts-card .triage-icon-wrap { background: rgba(0, 168, 89, 0.12); color: var(--transit-bts); }
.mrt-card .triage-icon-wrap { background: rgba(24, 90, 157, 0.12); color: var(--transit-mrt); }
.hot-card .triage-icon-wrap { background: rgba(239, 68, 68, 0.12); color: var(--hot-coral); }
.prep-card .triage-icon-wrap { background: rgba(0, 119, 182, 0.12); color: var(--accent); }

.triage-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.triage-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.triage-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--accent);
}

.triage-card:hover .triage-card-arrow {
  transform: translateX(5px);
}

/* Hub Knowledge Section */
.hub-section {
  padding: 80px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-tag {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
  display: inline-block;
  background: rgba(0, 180, 216, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.hub-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.hub-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-cyan);
}

.hub-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.hub-card-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 12px;
  line-height: 1.45;
}

.hub-card-lead {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}

.hub-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.84rem;
}

/* Latest Articles & Grid */
.articles-section {
  padding: 80px 0;
  background: var(--bg);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-cyan);
}

.article-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #070d1e 0%, #0077b6 100%);
}

.article-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .article-thumb-wrap img {
  transform: scale(1.06);
}

.article-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-cat-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.article-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.45;
  margin-bottom: 10px;
}

.article-card-title a {
  color: inherit;
}

.article-card-title a:hover {
  color: var(--accent-cyan);
}

.article-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

/* Byline Meta */
.byline-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.84rem;
}

.byline-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-light);
}

.byline-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.byline-author-cat {
  font-weight: 700;
  color: var(--navy-dark);
}

.byline-author-cat a {
  color: var(--accent);
}

.byline-date {
  color: var(--text-light);
  font-size: 0.78rem;
}

/* E-E-A-T Strip */
.eeat-strip {
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-cyan);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 28px 0;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}

.eeat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eeat-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.eeat-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Article Reading View */
.article-page {
  padding: 40px 0 80px;
}

.article-header {
  max-width: 820px;
  margin: 0 auto 36px;
}

.article-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.25;
  margin: 16px 0;
  letter-spacing: -0.02em;
}

.article-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.article-content {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 1.05rem;
  line-height: 1.85;
  color: #1e293b;
}

.article-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-soft);
}

.article-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 30px 0 14px;
}

.article-content p { margin-bottom: 20px; }
.article-content ul, .article-content ol { margin-bottom: 24px; padding-left: 26px; }
.article-content li { margin-bottom: 10px; }

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* Author Box */
.author-box {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.author-box-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-cyan);
  flex-shrink: 0;
}

.author-box-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.author-box-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 2px 0 6px;
}

.author-box-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #cbd5e1;
  padding: 70px 0 30px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-tagline {
  font-size: 0.94rem;
  color: #94a3b8;
  line-height: 1.65;
}

.footer-heading {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: #64748b;
}

/* Cookie Consent Bar */
.cookie-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 900px;
  background: rgba(7, 13, 30, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #ffffff;
  padding: 20px 26px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  animation: slideUp 0.4s ease-out;
}

.cookie-bar.hidden {
  display: none !important;
}

.cookie-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #cbd5e1;
}

.cookie-text a {
  color: #38bdf8;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

@keyframes slideUp {
  from { opacity: 0; transform: translate(-50%, 30px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .triage-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .article-main-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-height: 68px; }
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .hero-heading { font-size: 2.15rem; }
  .triage-grid { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cookie-bar { flex-direction: column; align-items: stretch; bottom: 12px; padding: 18px; }
  .cookie-actions { flex-direction: column; width: 100%; }
  .cookie-actions .btn { width: 100%; }
}

/* Homepage redesign — keep layout polish; preserve Metropolitan tokens from :root above */
body {
  background:
    linear-gradient(180deg, rgba(224, 242, 254, 0.55) 0, rgba(248, 250, 252, 0) 380px),
    var(--bg);
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 230, 228, 0.9);
  box-shadow: 0 8px 26px rgba(18, 34, 51, 0.06);
}

.brand-logo,
.brand-title {
  color: var(--navy-dark);
}

.brand-sub,
.text-accent {
  color: var(--accent-teal);
}

.nav-link {
  color: #526273;
  border-radius: 6px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy-dark);
  background: #e7f4f1;
}

.mobile-toggle {
  color: var(--navy-dark);
}

.btn {
  border-radius: 6px;
  min-height: 44px;
  letter-spacing: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 100%);
  box-shadow: 0 12px 22px rgba(20, 125, 143, 0.2);
}

.btn-primary:hover,
.btn-hot:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
}

.btn-hot {
  background: var(--hot-coral);
  box-shadow: 0 12px 22px rgba(216, 74, 58, 0.2);
}

.btn-secondary {
  background: #ffffff;
  color: var(--navy-dark) !important;
  border: 1px solid var(--border);
}

.home-hero {
  padding: 74px 0 76px;
  color: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(31, 178, 138, 0.14), transparent 38%),
    linear-gradient(245deg, rgba(49, 95, 159, 0.12), transparent 42%);
  pointer-events: none;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.home-hero-copy {
  max-width: 720px;
}

.hero-live-pill {
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.hero-live-dot {
  background: var(--accent-teal);
  box-shadow: 0 0 0 5px rgba(31, 178, 138, 0.14);
}

.hero-heading {
  max-width: 760px;
  color: var(--navy-dark);
  font-size: 3.45rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.gradient-text {
  display: block;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--accent) 0%, #1b9a63 70%, #315f9f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  color: #536578;
  font-size: 1.08rem;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 20px;
}

.hero-search-box {
  max-width: 680px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 8px 8px 16px;
  color: var(--accent);
  box-shadow: var(--shadow-md);
}

.hero-search-box:focus-within {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 4px rgba(31, 178, 138, 0.12), var(--shadow-md);
}

.hero-search-box input {
  color: var(--navy-dark);
}

.hero-search-box input::placeholder {
  color: #8b9bad;
}

.hero-quick-tags {
  color: var(--text-muted);
  margin-top: 16px;
}

.hero-quick-tags span {
  font-weight: 800;
}

.hero-quick-tags a {
  color: #36546d;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
}

.hero-quick-tags a:hover {
  background: var(--accent-light);
  border-color: #bfe7df;
  color: var(--accent) !important;
}

.hero-care-panel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero-care-panel::before {
  content: '';
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  width: 5px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--accent-teal), var(--transit-mrt), var(--hot-coral));
}

.care-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-right: 18px;
  margin-bottom: 22px;
}

.panel-kicker {
  display: block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.care-panel-top h2 {
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.25;
}

.care-path-list {
  display: grid;
  gap: 10px;
}

.care-path-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 15px;
  background: #f8fbfa;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--navy-dark);
}

.care-path-item:hover {
  background: #eff8f5;
  border-color: #bfe7df;
  color: var(--navy-dark);
}

.care-path-item.urgent {
  background: var(--hot-soft);
  border-color: #ffd1c8;
}

.care-path-index {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #ffffff;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  border: 1px solid var(--border);
}

.care-path-item strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.45;
}

.care-path-item span:last-child {
  display: block;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.55;
  margin-top: 2px;
}

.hero-assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
  padding-right: 18px;
}

.hero-assurance-grid div {
  background: var(--navy-dark);
  color: #ffffff;
  border-radius: 8px;
  padding: 14px 10px;
}

.hero-assurance-grid strong,
.hero-assurance-grid span {
  display: block;
  text-align: center;
}

.hero-assurance-grid strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.hero-assurance-grid span {
  color: #b9c8d5;
  font-size: 0.76rem;
  line-height: 1.35;
  margin-top: 3px;
}

.badge {
  border-radius: 6px;
  line-height: 1.2;
}

.badge-dark-cyan {
  background: #e4f7f3;
  color: var(--accent);
  border-color: #bfe7df;
}

.triage-section {
  padding: 26px 0 72px;
  margin-top: 0;
}

.triage-grid {
  gap: 16px;
}

.triage-card,
.hub-card,
.article-card,
.eeat-strip,
.sidebar-widget,
.article-content,
.author-box {
  border-radius: 8px;
}

.triage-card {
  padding: 24px;
  min-height: 275px;
}

.triage-card:hover,
.hub-card:hover,
.article-card:hover {
  transform: translateY(-4px);
}

.triage-icon-wrap {
  border-radius: 8px;
}

.triage-card-title,
.hub-card-title,
.article-card-title,
.section-title {
  letter-spacing: 0;
}

.triage-card .badge {
  align-self: flex-start;
  margin-bottom: 12px;
}

.hub-section {
  background:
    linear-gradient(180deg, #eef6f4 0%, #f6f8f7 100%);
  padding: 78px 0;
}

.section-tag {
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #cde8e3;
  color: var(--accent);
}

.section-title {
  font-size: 2.15rem;
}

.hub-card {
  padding: 26px;
}

.hub-card-meta {
  gap: 12px;
}

.read-time {
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.hub-card-footer {
  color: var(--accent);
  gap: 12px;
}

.hub-card-footer span:first-child {
  font-weight: 800;
}

.hub-card-footer span:last-child {
  color: var(--text-light);
  font-weight: 600;
}

.article-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  max-width: none;
  margin-bottom: 34px;
  gap: 16px;
}

.article-section-header .section-title {
  margin-bottom: 0;
}

.article-thumb-wrap {
  background: linear-gradient(135deg, #e4f7f3 0%, var(--navy-surface) 100%);
}

.article-cat-badge {
  border-radius: 6px;
}

.trust-section {
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 54px 0;
}

.trust-section .eeat-strip {
  margin: 0;
  box-shadow: none;
  background: #f8fbfa;
  border-color: var(--border);
  border-left-color: var(--accent-teal);
}

.eeat-content a {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
}

.empty-state-card {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border);
}

.empty-state-card p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.site-footer {
  background: var(--navy-dark);
}

.footer-brand .brand-logo,
.footer-brand .brand-title {
  color: #ffffff;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.footer-contact a {
  color: #e0f2fe;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--accent-cyan);
}

.footer-hotline {
  color: #fff !important;
  font-size: 1.05rem !important;
}

.eeat-badge-box strong {
  color: var(--accent-cyan) !important;
}

.hero-actions .hero-hotline {
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    max-width: none;
  }

  .hero-heading {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .site-header .header-book-btn {
    padding: 8px 12px;
    min-height: 40px;
    gap: 6px;
    font-size: 0.88rem;
  }

  .site-header .header-book-btn span {
    display: inline;
  }

  .brand-sub {
    display: none;
  }

  .home-hero {
    padding: 48px 0 50px;
  }

  .hero-heading {
    font-size: 2.15rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: stretch;
  }

  .hero-actions .btn:first-child {
    grid-column: 1 / -1;
  }

  .hero-actions .btn,
  .hero-search-box .btn {
    width: 100%;
  }

  .hero-search-box {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    padding: 12px;
  }

  .hero-search-box svg {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-search-box input {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  .hero-search-box .btn {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .hero-care-panel {
    padding: 22px;
  }

  .care-panel-top {
    flex-direction: column;
  }

  .care-path-item {
    grid-template-columns: 34px 1fr;
    padding: 13px;
  }

  .care-path-index {
    width: 32px;
    height: 32px;
  }

  .hero-assurance-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .article-section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-section-header .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 18px;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-sub {
    font-size: 0.64rem;
  }

  .hero-heading {
    font-size: 1.9rem;
  }

  .hero-live-pill {
    max-width: 100%;
  }

  .hub-card-meta,
  .hub-card-footer,
  .byline-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .triage-card {
    min-height: auto;
  }
}

/* Brand-led refresh: Bangkok STI Center */
.home-hero {
  padding: 66px 0 42px;
  background: #f7faf9;
}

.home-hero::before {
  background:
    linear-gradient(90deg, rgba(20, 125, 143, 0.08), transparent 48%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 72%);
}

.home-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: 52px;
}

.hero-live-pill {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  color: var(--accent);
  border-radius: 0;
  margin-bottom: 18px;
}

.hero-live-dot {
  width: 7px;
  height: 7px;
  box-shadow: none;
}

.hero-heading {
  margin-bottom: 22px;
}

.hero-name {
  display: block;
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.55rem);
  font-weight: 900;
  line-height: 0.98;
}

.hero-tagline {
  display: block;
  max-width: 690px;
  margin-top: 18px;
  color: var(--navy-surface);
  font-family: var(--font);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.35;
}

.hero-desc {
  max-width: 650px;
  margin-bottom: 28px;
  color: #56677a;
}

.hero-actions {
  margin-bottom: 22px;
}

.hero-search-box {
  box-shadow: 0 16px 34px rgba(16, 32, 51, 0.08);
}

.hero-media-card {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #d6e2df;
  background: #e8efed;
  box-shadow: 0 28px 60px rgba(16, 32, 51, 0.16);
}

.hero-media-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.hero-service-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(390px, calc(100% - 44px));
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-service-card strong,
.hero-service-card span {
  display: block;
}

.hero-service-card strong {
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.35;
  margin: 4px 0 6px;
}

.hero-service-card span:last-child {
  color: #5f7081;
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-strip {
  padding: 0 0 38px;
  background: #f7faf9;
}

.service-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #d6e2df;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(16, 32, 51, 0.06);
}

.service-strip-grid a {
  display: flex;
  min-height: 108px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 22px;
  color: var(--navy-dark);
  border-right: 1px solid #d6e2df;
}

.service-strip-grid a:last-child {
  border-right: 0;
}

.service-strip-grid a:hover {
  background: #eef8f5;
  color: var(--navy-dark);
}

.service-strip-grid strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.3;
}

.service-strip-grid span {
  color: #637487;
  font-size: 0.86rem;
  line-height: 1.45;
}

.triage-section {
  padding-top: 44px;
}

.triage-card {
  box-shadow: none;
}

.triage-card:hover {
  box-shadow: 0 14px 30px rgba(16, 32, 51, 0.1);
}

.hub-section {
  background: #ffffff;
}

.articles-section {
  background: #f7faf9;
}

@media (max-width: 1024px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media-card,
  .hero-media-card img {
    min-height: 420px;
  }

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

  .service-strip-grid a:nth-child(2) {
    border-right: 0;
  }

  .service-strip-grid a:nth-child(-n+2) {
    border-bottom: 1px solid #d6e2df;
  }
}

@media (max-width: 768px) {
  .home-hero {
    padding-top: 42px;
  }

  .hero-name {
    font-size: 3rem;
  }

  .hero-tagline {
    font-size: 1.28rem;
  }

  .hero-media-card,
  .hero-media-card img {
    min-height: 360px;
  }

  .hero-service-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -72px 16px 16px;
  }
}

@media (max-width: 520px) {
  .hero-name {
    font-size: 2.5rem;
  }

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

  .service-strip-grid a,
  .service-strip-grid a:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #d6e2df;
  }

  .service-strip-grid a:last-child {
    border-bottom: 0;
  }
}

/* Third pass: less template, stronger Bangkok STI Center identity */
.brand-hero {
  padding: 54px 0 30px;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 49%, #edf4f2 49%, #edf4f2 100%);
}

.brand-hero::before {
  display: none;
}

.brand-hero .home-hero-grid {
  grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1.18fr);
  gap: 46px;
  min-height: 610px;
}

.brand-hero .home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  padding: 28px 0 44px;
}

.hero-eyebrow {
  margin-bottom: 22px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.brand-hero .hero-heading {
  margin-bottom: 24px;
}

.brand-hero .hero-name {
  color: #0d1c2b;
  font-size: clamp(3.4rem, 6.8vw, 6.6rem);
  line-height: 0.92;
  max-width: 7.8em;
}

.brand-hero .hero-tagline {
  max-width: 560px;
  margin-top: 24px;
  color: #27465f;
  font-size: clamp(1.22rem, 1.55vw, 1.58rem);
  font-weight: 700;
  line-height: 1.5;
}

.brand-hero .hero-desc {
  max-width: 570px;
  color: #5c6f80;
  font-size: 1rem;
  line-height: 1.85;
}

.brand-hero .hero-actions {
  margin-bottom: 24px;
}

.brand-hero .btn {
  min-height: 48px;
  padding: 11px 20px;
  border-radius: 4px;
}

.brand-hero .btn-primary {
  background: #0f786f;
  box-shadow: none;
}

.brand-hero .btn-primary:hover {
  background: #0b655d;
  box-shadow: none;
}

.brand-hero .btn-hot {
  background: #bf493c;
  box-shadow: none;
}

.brand-hero .hero-search-box {
  max-width: 590px;
  border-radius: 4px;
  box-shadow: none;
}

.brand-hero .hero-quick-tags a {
  border-radius: 4px;
}

.brand-hero .hero-media-card {
  align-self: stretch;
  min-height: 610px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #dfe8e6;
}

.brand-hero .hero-media-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(237, 244, 242, 0.08), rgba(16, 32, 51, 0.02));
  pointer-events: none;
}

.brand-hero .hero-media-card img {
  min-height: 610px;
  object-position: center;
}

.brand-hero .hero-service-card {
  right: auto;
  left: 28px;
  bottom: 28px;
  width: min(420px, calc(100% - 56px));
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-left: 5px solid #0f786f;
  box-shadow: 0 22px 42px rgba(16, 32, 51, 0.2);
}

.service-strip {
  padding: 0;
  background: #ffffff;
}

.service-strip-grid {
  transform: translateY(-30px);
  border-radius: 0;
  border-color: #d8e4e1;
  box-shadow: 0 18px 40px rgba(16, 32, 51, 0.08);
}

.service-strip-grid a {
  min-height: 116px;
  padding: 24px 26px;
}

.triage-section {
  padding-top: 20px;
  background: #ffffff;
}

.triage-card {
  background: #fbfdfc;
}

.triage-card-title {
  font-size: 1.12rem;
}

.hub-section {
  border-top: 1px solid #e5eeec;
}

.section-header {
  max-width: 720px;
}

.section-tag {
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
  letter-spacing: 0.12em;
}

.section-title {
  color: #0d1c2b;
}

@media (max-width: 1024px) {
  .brand-hero {
    background: #ffffff;
  }

  .brand-hero .home-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .brand-hero .home-hero-copy {
    padding-bottom: 0;
  }

  .brand-hero .hero-media-card,
  .brand-hero .hero-media-card img {
    min-height: 470px;
  }
}

@media (max-width: 768px) {
  .brand-hero {
    padding-top: 36px;
  }

  .brand-hero .hero-name {
    font-size: 2.35rem;
  }

  .brand-hero .hero-tagline {
    font-size: 1.05rem;
  }

  .brand-hero .hero-media-card,
  .brand-hero .hero-media-card img {
    min-height: 280px;
  }

  .brand-hero .hero-service-card {
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -68px 16px 16px;
  }

  .service-strip-grid {
    transform: none;
  }

  .triage-section {
    padding-top: 42px;
  }
}

@media (max-width: 520px) {
  .hero-eyebrow {
    font-size: 0.72rem;
  }

  .brand-hero .hero-name {
    font-size: 2rem;
  }

  .brand-hero .hero-desc {
    line-height: 1.75;
  }

  .brand-title {
    font-size: 0.92rem;
  }

  .site-header .header-book-btn {
    padding: 8px 10px;
  }
}
