/* 富爱俱乐部 · 南京 · style.css */
/* 设计风格：六朝古都·文人风骨 — 玄武紫+古铜+石青 */
/* Font A: Noto Serif SC 300, 0.06em · Trust D · Footer D · 圆角 4px */
/* Hero: 右文左图竖轴·博物馆展陈风格（区别于暗色系城市）*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@300;400&family=Noto+Sans+SC:wght@300;400&family=EB+Garamond:ital,wght@1,400&display=swap');

/* ── Tokens ── */
:root {
  --purple: #4a2a6a;
  --purple-light: #6a3a8a;
  --bronze: #8a6030;
  --bronze-light: #aa8048;
  --teal: #3a7a80;
  --teal-light: #4a9aa0;
  --bg: #f6f4f8;
  --bg-alt: #edeaf2;
  --bg-dark: #1a1028;
  --ink: #1e1828;
  --ink-light: #3a3050;
  --ink-muted: #7a7090;
  --ink-faint: #b0a8c0;
  --on-dark: #f2eefc;
  --on-dark-muted: #8878a0;
  --on-dark-faint: #6a5a82;
  --border: #d8d0e8;
  --border-dark: #2a1840;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Noto Sans SC', 'PingFang SC', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── Typography ── */
.t-label {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px; font-weight: 300;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--bronze);
}
.t-hero {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 300; line-height: 1.25; letter-spacing: 0.06em;
}
.t-h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  font-weight: 300; line-height: 1.4; letter-spacing: 0.06em;
}
.t-h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px; font-weight: 300;
  line-height: 1.5; letter-spacing: 0.06em;
}
.t-body { font-size: 16px; font-weight: 300; line-height: 1.95; letter-spacing: 0.02em; }
.t-small { font-size: 14px; font-weight: 300; line-height: 1.85; letter-spacing: 0.02em; }
.t-num { font-family: 'EB Garamond', serif; font-style: italic; color: var(--bronze); }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section { padding: 96px 0; }
.section-dark { background: var(--bg-dark); color: var(--on-dark); }
.section-alt { background: var(--bg-alt); }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(26, 16, 40, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border-dark);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
}
.nav-logo {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px; font-weight: 300; letter-spacing: 0.08em;
  color: var(--on-dark); text-decoration: none;
}
.nav-logo span { color: var(--bronze-light); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 300; letter-spacing: 0.06em;
  color: var(--on-dark-muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--on-dark); }
.nav-cta {
  display: inline-flex; align-items: center;
  height: 44px; padding: 0 24px;
  font-size: 14px; font-weight: 300; letter-spacing: 0.12em;
  background: var(--bronze); color: #fff !important;
  border: none; border-radius: var(--radius);
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--bronze-light); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1px;
  background: var(--on-dark); transition: transform 0.3s;
}
#navMobile {
  display: none; flex-direction: column; gap: 0;
  background: rgba(26, 16, 40, 0.98);
  padding: 16px 0; border-top: 1px solid var(--border-dark);
}
#navMobile.open { display: flex; }
#navMobile a {
  font-size: 15px; font-weight: 300; letter-spacing: 0.06em;
  color: var(--on-dark-muted); text-decoration: none;
  padding: 14px 40px; border-bottom: 1px solid var(--border-dark);
  transition: color 0.2s;
}
#navMobile a:hover { color: var(--on-dark); }
#navMobile .nav-cta {
  margin: 16px 40px 8px; text-align: center;
  border-radius: var(--radius); height: auto; padding: 12px 20px;
}

/* ══════════════════════════════
   HERO — 右文左图竖轴·博物馆展陈
   左：深紫竖柱·展陈装饰
   右：浅底大字·文人风骨
══════════════════════════════ */
.hero-section {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Left exhibit panel */
.hero-exhibit {
  background: var(--purple);
  position: relative;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 120px 40px 60px;
  overflow: hidden;
}
.hero-exhibit::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(138,96,48,0.15) 0%, transparent 50%),
              linear-gradient(225deg, rgba(58,122,128,0.1) 0%, transparent 50%);
}
.hero-exhibit-top { position: relative; z-index: 1; }
.hero-exhibit-num {
  font-family: 'EB Garamond', serif;
  font-style: italic; font-size: 5rem;
  color: rgba(242,238,252,0.08); line-height: 1;
  margin-bottom: 8px;
}
.hero-exhibit-label {
  font-family: 'Noto Serif SC', serif;
  font-size: 12px; font-weight: 300; letter-spacing: 0.2em;
  color: var(--on-dark-muted); text-transform: uppercase;
}
.hero-exhibit-center {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.hero-exhibit-watermark {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(8rem, 14vw, 12rem);
  font-weight: 300; color: rgba(242,238,252,0.1);
  line-height: 1; letter-spacing: -0.02em;
  text-align: center;
}
.hero-exhibit-vline {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--bronze), transparent);
}
.hero-exhibit-badge {
  font-family: 'Noto Serif SC', serif;
  font-size: 14px; font-weight: 300; letter-spacing: 0.1em;
  color: var(--bronze-light);
  border: 1px solid rgba(138,96,48,0.3);
  padding: 8px 20px; border-radius: var(--radius);
  text-align: center;
}
.hero-exhibit-stats {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 16px;
}
.hero-exhibit-stat {
  display: flex; flex-direction: column; gap: 4px;
  border-left: 1px solid rgba(138,96,48,0.4);
  padding-left: 16px;
}
.hero-exhibit-stat-num {
  font-family: 'EB Garamond', serif;
  font-style: italic; font-size: 1.875rem;
  color: var(--bronze-light); line-height: 1;
}
.hero-exhibit-stat-label { color: var(--on-dark-muted); }

/* Right content panel */
.hero-content {
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 72px 80px 64px;
  position: relative;
}
.hero-content::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border) 25%, var(--border) 75%, transparent);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.hero-eyebrow-diamond {
  width: 6px; height: 6px;
  background: var(--bronze);
  transform: rotate(45deg);
}
.hero-title { color: var(--ink); margin-bottom: 24px; }
.hero-title em { font-style: normal; color: var(--purple); }
.hero-body { color: var(--ink-light); max-width: 40ch; margin-bottom: 40px; }
.hero-cta {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; margin-bottom: 48px;
}
.btn-primary {
  display: inline-block;
  font-size: 14px; font-weight: 300; letter-spacing: 0.12em;
  background: var(--purple); color: #fff;
  padding: 14px 32px; border-radius: var(--radius);
  text-decoration: none; transition: background 0.2s;
  min-height: 44px; line-height: 1.4;
}
.btn-primary:hover { background: var(--purple-light); }
.btn-text {
  display: inline-block;
  font-size: 14px; font-weight: 300; letter-spacing: 0.06em;
  color: var(--ink-muted); padding: 14px 0;
  text-decoration: none; border-bottom: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
  min-height: 44px; line-height: 1.4;
}
.btn-text:hover { color: var(--ink); border-color: var(--ink-muted); }
.hero-footnote { color: var(--ink-faint); }

/* ══════════════════════════════
   TRUST STRIP D — 浅色品牌侧边
══════════════════════════════ */
.trust-section {
  background: var(--bg);
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-sidebar {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px; align-items: center;
}
.trust-brand-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 300; line-height: 1.5; letter-spacing: 0.06em;
  color: var(--ink); margin-bottom: 16px;
}
.trust-brand-sub { color: var(--ink-muted); max-width: 38ch; }
.trust-nums-side { display: flex; flex-direction: column; gap: 0; }
.trust-num-item {
  display: flex; align-items: center; gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.trust-num-item:first-child { border-top: 1px solid var(--border); }
.trust-num-big {
  font-family: 'EB Garamond', serif;
  font-style: italic; font-size: 2.5rem;
  color: var(--bronze); line-height: 1;
  white-space: nowrap; min-width: 100px;
}
.trust-num-text { display: flex; flex-direction: column; gap: 2px; }
.trust-num-label { font-size: 14px; font-weight: 300; color: var(--ink); }
.trust-num-sub { color: var(--ink-muted); }

/* ══════════════════════════════
   ABOUT — 左文右列表 (A)
══════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.about-label { margin-bottom: 24px; }
.about-title { margin-bottom: 32px; }
.about-body { color: var(--ink-light); margin-bottom: 40px; }
.about-cta {}
.about-list { display: flex; flex-direction: column; gap: 0; }
.about-list-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.about-list-item:first-child { border-top: 1px solid var(--border); }
.about-list-num {
  font-family: 'EB Garamond', serif;
  font-style: italic; font-size: 1.5rem;
  color: var(--teal); line-height: 1;
  flex-shrink: 0; padding-top: 4px;
}
.about-list-content { display: flex; flex-direction: column; gap: 6px; }
.about-list-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 15px; font-weight: 300;
  letter-spacing: 0.06em; color: var(--ink);
}
.about-list-desc { color: var(--ink-muted); }

/* ══════════════════════════════
   SERVICES — 竖向横排大卡片 (B)
══════════════════════════════ */
.services-header { margin-bottom: 48px; }
.service-h-cards { display: flex; flex-direction: column; gap: 0; }
.service-h-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.service-h-card:first-child { border-top: 1px solid var(--border); }
.service-h-num {
  font-family: 'EB Garamond', serif;
  font-style: italic; font-size: 3.5rem;
  color: var(--teal); line-height: 1; padding-top: 4px;
}
.service-h-content { display: flex; flex-direction: column; gap: 12px; }
.service-h-title { color: var(--ink); }
.service-h-body { color: var(--ink-muted); max-width: 54ch; }
.service-h-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.service-h-tag {
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--teal);
  background: rgba(58,122,128,0.08);
  border: 1px solid rgba(58,122,128,0.2);
  padding: 4px 12px; border-radius: var(--radius);
}
.service-vip {
  margin-top: 48px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
  padding: 40px 48px;
  background: var(--purple); border-radius: var(--radius);
}
.service-vip-body { display: flex; flex-direction: column; gap: 12px; }
.service-vip-title { color: var(--on-dark); }
.service-vip-desc { color: var(--on-dark-muted); }
.btn-vip {
  display: inline-block; white-space: nowrap;
  font-size: 14px; font-weight: 300; letter-spacing: 0.12em;
  background: var(--bronze); color: #fff;
  padding: 14px 32px; border-radius: var(--radius);
  text-decoration: none; transition: background 0.2s;
  min-height: 44px; line-height: 1.4;
}
.btn-vip:hover { background: var(--bronze-light); }

/* ══════════════════════════════
   PROFILES — 不对称Bento
══════════════════════════════ */
.profiles-header { margin-bottom: 48px; }
.profiles-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 380px 260px;
  gap: 16px;
}
.profile-card {
  position: relative; overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.profile-card-tall { grid-row: span 2; }
.profile-card-wide { grid-column: span 2; }
.profile-img-wrap { position: absolute; inset: 0; }
.profile-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.profile-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,16,40,0.85) 0%, rgba(26,16,40,0.05) 55%);
}
.profile-card-body {
  position: relative; z-index: 1;
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.profile-name {
  font-family: 'Noto Serif SC', serif;
  font-weight: 300; color: var(--on-dark);
  letter-spacing: 0.06em;
}
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.profile-tag {
  font-size: 12px; letter-spacing: 0.04em;
  color: rgba(242,238,252,0.7);
  background: rgba(242,238,252,0.1);
  border: 1px solid rgba(242,238,252,0.15);
  padding: 3px 10px; border-radius: 2px;
}
.profiles-cta-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding: 24px 40px;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.profiles-cta-text { color: var(--ink-light); }
.profiles-cta-text strong { color: var(--ink); }

/* ══════════════════════════════
   CTA SECTION
══════════════════════════════ */
.cta-section {
  background: var(--purple);
  padding: 96px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '金陵';
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(6rem, 16vw, 14rem);
  font-weight: 300;
  color: rgba(242,238,252,0.05);
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap; pointer-events: none; letter-spacing: 0.1em;
}
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-title { color: var(--on-dark); margin-bottom: 16px; }
.cta-body { color: var(--on-dark-muted); margin-bottom: 40px; }
.cta-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-cta {
  display: inline-block;
  font-size: 14px; font-weight: 300; letter-spacing: 0.12em;
  background: var(--bronze); color: #fff;
  padding: 14px 36px; border-radius: var(--radius);
  text-decoration: none; transition: background 0.2s;
  min-height: 44px; line-height: 1.4;
}
.btn-cta:hover { background: var(--bronze-light); }

/* ══════════════════════════════
   BLOG — 三等列 (B)
══════════════════════════════ */
.blog-header { margin-bottom: 48px; }
.blog-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card-v {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s;
}
.blog-card-v:hover { box-shadow: 0 4px 20px rgba(74,42,106,0.08); }
.blog-card-img {
  background: var(--bg-alt);
  height: 160px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.blog-card-img-inner {
  font-family: 'Noto Serif SC', serif;
  font-weight: 300; font-size: 3rem;
  letter-spacing: 0.1em;
  color: rgba(74,42,106,0.15);
}
.blog-card-body {
  padding: 24px 24px 28px;
  display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.blog-card-meta { display: flex; align-items: center; gap: 12px; }
.blog-date { color: var(--ink-muted); }
.blog-card-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 15px; font-weight: 300;
  letter-spacing: 0.06em; line-height: 1.65; color: var(--ink);
}
.blog-card-link {
  font-size: 14px; letter-spacing: 0.08em;
  color: var(--teal); text-decoration: none;
  border-bottom: 1px solid rgba(58,122,128,0.25);
  padding-bottom: 2px; align-self: flex-start;
  transition: color 0.2s;
}
.blog-card-link:hover { color: var(--teal-light); }
.blog-footer-link { text-align: center; margin-top: 40px; }
.blog-all-link {
  font-size: 14px; letter-spacing: 0.1em;
  color: var(--ink-muted); text-decoration: none;
  border-bottom: 1px solid var(--border); padding-bottom: 2px;
  transition: color 0.2s;
}
.blog-all-link:hover { color: var(--ink); }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-header { margin-bottom: 48px; }
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; cursor: pointer;
  font-family: 'Noto Serif SC', serif;
  font-size: 16px; font-weight: 300;
  letter-spacing: 0.06em; color: var(--ink);
  list-style: none; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--teal);
  transition: transform 0.3s, background 0.2s;
}
details[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--teal); color: #fff; border-color: var(--teal);
}
details[open] summary { color: var(--teal); }
.faq-answer { padding: 0 0 24px; color: var(--ink-light); max-width: 66ch; }

/* ══════════════════════════════
   FOOTER D — 居中极简
══════════════════════════════ */
.footer {
  background: var(--bg-dark);
  padding: 64px 0 40px;
  border-top: 1px solid var(--border-dark);
  text-align: center;
}
.footer-center { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.footer-logo {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px; font-weight: 300; letter-spacing: 0.08em;
  color: var(--on-dark); text-decoration: none;
}
.footer-logo span { color: var(--bronze-light); }
.footer-desc { color: var(--on-dark-muted); max-width: 38ch; }
.footer-nav-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  width: 100%;
}
.footer-nav-row a {
  font-size: 14px; font-weight: 300; letter-spacing: 0.04em;
  color: var(--on-dark-muted); text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-row a:hover { color: var(--on-dark); }
.footer-divider { height: 1px; background: var(--border-dark); width: 100%; }
.footer-bottom {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  width: 100%;
}
.footer-copy { color: var(--on-dark-faint); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-legal a {
  font-size: 14px; color: var(--on-dark-faint); text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--on-dark-muted); }
.footer-adult {
  width: 100%; text-align: center;
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  color: var(--on-dark-faint);
}

/* ══════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  .hero-section { grid-template-columns: 1fr; }
  .hero-exhibit { display: none; }
  .hero-content { padding: 120px 40px 64px; }
  .hero-content::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-h-card { grid-template-columns: 64px 1fr; gap: 24px; }
  .profiles-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 320px 220px;
  }
  .profile-card-tall { grid-row: span 1; }
  .profile-card-wide { grid-column: span 2; }
  .blog-grid-3 { grid-template-columns: 1fr 1fr; }
  .trust-sidebar { grid-template-columns: 1fr; gap: 40px; }
}

/* ══════════════════════════════
   RESPONSIVE — 767px (MOBILE)
══════════════════════════════ */
@media (max-width: 767px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }

  /* Nav */
  #navbar { background: rgba(26, 16, 40, 0.96); backdrop-filter: blur(8px); }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 0 20px; }

  /* Hero */
  .hero-exhibit { display: none; }
  .hero-section { grid-template-columns: 1fr; }
  .hero-content { padding: 100px 20px 56px; }
  .hero-title { font-size: clamp(1.875rem, 7vw, 2.5rem); }
  .hero-cta { flex-direction: column; align-items: stretch; margin-bottom: 24px; }
  .hero-cta .btn-primary, .hero-cta .btn-text { text-align: center; }
  .btn-primary, .btn-text, .btn-cta, .btn-vip { min-height: 48px; }

  /* Trust Strip D → 2×2 grid */
  .trust-sidebar { grid-template-columns: 1fr; gap: 32px; }
  .trust-nums-side { display: grid; grid-template-columns: 1fr 1fr; }
  .trust-num-item { border-right: 1px solid var(--border); padding: 16px 0; }
  .trust-num-item:nth-child(even) { border-right: none; padding-left: 16px; }
  .trust-num-big { font-size: 2rem; min-width: auto; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Services */
  .service-h-card { grid-template-columns: 56px 1fr; gap: 16px; padding: 28px 0; }
  .service-h-num { font-size: 2.5rem; }
  .service-vip { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }

  /* Profiles */
  .profiles-bento {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 240px);
  }
  .profile-card-tall, .profile-card-wide { grid-row: auto; grid-column: auto; }
  .profiles-cta-bar { flex-direction: column; gap: 16px; text-align: center; padding: 24px; }
  .profiles-cta-bar .btn-primary { width: 100%; text-align: center; }

  /* Blog */
  .blog-grid-3 { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-list { max-width: 100%; }

  /* Footer */
  .footer-nav-row { gap: 16px; }
  .footer-legal { gap: 12px; }

  /* CTA */
  .cta-group { flex-direction: column; align-items: stretch; }
  .cta-group .btn-cta { text-align: center; }
}
