/* ============================================================
   HAIRLENZA · style.css — перенос дизайна Next/Tailwind версии
   Палитра и радиусы 1:1 из globals.css (oklch), шрифты те же.
   ============================================================ */

:root {
  --background: oklch(0.98 0.004 80);
  --foreground: oklch(0.18 0.01 60);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.18 0.01 60);
  --primary: oklch(0.25 0.02 60);
  --primary-foreground: oklch(0.97 0.006 80);
  --secondary: oklch(0.95 0.01 75);
  --muted: oklch(0.94 0.008 75);
  --muted-foreground: oklch(0.50 0.01 60);
  --accent: oklch(0.72 0.10 65);
  --border: oklch(0.90 0.01 75);
  --radius: 0.75rem;
  --lime: #c8e33a;
  --lime-hover: #d4ee44;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --maxw: 80rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

.ic { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.ic-sm { width: 1rem; height: 1rem; }
.ic-lg { width: 1.5rem; height: 1.5rem; }

/* ---------- Header ---------- */
.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 50; }
.site-header { /* якорь для выезжающего мобильного меню */ }
.header-inner { position: relative; }
.header-solid { position: sticky; top: 0; background: var(--background); border-bottom: 1px solid color-mix(in oklab, var(--border) 50%, transparent); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 1.25rem; padding-bottom: 1.25rem; }
.logo { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; letter-spacing: 0.025em; text-decoration: none; }
.header-hero .logo, .header-hero .main-nav a, .header-hero .header-social a { color: #fff; }
.header-hero .main-nav a { color: rgba(255,255,255,0.8); }
.header-hero .main-nav a:hover { color: #fff; }
.header-solid .main-nav a { color: var(--muted-foreground); }
.header-solid .main-nav a:hover { color: var(--foreground); }
.header-right { display: none; align-items: center; gap: 2rem; }
.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a { font-size: 0.875rem; font-weight: 500; text-decoration: none; transition: color 0.15s; }
.header-social { display: flex; align-items: center; gap: 0.75rem; }
.header-social a {
  display: flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); transition: border-color 0.15s, color 0.15s;
}
.header-solid .header-social a { border-color: var(--border); color: var(--muted-foreground); }
.header-solid .header-social a:hover { color: var(--foreground); }
.header-hero .header-social a { color: rgba(255,255,255,0.8); }
.header-hero .header-social a:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.menu-toggle { display: inline-flex; padding: 0.5rem; background: none; border: none; cursor: pointer; border-radius: 0.375rem; }
.header-hero .menu-toggle { color: #fff; }
.header-solid .menu-toggle { color: var(--foreground); }
.mobile-menu {
  position: absolute; left: 0.9rem; right: 0.9rem; top: calc(100% + 0.35rem);
  border-radius: 1rem; overflow: hidden;
  background: rgba(24,20,16,0.94); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  opacity: 0; transform: translateY(-8px); visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 60;
}
.mobile-menu.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
.header-solid .mobile-menu {
  background: var(--card); border-color: var(--border);
  box-shadow: 0 14px 34px rgba(0,0,0,0.14);
}
.mobile-menu nav { display: flex; flex-direction: column; padding: 0.5rem 0; }
.mobile-menu nav a {
  font-size: 1rem; font-weight: 500; text-decoration: none;
  color: rgba(255,255,255,0.9); padding: 0.85rem 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu nav a:last-child { border-bottom: none; }
.mobile-menu nav a:active { background: rgba(255,255,255,0.06); }
.header-solid .mobile-menu nav a { color: var(--foreground); border-bottom-color: color-mix(in oklab, var(--border) 55%, transparent); }
.header-solid .mobile-menu nav a:active { background: var(--secondary); }
.mobile-menu .header-social {
  padding: 0.9rem 1.4rem 1.1rem; gap: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .header-social a { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.18); }
.header-solid .mobile-menu .header-social { border-top-color: color-mix(in oklab, var(--border) 55%, transparent); }
.header-solid .mobile-menu .header-social a { color: var(--muted-foreground); border-color: var(--border); }
@media (min-width: 1024px) {
  .header-right { display: flex; }
  .menu-toggle, .mobile-menu { display: none !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.625rem;
  border-radius: 0.5rem; padding: 0.875rem 1.75rem;
  font-size: 0.875rem; font-weight: 600; text-decoration: none;
  border: none; cursor: pointer; transition: background 0.15s, color 0.15s, border-color 0.15s;
  font-family: var(--font-sans);
}
.btn-lime { background: var(--lime); color: #1a1a1a; }
.btn-lime:hover { background: var(--lime-hover); }
.btn-glass { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(6px); }
.btn-glass:hover { background: rgba(255,255,255,0.2); }
.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { background: color-mix(in oklab, var(--primary) 90%, black); }
.btn-outline { background: transparent; color: var(--foreground); border: 1px solid var(--border); }
.btn-outline:hover { background: var(--secondary); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-inverse { background: var(--primary-foreground); color: var(--primary); }
.btn-inverse:hover { background: color-mix(in oklab, var(--primary-foreground) 90%, black); }
.btn-outline-light { background: transparent; color: var(--primary-foreground); border: 1px solid color-mix(in oklab, var(--primary-foreground) 30%, transparent); }
.btn-outline-light:hover { background: color-mix(in oklab, var(--primary-foreground) 10%, transparent); }

/* ---------- Sections ---------- */
.section { padding: 6rem 0; }
@media (min-width: 768px) { .section { padding: 8rem 0; } }
.section-alt { background: color-mix(in oklab, var(--secondary) 50%, transparent); }
.section-line { border-top: 1px solid color-mix(in oklab, var(--border) 50%, transparent); }
.section-dark { background: var(--primary); color: var(--primary-foreground); }
.section-head { max-width: 48rem; margin: 0 auto; text-align: center; }
.eyebrow {
  margin: 0 0 1rem; font-size: 0.875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent);
}
h1, h2, h3 { margin: 0; font-family: var(--font-serif); letter-spacing: -0.01em; }
.section-head h2 { font-size: 2.25rem; font-weight: 700; text-wrap: balance; }
@media (min-width: 768px) { .section-head h2 { font-size: 3rem; } }
.section-sub { margin: 1rem auto 0; font-size: 1.125rem; color: var(--muted-foreground); text-wrap: pretty; }
.section-lead { margin: 2rem auto 0; font-size: 1.125rem; line-height: 1.7; color: var(--muted-foreground); }

/* ---------- Cards & grids ---------- */
.card {
  border-radius: 1rem; border: 1px solid color-mix(in oklab, var(--border) 50%, transparent);
  background: var(--card); padding: 2rem; box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.card-hover { transition: box-shadow 0.2s; }
.card-hover:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.08); }
.grid { display: grid; gap: 1.5rem; margin-top: 4rem; }
.grid-tight { gap: 1rem; margin-top: 3rem; }
@media (min-width: 640px) { .grid-2sm { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3md { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.icon-tile {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 0.75rem; background: var(--secondary);
  color: var(--accent); margin-bottom: 1.25rem;
}
.icon-tile-round { border-radius: 50%; }
.icon-tile-center { margin-left: auto; margin-right: auto; }
.card h3 { font-size: 1.125rem; font-weight: 600; }
.card .h3-lg { font-size: 1.5rem; }
.card p { margin: 0.5rem 0 0; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; object-fit: cover; object-position: top; width: 100%; height: 100%; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.hero-content { position: relative; z-index: 10; width: 100%; padding-top: 8rem; padding-bottom: 8rem; }
.hero-inner { max-width: 36rem; }
.hero h1 { font-size: 2.5rem; font-weight: 700; line-height: 1.15; color: #fff; }
@media (min-width: 768px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.5rem; } }
.hero-badge { display: inline-block; width: 2rem; height: 2rem; vertical-align: -0.2em; }
@media (min-width: 768px) { .hero-badge { width: 2.25rem; height: 2.25rem; } }
.hero-sub { margin: 1.5rem 0 0; max-width: 28rem; font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.7); }
@media (min-width: 768px) { .hero-sub { font-size: 1.125rem; } }
.hero-cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
/* Большая CTA под New Arrivals: в каталог */
.home-cta { text-align: center; margin-top: 2.6rem; }
.btn-xl { font-size: 1.05rem; padding: 1.05rem 2.8rem; }
.btn-xl .cta-arr { display: inline-block; margin-left: 0.45rem; transition: transform 0.16s ease; }
.btn-xl:hover .cta-arr { transform: translateX(4px); }
.btn-xl .cta-arr-l { margin-left: 0; margin-right: 0.45rem; }
.btn-xl:hover .cta-arr-l { transform: translateX(-4px); }
.item-back { margin-top: 3rem; }
@media (max-width: 480px) { .btn-xl { display: block; padding: 1rem 1.2rem; } }

.hero-proof { margin: 1.1rem 0 0; font-size: 0.85rem; color: rgba(255,255,255,0.78); }
.hero-proof::before { content: '\2014  '; opacity: 0.6; }
.hero-ig { margin-top: 2rem; font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.hero-ig a { color: rgba(200,227,58,0.8); text-underline-offset: 2px; }
.hero-ig a:hover { color: var(--lime); }

/* ---------- Checklist ---------- */
.check-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }
.check-dot {
  margin-top: 0.125rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: color-mix(in oklab, var(--accent) 20%, transparent); color: var(--accent);
}
.check-dot .ic { width: 0.75rem; height: 0.75rem; }

/* ---------- Steps (How it works) ---------- */
.steps { position: relative; max-width: 48rem; margin: 4rem auto 0; display: flex; flex-direction: column; gap: 3rem; }
.steps::before {
  content: ''; position: absolute; left: 23px; top: 0.5rem; bottom: 0.5rem;
  width: 1px; background: var(--border); display: none;
}
@media (min-width: 768px) { .steps::before { display: block; } }
.step { display: flex; gap: 1.5rem; }
.step-num {
  position: relative; z-index: 1; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 50%; border: 1px solid var(--border);
  background: var(--card); font-size: 0.875rem; font-weight: 700; color: var(--accent);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.step-body { padding-top: 0.5rem; }
.step-body h3 { font-size: 1.25rem; font-weight: 600; }
.step-body p { margin: 0.5rem 0 0; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }

/* ---------- FAQ (details/summary, без JS) ---------- */
.faq { max-width: 48rem; margin: 4rem auto 0; }
.faq details { border-bottom: 1px solid color-mix(in oklab, var(--border) 50%, transparent); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 0; cursor: pointer; list-style: none;
  font-size: 1rem; font-weight: 500; color: var(--foreground);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; flex-shrink: 0; width: 0.6rem; height: 0.6rem;
  border-right: 2px solid var(--muted-foreground); border-bottom: 2px solid var(--muted-foreground);
  transform: rotate(45deg); transition: transform 0.2s; margin-right: 0.2rem;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .faq-a { padding: 0 0 1rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }

/* ---------- Before / After slider ---------- */
.ba-wrap {
  position: relative; width: 100%; max-width: 48rem; margin: 0 auto;
  aspect-ratio: 4 / 5; border-radius: 1rem; overflow: hidden;
  cursor: col-resize; user-select: none; -webkit-user-select: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12); touch-action: none;
}
.ba-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before { overflow: hidden; position: absolute; inset: 0; width: 50%; }
.ba-before img { width: 100vw; max-width: 48rem; }
.ba-line { position: absolute; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.9); z-index: 10; transform: translateX(-50%); left: 50%; }
.ba-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 2.5rem; height: 2.5rem; background: #fff; border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center;
}
.ba-label {
  position: absolute; top: 1rem; z-index: 10; font-size: 0.75rem; font-weight: 500;
  color: #fff; background: color-mix(in oklab, var(--foreground) 70%, transparent);
  padding: 0.25rem 0.75rem; border-radius: 999px; backdrop-filter: blur(4px);
}
.ba-label-l { left: 1rem; } .ba-label-r { right: 1rem; }

/* ---------- Contact cards ---------- */
.contact-card {
  display: flex; align-items: center; gap: 1rem; text-decoration: none;
  border-radius: 0.75rem; border: 1px solid color-mix(in oklab, var(--border) 50%, transparent);
  background: var(--card); padding: 1.25rem; box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}
.contact-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.08); }
.contact-ico { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; }
.contact-ico.wa { background: #dcfce7; color: #16a34a; }
.contact-ico.tg { background: #dbeafe; color: #2563eb; }
.contact-ico.ig { background: #fce7f3; color: #db2777; }
.contact-ico.em { background: #fef3c7; color: #d97706; }
.contact-card > span:last-child { display: flex; flex-direction: column; min-width: 0; }
.contact-card .cc-t { display: block; font-size: 0.875rem; font-weight: 600; color: var(--foreground); }
.contact-card .cc-s { display: block; font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.2rem; overflow-wrap: anywhere; }

/* ---------- Dark CTA section ---------- */
.section-dark .section-head h2 { color: var(--primary-foreground); }
.section-dark .section-lead { color: color-mix(in oklab, var(--primary-foreground) 80%, transparent); }
.cta-buttons { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }

/* ---------- Facts / small feature rows ---------- */
.stat-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.stat-value { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; }
.stat-label { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.role-row { display: flex; align-items: center; gap: 1rem; border-radius: 0.75rem; border: 1px solid color-mix(in oklab, var(--border) 50%, transparent); background: var(--card); padding: 1.25rem; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.role-ico { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: var(--secondary); color: var(--accent); }
.role-row span { font-size: 0.875rem; font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid color-mix(in oklab, var(--border) 50%, transparent); background: var(--card); }
.site-footer .container { padding-top: 4rem; padding-bottom: 4rem; }
.footer-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-logo { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; }
.footer-note { margin: 1rem 0 0; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }
.footer-h { margin: 0; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-nav { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); }
.footer-nav a { color: var(--muted-foreground); text-decoration: none; transition: color 0.15s; }
.footer-nav a:hover { color: var(--foreground); }
.footer-nav p { margin: 0; }
.footer-nav p a { text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom {
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid color-mix(in oklab, var(--border) 50%, transparent);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.5rem;
  font-size: 0.75rem; color: var(--muted-foreground); text-align: center;
}
.footer-legal a { color: var(--muted-foreground); }
.footer-version { opacity: 0.55; }

/* ---------- Generic content page (privacy/terms) ---------- */
.page-plain { max-width: 48rem; margin: 0 auto; padding: 4rem 1.5rem 6rem; }
.page-plain h1 { font-size: 2.25rem; margin-bottom: 1rem; }
.page-plain h2 { font-size: 1.375rem; margin: 2rem 0 0.5rem; }
.page-plain p, .page-plain li { font-size: 0.95rem; line-height: 1.7; color: var(--muted-foreground); }
.page-plain .updated { font-size: 0.8rem; opacity: 0.7; }

/* ---------- Компактный hero (вариант B: витрина сверху) ---------- */
.hero-compact { min-height: auto; }
.hero-compact .hero-content { padding-top: 9rem; padding-bottom: 5rem; }
@media (min-width: 768px) { .hero-compact .hero-content { padding-top: 10rem; padding-bottom: 6rem; } }
.hero-compact .hero-sub { margin-top: 1.25rem; }
.hero-compact .hero-cta { margin-top: 2rem; }
.hero-compact .hero-ig { margin-top: 1.5rem; }


/* ---------- Hero-кнопки на телефоне ---------- */
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { justify-content: center; width: 16rem; max-width: 100%; }
}

/* ============ Мобильная полировка (общая) ============ */
@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .section-head h2 { font-size: 1.75rem; }
  .section-lead { font-size: 1rem; }
  .hero-compact .hero-content { padding-top: 7.5rem; padding-bottom: 3.5rem; }
  .hero h1 { font-size: 2.1rem; }
  .hero-sub { font-size: 0.95rem; }
  .grid { margin-top: 2.5rem; gap: 1rem; }
  .card { padding: 1.5rem; }
  .steps { margin-top: 2.5rem; gap: 2rem; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .footer-grid { gap: 2rem; }
  .site-footer .container { padding-top: 2.5rem; padding-bottom: 2.5rem; }
}

/* ---------- Второй (архивный) аккаунт ---------- */
.alt-acc { font-size: 0.8rem; opacity: 0.75; }
.hero-ig-alt { opacity: 0.7; }
.alt-acc-note {
  max-width: 34rem; margin: 1.25rem auto 0; text-align: center;
  font-size: 0.8rem; line-height: 1.6; color: var(--muted-foreground);
}
.alt-acc-note a { color: var(--foreground); text-underline-offset: 2px; }


/* ---------- Список с золотыми точками (What to send и т.п.) ---------- */
.dot-list li { position: relative; padding-left: 1.15rem; }
.dot-list li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 0.4rem; height: 0.4rem; border-radius: 50%;
  background: var(--accent);
}

/* ---- Guides ---- */
.guide-lead { font-size: 1.05rem; color: var(--ink-2); max-width: 620px; }
.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.guide-card { display: block; padding: 1.3rem 1.4rem; border: 1px solid var(--line); border-radius: 14px; background: var(--bg-card, #fff); text-decoration: none; color: inherit; transition: transform 0.12s, box-shadow 0.12s; }
.guide-card:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(60,45,30,0.08); }
.guide-card h2 { font-family: var(--font-serif); font-size: 1.15rem; margin: 0 0 0.45rem; line-height: 1.3; }
.guide-card p { font-size: 0.9rem; color: var(--ink-3); margin: 0 0 0.7rem; line-height: 1.5; }
.guide-more { font-size: 0.85rem; font-weight: 700; color: var(--accent); }
.guide-article article { max-width: 760px; }
.guide-article h2 { font-family: var(--font-serif); font-size: 1.35rem; margin: 1.6rem 0 0.5rem; }
.guide-article p { line-height: 1.7; color: var(--ink-2); }
.guide-article b { color: var(--ink-1); }
.guide-faq { margin-top: 2rem; padding-top: 0.5rem; border-top: 1px solid var(--line); }
.guide-faq details { border-bottom: 1px solid var(--line-1, #eee5d6); padding: 0.6rem 0; }
.guide-faq summary { cursor: pointer; font-weight: 600; }
.guide-cta { margin-top: 2rem; padding: 1.2rem 1.4rem; background: var(--bg-deep, #f4eee2); border-radius: 14px; }
.guide-cta p { margin: 0 0 0.7rem; }
.hero-badge { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 0.6rem; }
