/* ══════════════════════════════════════════ HERO */
.hero { position: relative; height: 580px; overflow: hidden; border-radius: var(--r-l); margin: 0 var(--pad) var(--sp-xl); }
.hero-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.58); }
.hero-placeholder { width: 100%; height: 100%; background: var(--ink); display: flex; align-items: center; justify-content: center; }
.hero-placeholder-text { font-family: var(--serif); font-size: 3rem; font-weight: 400; color: rgba(255,255,255,0.06); letter-spacing: -0.02em; text-align: center; max-width: 80%; line-height: 1.1; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,18,16,0.82) 0%, rgba(17,18,16,0.30) 55%, transparent 100%); z-index: 1; border-radius: var(--r-l); }
.hero::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E"); opacity: 0.35; pointer-events: none; z-index: 2; border-radius: var(--r-l); }
.hero-content { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; justify-content: flex-end; padding: 48px 52px; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 18px; }
.hero-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.hero-badge-text { font-size: 11px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.50); }
.hero-title { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 400; color: #fff; line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 12px; }
.hero-subtitle { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.52); letter-spacing: 0.01em; margin-bottom: 32px; }
.hero-subtitle a { color: rgba(255,255,255,0.65); border-bottom: 1px solid rgba(255,255,255,0.20); transition: color 0.2s, border-color 0.2s; }
.hero-subtitle a:hover { color: #fff; border-color: rgba(255,255,255,0.50); }
.hero-btns { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.btn-hero-primary { font-size: 13px; font-weight: 600; color: var(--ink); padding: 12px 26px; background: #fff; border-radius: var(--r-pill); border: none; transition: opacity 0.2s; cursor: pointer; white-space: nowrap; }
.btn-hero-primary:hover { opacity: 0.88; }
.btn-hero-ghost { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.72); padding: 12px 26px; border: 1px solid rgba(255,255,255,0.24); border-radius: var(--r-pill); transition: border-color 0.2s, color 0.2s; cursor: pointer; white-space: nowrap; }
.btn-hero-ghost:hover { color:#fff; border-color:rgba(255,255,255,0.55); }
.hero-stats { position: absolute; bottom: 48px; right: 52px; z-index: 3; display: flex; gap: 1px; }
.hero-stat { background: rgba(17,18,16,0.78); border: 1px solid rgba(255,255,255,0.08); padding: 16px 22px; text-align: center; min-width: 100px; }
.hero-stat:first-child { border-radius: var(--r-m) 0 0 var(--r-m); }
.hero-stat:last-child  { border-radius: 0 var(--r-m) var(--r-m) 0; }
.hero-stat-num { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: #fff; line-height: 1; margin-bottom: 5px; letter-spacing: -0.02em; }
.hero-stat-label { font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.36); }

/* ══════════════════════════════════════════ TAB BAR */
.tab-bar { position: sticky; top: var(--nav-h); z-index: 300; background: rgba(250,250,248,0.92); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%); border-bottom: 1px solid var(--ink-10); -webkit-mask-image: linear-gradient(to right, black calc(100% - 48px), transparent 100%); mask-image: linear-gradient(to right, black calc(100% - 48px), transparent 100%); }
.tab-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); display: flex; align-items: center; gap: 0; overflow-x: auto; scrollbar-width: none; }
.tab-inner::-webkit-scrollbar { display:none; }
.tab { flex-shrink: 0; font-size: 13px; font-weight: 400; color: var(--ink-40); min-height: 44px; padding: 0 18px; display: flex; align-items: center; border-bottom: 2px solid transparent; cursor: pointer; white-space: nowrap; transition: color 0.15s, border-color 0.15s; }
.tab:hover:not(.active) { color: var(--ink-70); }
.tab.active { color: var(--ink); font-weight: 500; border-bottom-color: var(--accent); }

/* ══════════════════════════════════════════ PAGE BODY */
.page-body { max-width: 760px; margin: 0 auto; padding: var(--sp-2xl) var(--pad); padding-bottom: calc(var(--sp-2xl) + 80px); }
.page-section { margin-bottom: var(--sp-xl); }
.page-section:last-child { margin-bottom: 0; }

/* ── OVERVIEW STATS GRID ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: var(--r-m); overflow: hidden; margin-bottom: var(--sp-l); background: var(--surface-1); box-shadow: 0 0 0 1px var(--ink-10); }
.stat-cell { padding: var(--sp-l) var(--sp-m); display: flex; flex-direction: column; gap: 5px; border-right: 1px solid var(--ink-10); }
.stat-cell:last-child { border-right: none; }
.stat-cell:first-child { border-top: 3px solid var(--accent); }
.stat-cell-num { font-family: var(--serif); font-size: clamp(1.5rem, 3.5vw, 2.1rem); font-weight: 400; color: var(--ink); line-height: 1; letter-spacing: -0.02em; }
.stat-cell-label { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-40); }
.stat-cell-sub { font-size: 11px; font-weight: 400; color: var(--ink-40); }

/* ── AWARDS ── */
.awards-block { display: flex; flex-direction: column; gap: 0; border-left: 2px solid var(--accent); padding-left: var(--sp-m); margin: var(--sp-l) 0; }
.award-line { display: flex; align-items: baseline; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--ink-06); flex-wrap: wrap; }
.award-line:last-child { border-bottom: none; }
.award-pub { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-40); white-space: nowrap; min-width: 100px; }
.award-title { font-size: 13px; font-weight: 400; color: var(--ink-70); }
.award-year { font-size: 11px; font-weight: 400; color: var(--ink-40); margin-left: auto; white-space: nowrap; padding-left: 12px; }
.award-line.tier-1 .award-pub { color: var(--accent); }

/* ── CONTACT ROW ── */
.contact-row { display: flex; flex-wrap: wrap; gap: var(--sp-m); padding: var(--sp-m) 0; border-top: 1px solid var(--ink-10); margin-top: var(--sp-m); }
.contact-item { display: flex; align-items: center; gap: 9px; min-width: 0; }
.contact-icon { width: 30px; height: 30px; background: var(--surface-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.contact-text { font-size: 13px; font-weight: 400; color: var(--ink-70); overflow-wrap: break-word; min-width: 0; }

/* ── AT COURSE (Tips) ── */
.at-cal { background: var(--surface-1); border-radius: var(--r-l); overflow: hidden; }
.at-cal-header { padding: var(--sp-l) var(--sp-l) 0; }
.at-cal-intro { font-size: 15px; font-weight: 400; line-height: 1.75; color: var(--ink-70); margin-bottom: var(--sp-l); padding: 0 var(--sp-l); font-style: italic; }
.at-cal-tips { display: flex; flex-direction: column; }
.at-cal-tip { display: flex; gap: var(--sp-m); padding: var(--sp-m) var(--sp-l); border-top: 1px solid var(--ink-10); transition: background 0.15s; }
.at-cal-tip:hover { background: var(--surface-2); }
.at-cal-tip-num { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--accent); line-height: 1.4; flex-shrink: 0; width: 20px; padding-top: 1px; }
.at-cal-tip-label { font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 4px; letter-spacing: 0.01em; }
.at-cal-tip-text { font-size: 13px; font-weight: 400; line-height: 1.65; color: var(--ink-60); }

/* ── COURSE DETAILS ── */
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-l); }
.detail-item { padding: 12px 0; border-bottom: 1px solid var(--ink-06); display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-m); }
.detail-item:last-child { border-bottom: none; }
.detail-label { font-size: 12px; font-weight: 400; color: var(--ink-40); flex-shrink: 0; }
.detail-value { font-size: 13px; font-weight: 500; color: var(--ink); text-align: right; }
.detail-value a { color: var(--accent); border-bottom: 1px solid var(--accent-border); transition: color 0.2s, border-color 0.2s; }
.detail-value a:hover { color: var(--ink); border-color: var(--ink-40); }

/* ── NOTABLE FEATURES ── */
.notable-features { background: var(--accent-dim); border: 1px solid var(--accent-border); border-radius: var(--r-m); padding: var(--sp-m) var(--sp-l); margin-top: var(--sp-m); }
.notable-features-label { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.notable-features-text { font-size: 13px; font-weight: 400; line-height: 1.7; color: var(--ink-70); }

/* ── SCORECARD ── */
.tee-table-wrap { border-radius: var(--r-m); overflow-x: auto; -webkit-overflow-scrolling: touch; box-shadow: 0 0 0 1px var(--ink-10); }
.tee-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.tee-table thead th { font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-40); background: var(--surface-1); padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--ink-10); white-space: nowrap; }
.tee-table thead th:nth-child(n+3) { text-align: center; }
.tee-table tbody td { font-size: 13px; font-weight: 400; color: var(--ink-60); padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--ink-06); }
.tee-table tbody td:nth-child(n+3) { text-align: center; }
.tee-table tbody tr:last-child td { border-bottom: none; }
.tee-name-cell { display: flex; align-items: center; gap: 9px; }
.tee-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.tee-name { font-weight: 500; color: var(--ink); }
.tee-gender { font-size: 10px; font-weight: 500; color: var(--ink-40); letter-spacing: 0.06em; text-transform: uppercase; }
.tee-table tbody tr.tee-champ td { background: var(--ink); color: rgba(255,255,255,0.55); }
.tee-table tbody tr.tee-champ .tee-name { color: #fff; }
.tee-table tbody tr.tee-champ .tee-gender { color: rgba(255,255,255,0.35); }
.tee-table tbody tr.tee-champ td:nth-child(3),
.tee-table tbody tr.tee-champ td:nth-child(4),
.tee-table tbody tr.tee-champ td:nth-child(5) { color: rgba(255,255,255,0.70); }
.sc-note { margin-top: var(--sp-m); font-size: 12px; font-weight: 400; color: var(--ink-40); line-height: 1.6; display: flex; gap: 8px; align-items: flex-start; }
.sc-note-icon { flex-shrink:0; color: var(--accent); }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 230px 185px; gap: 6px; border-radius: var(--r-m); overflow: hidden; }
.gallery-cell { background: var(--surface-2); overflow: hidden; cursor: pointer; position: relative; }
.gallery-cell:first-child { grid-row: 1 / 3; }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.gallery-cell:hover img { transform: scale(1.04); }
.gallery-cell-empty { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px; }
.gallery-cell-empty-icon { font-size: 24px; color: var(--ink-20); }
.gallery-more { position: absolute; inset: 0; background: rgba(17,18,16,0.58); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.gallery-more-count { font-family: var(--serif); font-size: 1.6rem; color: #fff; font-weight: 400; }
.gallery-more-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

/* ── REVIEWS ── */
.review-header { display: flex; align-items: center; gap: var(--sp-l); background: var(--surface-1); border-radius: var(--r-m); padding: var(--sp-l); margin-bottom: var(--sp-m); }
.review-score-big { font-family: var(--serif); font-size: 3.8rem; font-weight: 400; color: var(--accent); line-height: 1; letter-spacing: -0.03em; }
.review-stars { display: flex; gap: 3px; margin-bottom: 6px; }
.star-filled { width: 13px; height: 13px; background: var(--accent-light); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.star-empty { width: 13px; height: 13px; background: var(--ink-10); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.review-count { font-size: 12px; font-weight: 400; color: var(--ink-40); }
.review-scores { display: flex; gap: var(--sp-m); margin-bottom: var(--sp-m); }
.review-score-card { flex: 1; background: var(--surface-1); border-radius: var(--r-m); padding: var(--sp-l); display: flex; flex-direction: column; gap: 6px; box-shadow: 0 0 0 1px var(--ink-10); }
.review-score-source { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-40); }
.review-score-value { font-family: var(--serif); font-size: 2.6rem; font-weight: 400; color: var(--accent); line-height: 1; letter-spacing: -0.02em; }
.review-score-meta { font-size: 12px; font-weight: 400; color: var(--ink-40); }
.review-placeholder { background: var(--surface-1); border-radius: var(--r-m); padding: var(--sp-2xl) var(--sp-l); display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.review-placeholder-icon { font-size: 28px; color: var(--ink-20); }
.review-placeholder-text { font-size: 13px; font-weight: 400; color: var(--ink-40); max-width: 320px; line-height: 1.6; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--ink-10); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-m); padding: var(--sp-m) 0; font-size: 14px; font-weight: 500; color: var(--ink); text-align: left; cursor: pointer; background: none; min-height: 44px; }
.faq-toggle { width: 22px; height: 22px; border-radius: 50%; background: var(--surface-2); display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--ink-40); flex-shrink: 0; transition: transform 0.22s ease, background 0.2s, color 0.2s; }
.faq-a { font-size: 14px; font-weight: 400; line-height: 1.75; color: var(--ink-70); padding-bottom: var(--sp-m); display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--accent); color: #fff; }

/* ── LOCATION ── */
.map-card { border-radius: var(--r-l); overflow: hidden; background: var(--surface-1); }
.map-card-head { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: var(--sp-m); padding: var(--sp-m) var(--sp-l); border-bottom: 1px solid var(--ink-10); }
.map-title { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.map-addr { font-size: 12px; font-weight: 400; color: var(--ink-60); line-height: 1.4; }
.btn-map { font-size: 12px; font-weight: 500; color: var(--ink); padding: 7px 16px; border: 1px solid var(--ink-20); border-radius: var(--r-pill); background: var(--surface-0); white-space: nowrap; transition: border-color 0.2s; min-height: 36px; display: flex; align-items: center; }
.btn-map:hover { border-color: var(--ink-60); }
.map-embed { height: 220px; background: var(--surface-2); position: relative; overflow: hidden; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.map-placeholder { width: 100%; height: 100%; background: repeating-linear-gradient(0deg, transparent, transparent 39px, var(--ink-10) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, var(--ink-10) 40px), var(--surface-2); display: flex; align-items: center; justify-content: center; }
.map-marker { width: 20px; height: 20px; background: var(--accent); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 2px 10px rgba(184,137,42,0.45); }
.map-pois { padding: 0 var(--sp-l); }
.map-poi { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--ink-06); }
.map-poi:last-child { border-bottom: none; }
.map-poi-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-20); flex-shrink: 0; }
.map-poi-text { font-size: 13px; font-weight: 400; color: var(--ink-60); }

/* ── ACCOMMODATIONS ── */
.accom-list { display: flex; flex-direction: column; gap: 0; margin-top: var(--sp-l); }
.accom-item { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-m); padding: 12px 0; border-bottom: 1px solid var(--ink-06); flex-wrap: wrap; }
.accom-item:last-child { border-bottom: none; }
.accom-name { font-size: 13px; font-weight: 500; color: var(--ink); }
.accom-dist { font-size: 12px; font-weight: 400; color: var(--ink-40); white-space: nowrap; }
.accom-link { font-size: 12px; font-weight: 500; color: var(--accent); border-bottom: 1px solid var(--accent-border); transition: color 0.2s; }
.accom-link:hover { color: var(--ink); }

/* ══════════════════════════════════════════ STICKY BAR */
.sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 450; background: var(--ink); border-top: 1px solid rgba(255,255,255,0.06); transform: translateY(100%); opacity: 0; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.25s ease; pointer-events: none; }
.sticky-bar.is-visible { transform: translateY(0); opacity: 1; pointer-events: all; }
.sticky-bar-inner { max-width: var(--max-w); margin: 0 auto; padding: 14px var(--pad); display: flex; align-items: center; gap: var(--sp-l); justify-content: space-between; }
.sbar-identity { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.sbar-name { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: #fff; line-height: 1.1; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sbar-meta { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.38); letter-spacing: 0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sbar-price { display: flex; align-items: baseline; gap: 6px; flex-shrink: 0; }
.sbar-price-from { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; text-transform: uppercase; }
.sbar-price-value { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--accent-light); line-height: 1; letter-spacing: -0.02em; }
.sbar-price-per { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.35); }
.sbar-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-sbar-ghost { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.55); padding: 10px 22px; border: 1px solid rgba(255,255,255,0.14); border-radius: var(--r-pill); transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.btn-sbar-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.40); }
.btn-sbar-primary { font-size: 13px; font-weight: 600; color: var(--ink); padding: 10px 26px; background: #fff; border-radius: var(--r-pill); display: flex; align-items: center; gap: 8px; transition: opacity 0.2s; white-space: nowrap; }
.btn-sbar-primary:hover { opacity: 0.88; }
.btn-sbar-arrow { color: var(--accent); font-size: 14px; }

/* ══════════════════════════════════════════
   RESPONSIVE — COURSE PAGE
   ══════════════════════════════════════════ */

@media (max-width: 900px) {
  .hero-stats { bottom: 32px; right: 36px; }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .details-grid { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 600px) {
  .hero { height: 400px; margin: 0 12px var(--sp-xl); border-radius: var(--r-m); }
  .hero-content { padding: 24px 22px; }
  .hero-subtitle { margin-bottom: 20px; }
  .hero-stats { position: static; display: flex; justify-content: flex-start; gap: 1px; margin: 0 12px var(--sp-l); border-radius: var(--r-m); overflow: hidden; z-index: auto; }
  .hero-stat { padding: 12px 14px; min-width: 0; flex: 1; }
  .hero-stat:first-child { border-radius: 0; }
  .hero-stat:last-child  { border-radius: 0; }
  .hero-stat-num { font-size: 1.3rem; }
  .hero-btns { flex-direction: column; gap: 8px; }
  .btn-hero-primary, .btn-hero-ghost { text-align: center; width: 100%; justify-content: center; }
  .page-body { padding: var(--sp-l) var(--pad); padding-bottom: calc(var(--sp-l) + 80px); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-row { flex-direction: column; gap: var(--sp-s); }
  .at-cal-header { padding: var(--sp-m) var(--sp-m) 0; }
  .at-cal-intro { padding: 0 var(--sp-m); margin-bottom: var(--sp-m); font-size: 14px; }
  .at-cal-tip { padding: var(--sp-s) var(--sp-m); gap: var(--sp-s); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-cell { height: 140px; }
  .gallery-cell:first-child { grid-row: auto; grid-column: 1 / -1; height: 200px; }
  .review-scores { flex-direction: column; }
  .map-card-head { grid-template-columns: 1fr; gap: var(--sp-s); }
  .btn-map { align-self: flex-start; }
  .map-embed { height: 180px; }
  .map-pois { padding: 0 var(--sp-m); }
  .notable-features { padding: var(--sp-m); }
  .sticky-bar-inner { padding: 10px var(--pad); gap: var(--sp-m); }
  .sbar-price { display: none; }
  .btn-sbar-ghost { display: none; }
  .btn-sbar-primary { font-size: 12px; padding: 9px 18px; }
  .sbar-meta { display: none; }
}

@media (max-width: 380px) {
  .hero { height: 340px; margin: 0 8px var(--sp-l); }
  .hero-content { padding: 20px 18px; }
  .hero-title { font-size: 1.9rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell-num { font-size: 1.4rem; }
}