@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg: #f8f6f2;
  --bg-strong: #0f172a;
  --bg-deep: #0b1220;
  --surface: #ffffff;
  --surface-muted: #f2eee7;
  --text: #141a26;
  --text-soft: #4d5667;
  --line: #e6dfd3;
  --accent: #b08d57;
  --accent-deep: #8f6d3b;
  --success: #204738;
  --danger: #6a1f1f;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(12, 20, 35, 0.06);
  --shadow-md: 0 10px 32px rgba(12, 20, 35, 0.09);
  --shadow-lg: 0 20px 64px rgba(12, 20, 35, 0.14);
  --max: 1180px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at 0% 0%, rgba(176, 141, 87, 0.08) 0%, rgba(176, 141, 87, 0) 32%),
    radial-gradient(circle at 100% 2%, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0) 40%),
    var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-family: 'Cormorant Garamond', serif;
  color: var(--bg-deep);
}

p { margin: 0; color: var(--text-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
}

.section { padding: 88px 0; }
.section-tight { padding: 62px 0; }
.section-header {
  max-width: 760px;
  margin-bottom: 28px;
}
.section-header h2 {
  font-size: clamp(34px, 5vw, 56px);
}
.section-header p {
  margin-top: 10px;
  font-size: clamp(16px, 1.8vw, 19px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid rgba(176, 141, 87, 0.38);
  background: rgba(176, 141, 87, 0.11);
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.metric {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.metric .value {
  display: block;
  color: var(--bg-deep);
  font-size: 34px;
  font-weight: 700;
}
.metric .label {
  font-size: 14px;
  color: var(--text-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-h);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 223, 211, 0.8);
  background: rgba(248, 246, 242, 0.88);
  transition: box-shadow 0.28s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  width: min(var(--max), calc(100% - 42px));
  min-height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 198px;
}
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(176, 141, 87, 0.32);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(140deg, var(--bg-strong), var(--bg-deep));
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
}
.brand-title {
  display: block;
  font-size: 17px;
  color: var(--bg-deep);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand-sub {
  display: block;
  color: var(--text-soft);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-soft);
  transition: all 0.2s ease;
}
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--bg-deep);
  background: rgba(15, 23, 42, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 20px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--bg-deep);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: #111b32;
  transform: translateY(-1px);
}
.btn-accent {
  background: var(--accent);
  color: var(--bg-deep);
}
.btn-accent:hover {
  background: #c09c65;
  transform: translateY(-1px);
}
.btn-outline {
  border-color: var(--line);
  color: var(--bg-deep);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--bg-deep);
  padding: 8px 12px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 42px 42px, 42px 42px;
  opacity: 0.18;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 38px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(48px, 7vw, 78px);
  color: var(--bg-deep);
}
.hero p {
  margin-top: 18px;
  font-size: clamp(18px, 2vw, 21px);
  max-width: 60ch;
}
.hero-cta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-proof {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 10px;
}
.proof-chip {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 13px;
  color: var(--text-soft);
}

.hero-panel {
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--bg-strong), #111e38);
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(176, 141, 87, 0.35);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  position: relative;
}
.hero-panel h3 {
  color: #fff;
  font-size: 34px;
}
.hero-panel .line {
  margin-top: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}
.hero-panel ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.hero-panel li {
  font-size: 15px;
  display: flex;
  gap: 10px;
}
.hero-panel li span {
  color: var(--accent);
}
.hero-media {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(176, 141, 87, 0.35);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-media img {
  width: 100%;
  height: auto;
}
.hero-mini-badges {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.hero-mini-badges span {
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.76);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.card h3 {
  font-size: 31px;
}
.card h4 {
  font-size: 28px;
}
.card p {
  margin-top: 10px;
}

.service-card {
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(176, 141, 87, 0.55);
}
.service-card .chip {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(176, 141, 87, 0.14);
  color: var(--accent-deep);
}
.service-card .link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 14px;
}
.interactive-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.counter-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.counter-value {
  display: block;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--bg-deep);
}
.counter-label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-soft);
}
.progress-row {
  margin-top: 18px;
}
.progress-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
}
.progress-track {
  margin-top: 6px;
  border-radius: 999px;
  background: #ece5d8;
  height: 8px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #d7bc8d);
  transition: width 1s ease;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
}
.intro-split {
  align-items: stretch;
}
.intro-split > article {
  height: 100%;
}
.intro-panel {
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.intro-panel h2 {
  font-size: clamp(46px, 5.2vw, 64px);
  line-height: 1.05;
}
.intro-panel p {
  font-size: 22px;
  line-height: 1.55;
}
.intro-panel .kicker-list {
  margin-top: 8px;
  gap: 12px;
}
.intro-panel .kicker-list li {
  font-size: 20px;
}
.intro-image-card {
  padding: 14px;
}
.intro-image-card img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
}

.panel-dark {
  background: linear-gradient(160deg, var(--bg-strong), #10182c);
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(176, 141, 87, 0.34);
}
.panel-dark h3,
.panel-dark h2,
.panel-dark h4,
.panel-dark strong { color: #fff; }
.panel-dark p { color: rgba(255,255,255,0.75); }

.timeline {
  display: grid;
  gap: 12px;
}
.timeline .step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}
.timeline .dot {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--accent-deep);
  font-weight: 700;
}
.timeline .step h4 {
  font-size: 26px;
}

.trust-band {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(176, 141, 87, 0.4);
  background: linear-gradient(130deg, rgba(176, 141, 87, 0.12), rgba(176, 141, 87, 0.03));
}
.trust-band ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
}
.trust-band li {
  font-size: 15px;
  color: var(--bg-deep);
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  min-height: 108px;
  display: block;
}
.trust-band li a {
  display: block;
  margin-top: 6px;
  color: var(--bg-deep);
}
.support-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.support-showcase img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: #fff;
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.aid-strip {
  border: 1px solid rgba(176, 141, 87, 0.45);
  background: linear-gradient(130deg, rgba(176, 141, 87, 0.14), rgba(176, 141, 87, 0.05));
  border-radius: var(--radius);
  padding: 20px;
}
.aid-strip h3 {
  font-size: 34px;
}

.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.quote-card p {
  color: var(--text);
  font-size: 17px;
}
.quote-card .meta {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

.faq-list {
  display: grid;
  gap: 10px;
}
.faq-list details {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  padding: 16px 18px;
}
.faq-list summary {
  font-weight: 700;
  color: var(--bg-deep);
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p {
  margin-top: 9px;
  font-size: 15px;
}

form .field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--bg-deep);
  font-weight: 700;
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(176, 141, 87, 0.16);
}
textarea { min-height: 140px; resize: vertical; }

.note {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 8px;
}

.kicker-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}
.kicker-list li {
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.kicker-list li span {
  color: var(--accent-deep);
  font-weight: 700;
}

.page-hero {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.01));
  border-bottom: 1px solid var(--line);
  padding: 92px 0 70px;
}
.page-hero h1 {
  font-size: clamp(44px, 7vw, 74px);
}
.page-hero p {
  margin-top: 14px;
  font-size: 18px;
  max-width: 62ch;
}
.blog-hero {
  padding-bottom: 34px;
}
.section-blog-list {
  padding-top: 34px;
}

.cta-band {
  border-radius: var(--radius-lg);
  padding: 40px;
  background: linear-gradient(155deg, var(--bg-deep), #141f38);
  border: 1px solid rgba(176, 141, 87, 0.4);
  box-shadow: var(--shadow-lg);
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(34px, 4.2vw, 52px);
}
.cta-band p { color: rgba(255,255,255,0.8); margin-top: 11px; }
.cta-band .cta-row { margin-top: 18px; display: flex; gap: 12px; flex-wrap: wrap; }

.footer {
  margin-top: 88px;
  background: var(--bg-deep);
  color: rgba(255,255,255,0.78);
  border-top: 1px solid rgba(176, 141, 87, 0.32);
}
.footer-wrap {
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
  padding: 34px 0 26px;
}
.footer-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 0 0 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-eyebrow {
  background: rgba(176, 141, 87, 0.12);
  border-color: rgba(176, 141, 87, 0.4);
  color: #e4c58f;
}
.footer-topbar h3 {
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  margin-top: 10px;
}
.footer-topbar p {
  margin-top: 10px;
  max-width: 60ch;
  color: rgba(255,255,255,0.72);
}
.footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.25fr) repeat(4, minmax(150px, 1fr));
  gap: 26px;
  align-items: start;
}
.footer-brand {
  padding-right: 18px;
}
.footer-grid > div:not(.footer-brand) {
  min-width: 0;
}
.footer h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 14px;
}
.footer a {
  display: block;
  padding: 8px 0;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.45;
}
.footer a:hover { color: #fff; }
.footer .brand-mark { background: rgba(255,255,255,0.08); color: var(--accent); }
.footer .brand-logo {
  border-color: rgba(176, 141, 87, 0.55);
  background: rgba(255,255,255,0.08);
}
.footer .brand-title { color: #fff; }
.footer .brand-sub { color: rgba(255,255,255,0.72); }
.footer-meta {
  margin-top: 14px;
  font-size: 14px;
  max-width: 34ch;
}
.footer-contact-card {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(176, 141, 87, 0.28);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}
.footer-contact-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}
.footer-contact-phone {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.footer-contact-note {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.64);
}
.footer-aid-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(176, 141, 87, 0.12);
  color: rgba(255,255,255,0.84);
  font-size: 14px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
}

.sticky-consult {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 35;
  background: var(--accent);
  color: var(--bg-deep);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}
.sticky-consult:hover { background: #c09c65; }
.floating-actions {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 35;
  display: grid;
  gap: 8px;
}
.floating-actions a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  color: var(--bg-deep);
}
.floating-actions a:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  background: #fff;
  color: var(--text-soft);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.table th,
.table td {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
}
.table th { background: var(--surface-muted); color: var(--bg-deep); }

.map-embed {
  margin-top: 12px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.blog-discovery {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  margin-bottom: 18px;
}
.blog-discovery-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}
.blog-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 0 14px;
  min-height: 58px;
}
.blog-search-wrap span {
  font-size: 18px;
  line-height: 1;
}
.blog-search-wrap input {
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 12px 0;
  font-size: 19px;
}
.blog-search-wrap input:focus {
  border: 0;
  box-shadow: none;
}
.blog-clear-btn {
  min-height: 58px;
  min-width: 122px;
}
.blog-discovery-count {
  margin-top: 16px;
  color: #5f6e8a;
  font-size: 18px;
  font-weight: 600;
}
.blog-topic-chips {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.topic-chip {
  border: 1px solid #c9d3e7;
  background: #fff;
  color: #223252;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.topic-chip:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}
.topic-chip.is-active {
  border-color: rgba(176, 141, 87, 0.72);
  background: rgba(176, 141, 87, 0.14);
  color: var(--accent-deep);
}
.blog-empty {
  margin-top: 12px;
  color: var(--text-soft);
}
.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.blog-card h3 {
  font-size: 30px;
}
.blog-meta {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-soft);
}
.blog-card[hidden] {
  display: none !important;
}

.article-layout {
  display: grid;
  grid-template-columns: 304px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.article-toc {
  position: sticky;
  top: calc(var(--header-h) + 14px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 22px;
}
.article-toc h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--bg-deep);
}
.article-toc nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.article-toc a {
  color: #3a4863;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  display: block;
  padding: 4px 0;
  border-radius: 8px;
}
.article-toc a:hover,
.article-toc a.is-active {
  color: var(--bg-deep);
}
.article-toc-meta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.article-toc-meta div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
}
.article-toc-meta strong {
  display: block;
  color: var(--bg-deep);
  font-size: 20px;
  line-height: 1.1;
}
.article-toc-meta span {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
}
.article-prose {
  display: grid !important;
  gap: 14px !important;
}
.article-prose img {
  border-radius: 16px;
  border: 1px solid var(--line);
  max-height: 460px;
  object-fit: contain;
  object-position: center top;
  background: #f7f4ee;
}
.adv-home-image {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  object-position: center top;
  border-radius: 14px;
  background: #fff;
}
.article-prose h2 {
  scroll-margin-top: calc(var(--header-h) + 18px);
}
.article-prose h3 {
  margin-top: 6px;
}
.article-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}
.article-faq-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 18px 18px 16px;
}
.article-faq-card h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.18;
  color: var(--bg-deep);
}
.article-faq-card p {
  margin-top: 8px;
  font-size: 15px;
}
.article-conclusion-card {
  margin-top: 10px;
  border: 1px solid rgba(176, 141, 87, 0.42);
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(176, 141, 87, 0.11), rgba(176, 141, 87, 0.04));
  padding: 16px 18px;
}
.article-conclusion-card h2 {
  font-size: clamp(30px, 3.6vw, 42px);
}
.article-conclusion-card p {
  margin-top: 10px;
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .counter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .support-showcase {
    grid-template-columns: 1fr;
  }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-grid,
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-band ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { position: static; }
  .article-faq-grid { grid-template-columns: 1fr; }
  .adv-home-image { max-height: 500px; }
  .intro-image-card img { min-height: 560px; }

  .footer-topbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 860px) {
  .section { padding: 72px 0; }
  .section-tight { padding: 54px 0; }

  .menu-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(var(--header-h) - 4px);
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; }
  .nav-actions .btn-outline { display: none; }

  .hero {
    padding: 94px 0 72px;
  }
  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .hero-proof,
  .hero-mini-badges,
  .grid-2,
  .grid-3,
  .blog-grid,
  .counter-grid,
  .form .field-grid,
  form .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-band { padding: 28px; }
  .blog-discovery { padding: 20px; }
  .blog-discovery-top { grid-template-columns: 1fr; }
  .blog-search-wrap { min-height: 52px; }
  .blog-search-wrap input { font-size: 16px; }
  .blog-clear-btn {
    min-height: 44px;
    min-width: 0;
    width: 100%;
  }
  .blog-discovery-count { font-size: 15px; }
  .article-toc { padding: 18px; }
  .article-toc h3 { font-size: 30px; }
  .adv-home-image { max-height: 420px; }
  .intro-panel {
    padding: 24px;
  }
  .intro-panel h2 {
    font-size: clamp(36px, 9vw, 50px);
  }
  .intro-panel p {
    font-size: 18px;
  }
  .intro-panel .kicker-list li {
    font-size: 18px;
  }
  .intro-image-card img { min-height: 420px; }
  .footer-wrap {
    padding-top: 28px;
  }
  .footer-topbar {
    padding-bottom: 22px;
    margin-bottom: 22px;
  }
  .footer-actions {
    width: 100%;
  }
  .footer-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-contact-phone {
    font-size: 24px;
  }
  .floating-actions {
    display: none;
  }
  .sticky-consult {
    left: 12px;
    right: 12px;
    bottom: 10px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
