/*
 * 富爱俱乐部 · 上海落地页
 * 设计风格：极简编辑感 · 国际摩登 · 香槟金调性
 * 参考：LVMH Shanghai · Lane Crawford · 恒隆广场
 * 主色：#0d1320 深夜蓝 / #c9a96e 香槟金 / #f8f6f0 暖奶白
 */

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { display: block; max-width: 100%; }

/* ─── Color Tokens ─── */
:root {
  --bg:          #f8f6f0;
  --bg-alt:      #f0ede5;
  --bg-dark:     #0d1320;
  --bg-mid:      #111827;
  --gold:        #c9a96e;
  --gold-light:  #e0c090;
  --gold-dark:   #9a7840;
  --ink:         #0d1117;
  --ink-light:   #374151;
  --ink-muted:   #6b7280;
  --ink-faint:   #9ca3af;
  --border:      #e8e2d8;
  --border-dark: #1e293b;
  --on-dark:     rgba(248,246,240,0.90);
  --on-dark-muted: rgba(248,246,240,0.55);
  --on-dark-faint: rgba(248,246,240,0.28);
}

/* ─── Typography ─── */
.t-label {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
}

.t-hero {
  font-family: 'Noto Serif SC', serif;
  font-weight: 300;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  line-height: 1.25;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.t-hero-accent {
  color: var(--gold);
  display: block;
}

.t-h2 {
  font-family: 'Noto Serif SC', serif;
  font-weight: 300;
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.t-h3 {
  font-family: 'Noto Serif SC', serif;
  font-weight: 400;
  font-size: 1.0625rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  line-height: 1.5;
}

.t-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.95;
  letter-spacing: 0.02em;
  color: var(--ink-light);
}

.t-small {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
  line-height: 1.85;
}

.t-num {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  color: var(--gold);
}

/* ─── Layout ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.section      { padding: 72px 0; border-top: 1px solid var(--border); }
.section-sm   { padding: 48px 0; border-top: 1px solid var(--border); }
.section-alt  { background: var(--bg-alt); }

/* ─── Divider ─── */
.divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  display: block;
}

.divider-full {
  width: 100%;
  height: 1px;
  background: var(--border);
  display: block;
}

/* ─── Editorial Card (replaces glassmorphism) ─── */
.glass-card,
.editorial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(13,17,32,0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.glass-card:hover,
.editorial-card:hover {
  box-shadow: 0 6px 32px rgba(13,17,32,0.08);
  transform: translateY(-2px);
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--bg-dark);
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.12em;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  text-align: center;
  min-height: 44px;
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201,169,110,0.25);
  color: var(--bg-dark);
}

.btn-ghost {
  display: inline-block;
  padding: 13px 32px;
  background: transparent;
  color: var(--ink);
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.12em;
  border-radius: 2px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  text-align: center;
  min-height: 44px;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.btn-link {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  display: inline-block;
}
.btn-link:hover { border-color: var(--gold-dark); }

/* ─── NAV ─── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248,246,240,0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo-text {
  font-family: 'Noto Serif SC', serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--ink);
}

.nav-sep {
  width: 1px;
  height: 14px;
  background: var(--ink-faint);
}

.nav-city {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--ink-light);
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a.btn-primary { color: #fff; }
.nav-links a.btn-primary:hover { color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--ink);
}

.nav-mobile {
  display: none;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.nav-mobile.is-open { display: block; }

.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nav-mobile-links a {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--ink-light);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 70% 30%, rgba(201,169,110,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* 上海专属大字水印装饰 */
.hero-bg::after {
  content: 'SH';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Noto Sans SC', sans-serif;
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(201,169,110,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}

.hero-eyebrow  { margin-bottom: 32px; }
.hero-title    { margin-bottom: 24px; }
.hero-divider  { width: 32px; height: 1px; background: var(--gold); margin-bottom: 24px; }
.hero-body     { margin-bottom: 40px; max-width: 42ch; }
.hero-cta      { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-footnote { margin-top: 24px; }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card-main { overflow: hidden; }

.hero-card-body {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

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

.stat-card { padding: 20px 24px; }
.stat-num {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--gold);
  display: block;
  margin: 4px 0;
}

/* ─── TRUST STRIP — 变体 C：深色双列带序号 ─── */
.trust-strip {
  background: var(--bg-dark);
  padding: 0;
}

.trust-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-dark);
}

.trust-cell {
  background: var(--bg-dark);
  padding: 48px 56px;
  border-top: 2px solid var(--gold);
}

.trust-cell-seq {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 300;
}

.trust-num {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: 2.75rem;
  color: var(--on-dark);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.trust-label {
  color: var(--on-dark-muted);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-feature-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.about-feature-item:first-child { border-top: 1px solid var(--border); }

.about-feature-num {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.375rem;
  color: var(--gold);
  line-height: 1;
  padding-top: 3px;
  flex-shrink: 0;
  width: 28px;
}

/* ─── SERVICES ─── */
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.service-card { padding: 40px 32px; }

.service-card-dark {
  background: var(--bg-mid);
  border-radius: 12px;
  border: 1px solid var(--border-dark);
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.service-vip {
  background: linear-gradient(135deg, var(--bg-mid) 0%, #0a1628 100%);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 12px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ─── PROFILES ─── */
.profiles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.profiles-bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.profile-card-tall { grid-row: span 2; overflow: hidden; }

.profile-img {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-img-placeholder {
  font-family: 'Noto Serif SC', serif;
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--ink-faint);
}

.profile-card-body { padding: 20px 24px; }

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.profile-tag {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ink-light);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 4px;
}

.profiles-cta-bar {
  margin-top: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-num { color: var(--gold-dark); font-weight: 400; }

/* ─── BLOG ─── */
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin-bottom: 16px;
}

.blog-featured-img {
  min-height: 240px;
  background: var(--bg-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px 0 0 12px;
}

.blog-featured-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.blog-card { padding: 32px; }

/* ─── CITY STRIP ─── */
.city-strip { background: var(--bg-alt); }

.city-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}
.city-links a {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-light);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.city-links a:hover { color: var(--gold-dark); }

/* ─── FAQ ─── */
.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
details[open] .faq-q { color: var(--gold-dark); }
details[open] .faq-q::after { transform: rotate(45deg); }

.faq-a {
  padding: 0 0 24px;
  max-width: 62ch;
  line-height: 1.95;
  color: var(--ink-light);
}

/* ─── FOOTER — 变体 B：宽logo+三列（1.5fr+3×1fr）─── */
.footer {
  background: var(--bg-dark);
  padding: 64px 0 40px;
}

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

.footer-logo {
  font-family: 'Noto Serif SC', serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--on-dark);
  margin-bottom: 14px;
}

.footer-col-title { color: var(--on-dark-faint); margin-bottom: 16px; }

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: var(--on-dark-muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ─── HERO CENTER LAYOUT ─── */
.hero-center {
  position: relative;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-center .hero-eyebrow { margin-bottom: 28px; }
.hero-center .hero-title   { margin-bottom: 24px; }
.hero-center .hero-divider { margin: 0 auto 24px; }
.hero-center .hero-body    { margin-bottom: 40px; max-width: 48ch; text-align: center; }
.hero-center .hero-cta     { justify-content: center; }

/* Hero stat row — clean editorial style */
.hero-stat-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 56px;
  width: 100%;
  max-width: 640px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
}

.hero-stat-item {
  flex: 1;
  padding: 24px 32px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.hero-stat-item:hover { transform: none; box-shadow: none; }

.hero-stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.hero-stat-num {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}

.hero-stat-label { color: var(--ink-muted); font-size: 13px; }

/* ─── ABOUT NEW LAYOUT ─── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.about-title { margin-top: 16px; }

.about-intro-body { grid-column: 1 / -1; }

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.about-feature-card {
  background: var(--bg);
  padding: 32px 28px;
  position: relative;
}

.about-feature-card .about-feature-num {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}

/* ─── SERVICES ROWS LAYOUT ─── */
.services-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: start;
  gap: 32px;
  padding: 36px 40px;
  border-radius: 12px;
}

.service-row-dark {
  background: var(--bg-mid);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
}

.service-row-num {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
  opacity: 0.35;
}

.service-row-num-light { color: var(--gold-light); }

.service-row-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-row-tags li {
  border: 1px solid var(--border);
  padding: 3px 12px;
  border-radius: 4px;
  color: var(--ink-muted);
}

.service-row-tags-light li {
  border-color: rgba(201,169,110,0.2);
  color: rgba(248,246,240,0.5);
}

.services-rows .service-vip { margin-top: 4px; }

/* ─── PROFILES SHOWCASE LAYOUT ─── */
.profiles-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.profile-featured { overflow: hidden; }

.profiles-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.profile-side-card { overflow: hidden; }

/* ─── BLOG THREE-COL ─── */
.blog-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.blog-card-v2 { padding: 32px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1023px) {
  .container { padding: 0 28px; }
  .hero-stat-row { max-width: 100%; }
  .about-intro { grid-template-columns: 1fr; gap: 32px; }
  .service-row { grid-template-columns: 56px 1fr; gap: 20px; padding: 28px 32px; }
  .profiles-showcase { grid-template-columns: 1fr 1fr; }
  .blog-three-col { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 767px) {
  html { font-size: 15px; }
  .container { padding: 0 20px; }
  .section    { padding: 48px 0; }
  .section-sm { padding: 36px 0; }

  /* Nav */
  .nav-links  { display: none; }
  .nav-toggle { display: block; }

  /* Hero */
  .hero-center { padding-top: 48px; padding-bottom: 48px; }
  .hero-center .hero-eyebrow { margin-bottom: 16px; }
  .hero-center .hero-body { margin-bottom: 28px; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-cta .btn-primary,
  .hero-cta .btn-ghost { width: 100%; padding: 16px 20px; text-align: center; }
  .hero-stat-row { flex-direction: column; border-radius: 12px; margin-top: 36px; }
  .hero-stat-item { padding: 18px 24px; }
  .hero-stat-divider { width: 100%; height: 1px; align-self: auto; }

  /* Trust — 手机端保持 2×2 */
  .trust-cell { padding: 32px 28px; }

  /* About */
  .about-intro { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; margin-bottom: 32px; }
  .about-features-grid { grid-template-columns: 1fr; }

  /* Services */
  .service-row { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .service-row-num { font-size: 2rem; }
  .service-vip { flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 24px; }
  .service-vip .btn-primary { width: 100%; text-align: center; }

  /* Profiles */
  .profiles-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .profiles-showcase { grid-template-columns: 1fr; }
  .profiles-side { grid-template-columns: 1fr 1fr; }
  .profiles-cta-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
  }
  .profiles-cta-bar .btn-primary { width: 100%; text-align: center; }

  /* Blog */
  .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .blog-three-col { grid-template-columns: 1fr; }
  .blog-card-v2 { padding: 24px; }

  /* City strip */
  .city-links { gap: 12px 24px; }

  /* Footer */
  .footer { padding: 48px 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Buttons */
  .about-grid .btn-primary { width: 100%; text-align: center; }
}

@media (max-width: 479px) {
  .profiles-side { grid-template-columns: 1fr; }
  .about-features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .blog-three-col { grid-template-columns: 1fr; }
  .trust-grid-2x2 { grid-template-columns: 1fr; }
}

/* ─── Adult notice ─── */
.footer-adult{font-size:14px;color:var(--on-dark-faint);text-align:center;width:100%}
