/* Aevum Group Inc — Warm boutique advisory */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --purple: #9B4E31;
  --purple-dark: #7A3A22;
  --purple-glow: rgba(155,78,49,0.28);
  --dark: #2C2420;
  --dark-2: #3E342F;
  --dark-3: #524840;
  --white: #ffffff;
  --sand: #F5F0EB;
  --warm: #FDF9F6;
  --gray-50: #F8F5F2;
  --gray-100: #EBE4DC;
  --gray-200: #D4C9BE;
  --text: #2C2420;
  --text-muted: #6B5E54;
  --font: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --wide: 1180px;
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 16px; line-height: 1.65; color: var(--text); background: var(--warm); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.ag-wrap { max-width: var(--wide); margin: 0 auto; padding: 0 24px; }

@keyframes ag-fade-up { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ag-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.ag-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.ag-reveal.visible { opacity: 1; transform: translateY(0); }

/* Header */
.ag-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 76px; display: flex; align-items: center;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.ag-header.scrolled {
  background: rgba(253,249,246,0.96); backdrop-filter: blur(14px);
  border-bottom-color: var(--gray-100);
  box-shadow: 0 4px 24px rgba(44,36,32,0.06);
}
.ag-header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px; width: 100%;
  display: flex; align-items: center; gap: 6px;
}
.ag-logo img { height: 28px; transition: filter 0.35s; }
.ag-header:not(.scrolled) .ag-logo img { filter: brightness(0) invert(1); opacity: 0.95; }
.ag-nav { display: flex; align-items: center; margin-left: 24px; flex: 1; gap: 0; }
.ag-nav-item { position: relative; }
.ag-nav-item > a, .ag-nav-item > span {
  display: block; padding: 10px 14px; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.92); cursor: pointer; transition: color 0.25s;
}
.ag-header.scrolled .ag-nav-item > a,
.ag-header.scrolled .ag-nav-item > span { color: var(--text); }
.ag-nav-item > a:hover, .ag-nav-item:hover > span { color: var(--purple); }

.ag-mega {
  position: absolute; top: 100%; left: 0; min-width: 500px;
  background: var(--white); box-shadow: 0 24px 60px rgba(44,36,32,0.14);
  border: 1px solid var(--gray-100); padding: 24px 28px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.22s var(--ease); z-index: 200;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.ag-nav-item:hover .ag-mega { opacity: 1; visibility: visible; transform: none; }
.ag-mega-col h4 {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--purple); margin-bottom: 10px;
}
.ag-mega-col a {
  display: block; padding: 6px 0; font-size: 14px; font-weight: 500; color: var(--text);
  transition: color 0.2s, padding-left 0.2s;
}
.ag-mega-col a:hover { color: var(--purple); padding-left: 4px; }

.ag-dropdown {
  position: absolute; top: 100%; left: 0; min-width: 210px;
  background: var(--white); box-shadow: 0 16px 44px rgba(44,36,32,0.12);
  border: 1px solid var(--gray-100); padding: 6px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.22s; z-index: 200;
}
.ag-nav-item:hover .ag-dropdown { opacity: 1; visibility: visible; transform: none; }
.ag-dropdown a { display: block; padding: 10px 18px; font-size: 14px; color: var(--text); }
.ag-dropdown a:hover { background: var(--sand); color: var(--purple); }

.ag-header-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.ag-header-link {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.92); padding: 8px 12px;
  transition: color 0.25s;
}
.ag-header.scrolled .ag-header-link { color: var(--text); }
.ag-header-link:hover { color: var(--purple); }
.ag-menu-btn {
  display: none; font-size: 14px; font-weight: 700; color: var(--white); padding: 8px 12px;
  transition: color 0.25s;
}
.ag-header.scrolled .ag-menu-btn { color: var(--text); }

.ag-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 13px; letter-spacing: 0.04em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: all 0.3s var(--ease); white-space: nowrap;
}
.ag-btn-purple {
  background: var(--purple); color: var(--white) !important; padding: 12px 26px;
}
.ag-btn-purple:hover { background: var(--purple-dark); box-shadow: 0 10px 28px var(--purple-glow); transform: translateY(-2px); }
.ag-btn-outline {
  background: transparent; color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.55); padding: 10px 24px;
}
.ag-btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.ag-header.scrolled .ag-btn-outline {
  color: var(--dark) !important; border-color: var(--gray-200);
}
.ag-header.scrolled .ag-btn-outline:hover { border-color: var(--purple); color: var(--purple) !important; background: transparent; }
.ag-btn-dark { background: var(--dark); color: var(--white) !important; padding: 12px 26px; }
.ag-btn-dark:hover { background: var(--dark-2); }
.ag-btn-lg { padding: 14px 32px; font-size: 13px; }

/* Drawer */
.ag-drawer { position: fixed; inset: 0; z-index: 950; pointer-events: none; }
.ag-drawer.open { pointer-events: auto; }
.ag-drawer-bg { position: absolute; inset: 0; background: rgba(44,36,32,0.5); opacity: 0; transition: opacity 0.3s; }
.ag-drawer.open .ag-drawer-bg { opacity: 1; }
.ag-drawer-panel {
  position: absolute; top: 0; right: 0; width: min(360px, 90vw); height: 100%;
  background: var(--warm); color: var(--text); padding: 24px; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.35s var(--ease);
  border-left: 1px solid var(--gray-100);
}
.ag-drawer.open .ag-drawer-panel { transform: none; }
.ag-drawer-close { font-size: 28px; color: var(--text); margin-bottom: 16px; }
.ag-drawer-group { margin-bottom: 22px; }
.ag-drawer-group h3 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--purple); margin-bottom: 8px; }
.ag-drawer-group a { display: block; padding: 11px 0; font-size: 15px; font-weight: 600; border-bottom: 1px solid var(--gray-100); }

/* Hero — centered cinematic */
.ag-hero {
  position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center;
  background: var(--dark); overflow: hidden; text-align: center;
}
.ag-hero-media { position: absolute; inset: 0; }
.ag-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.ag-hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,36,32,0.55) 0%, rgba(44,36,32,0.82) 55%, rgba(44,36,32,0.92) 100%);
}
.ag-hero-content {
  position: relative; z-index: 3; padding: 120px 24px 80px; max-width: 820px; margin: 0 auto;
}
.ag-hero-tag {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--sand); margin-bottom: 22px;
  padding: 8px 18px; border: 1px solid rgba(255,255,255,0.25); border-radius: 999px;
  animation: ag-fade-up 0.7s var(--ease) 0.1s both;
}
.ag-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700; line-height: 1.08; color: var(--white);
  margin-bottom: 24px; letter-spacing: -0.02em;
  animation: ag-fade-up 0.8s var(--ease) 0.22s both;
}
.ag-hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.78);
  max-width: 620px; margin: 0 auto 36px; line-height: 1.75;
  animation: ag-fade-up 0.8s var(--ease) 0.35s both;
}
.ag-hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  animation: ag-fade-up 0.8s var(--ease) 0.48s both;
}
.ag-hero-line, .ag-hero-orbs { display: none; }

/* Pill bar */
.ag-trust-bar { padding: 0; background: var(--purple); overflow: hidden; }
.ag-trust-track {
  display: flex; width: max-content; animation: ag-marquee 35s linear infinite;
}
.ag-trust-track span {
  flex-shrink: 0; padding: 16px 36px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255,255,255,0.88);
}

/* Section */
.ag-section { padding: 96px 24px; }
.ag-section.dark { background: var(--dark); color: var(--white); }
.ag-section.gray { background: var(--sand); }
.ag-section-head { margin-bottom: 48px; }
.ag-section-head.center { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.ag-section-head h2 {
  font-family: var(--font-display); font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  font-weight: 700; line-height: 1.12; margin-bottom: 16px; letter-spacing: -0.02em;
}
.ag-section-head p { font-size: 16px; color: var(--text-muted); line-height: 1.7; }
.ag-section.dark .ag-section-head p { color: rgba(255,255,255,0.62); }
.ag-eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--purple); margin-bottom: 12px;
}

/* Insights */
.ag-insights { background: var(--warm); padding: 96px 0 0; }
.ag-insights-layout { display: grid; grid-template-columns: 340px 1fr; min-height: 480px; max-width: var(--wide); margin: 0 auto; padding: 0 24px; }
.ag-insights-nav { padding: 0 32px 48px 0; }
.ag-insights-nav h2 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--dark); margin-bottom: 32px;
}
.ag-insight-tab {
  display: block; width: 100%; text-align: left; padding: 18px 20px; margin-bottom: 8px;
  border: 1px solid transparent; border-radius: 4px; cursor: pointer;
  transition: all 0.3s; background: transparent;
}
.ag-insight-tab span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--purple); display: block; margin-bottom: 6px; }
.ag-insight-tab strong { font-size: 15px; font-weight: 600; color: var(--text-muted); line-height: 1.45; display: block; transition: color 0.3s; }
.ag-insight-tab.active { background: var(--white); border-color: var(--gray-100); box-shadow: 0 8px 32px rgba(44,36,32,0.06); }
.ag-insight-tab.active strong, .ag-insight-tab:hover strong { color: var(--dark); }
.ag-insight-panel { display: none; position: relative; overflow: hidden; border-radius: 6px 6px 0 0; }
.ag-insight-panel.active { display: block; }
.ag-insight-panel img { width: 100%; height: 100%; object-fit: cover; min-height: 480px; }
.ag-insight-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(44,36,32,0.92) 0%, rgba(44,36,32,0.2) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 44px;
}
.ag-insight-overlay p { font-size: 16px; color: rgba(255,255,255,0.9); max-width: 440px; line-height: 1.7; margin-bottom: 18px; }
.ag-link { font-size: 14px; font-weight: 700; color: var(--purple); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; text-transform: uppercase; letter-spacing: 0.04em; font-size: 12px; }
.ag-link:hover { gap: 12px; color: var(--purple-dark); }
.ag-section.dark .ag-link { color: var(--purple); }
.ag-link-white { color: var(--white) !important; }
.ag-link-white:hover { color: var(--sand) !important; }

/* Services — image overlay cards */
.ag-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ag-service {
  position: relative; display: block; overflow: hidden; border-radius: 6px;
  min-height: 320px; transition: transform 0.35s var(--ease);
}
.ag-service:hover { transform: translateY(-6px); }
.ag-service-img { position: absolute; inset: 0; }
.ag-service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.ag-service:hover .ag-service-img img { transform: scale(1.06); }
.ag-service-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(44,36,32,0.94) 0%, rgba(44,36,32,0.35) 55%, rgba(44,36,32,0.15) 100%);
  transition: opacity 0.35s;
}
.ag-service:hover .ag-service-img::after { opacity: 0.95; }
.ag-service-body {
  position: absolute; inset: 0; z-index: 2; padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.ag-service-body h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.ag-service-body p { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.55; margin-bottom: 14px; }
.ag-service-body .ag-link { color: var(--sand) !important; }
.ag-service-body .ag-link:hover { color: var(--white) !important; }

/* Value band */
.ag-value-band {
  position: relative; padding: 88px 24px; overflow: hidden;
  background: var(--dark); border-top: 4px solid var(--purple); border-bottom: 4px solid var(--purple);
}
.ag-value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; position: relative; z-index: 2; }
.ag-value-item strong {
  display: block; font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.ag-value-item span { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* Carousel */
.ag-carousel-wrap { position: relative; overflow: hidden; border-radius: 8px; background: var(--white); box-shadow: 0 16px 48px rgba(44,36,32,0.08); }
.ag-carousel { display: flex; transition: transform 0.55s var(--ease); }
.ag-carousel-slide { flex: 0 0 100%; display: grid; grid-template-columns: 1.15fr 1fr; min-height: 420px; }
.ag-carousel-slide img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.ag-carousel-text {
  padding: 44px 36px; display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.ag-carousel-text h3 {
  font-family: var(--font-display); font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 700; margin-bottom: 14px; line-height: 1.25; color: var(--dark);
}
.ag-carousel-text p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.ag-carousel-controls { display: flex; gap: 10px; margin-top: 28px; justify-content: center; }
.ag-carousel-btn {
  width: 46px; height: 46px; border: 2px solid var(--gray-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: all 0.3s; background: var(--white); color: var(--dark);
}
.ag-carousel-btn:hover { border-color: var(--purple); color: var(--purple); background: rgba(155,78,49,0.06); }
.ag-carousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.ag-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gray-200);
  transition: all 0.3s; cursor: pointer;
}
.ag-carousel-dot.active { background: var(--purple); width: 26px; border-radius: 4px; }

/* Quote */
.ag-quote-band { position: relative; padding: 88px 24px; text-align: center; overflow: hidden; }
.ag-quote-bg { position: absolute; inset: 0; background: url('../images/home-quote.jpg') center/cover; }
.ag-quote-bg::after { content: ''; position: absolute; inset: 0; background: rgba(44,36,32,0.88); }
.ag-quote-inner { position: relative; z-index: 2; max-width: 740px; margin: 0 auto; }
.ag-quote-inner blockquote {
  font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 600; line-height: 1.55; color: var(--white); margin-bottom: 22px;
}
.ag-quote-inner cite { font-size: 12px; font-weight: 700; color: var(--sand); font-style: normal; letter-spacing: 0.1em; text-transform: uppercase; }

/* News */
.ag-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ag-news {
  background: var(--white); padding: 28px 26px 32px; border-radius: 6px;
  border-left: 4px solid var(--gray-100); transition: all 0.3s;
}
.ag-news:hover { border-left-color: var(--purple); transform: translateY(-4px); box-shadow: 0 14px 40px rgba(44,36,32,0.08); }
.ag-news-date { font-size: 11px; font-weight: 700; color: var(--purple); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.ag-news h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; line-height: 1.4; margin-bottom: 10px; color: var(--dark); }
.ag-news p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* CTA */
.ag-cta { position: relative; padding: 96px 24px; text-align: center; overflow: hidden; }
.ag-cta-bg { position: absolute; inset: 0; background: url('../images/home-cta.jpg') center/cover; }
.ag-cta-bg::after { content: ''; position: absolute; inset: 0; background: rgba(155,78,49,0.88); mix-blend-mode: multiply; }
.ag-cta-bg::before { content: ''; position: absolute; inset: 0; background: rgba(44,36,32,0.45); z-index: 1; }
.ag-cta-inner { position: relative; z-index: 2; max-width: 580px; margin: 0 auto; }
.ag-cta h2 {
  font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.65rem);
  font-weight: 700; color: var(--white); margin-bottom: 16px;
}
.ag-cta p { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 30px; }
.ag-cta .ag-btn-purple { background: var(--white); color: var(--purple) !important; }
.ag-cta .ag-btn-purple:hover { background: var(--sand); color: var(--purple-dark) !important; }

/* Footer */
.ag-footer { background: var(--dark); color: rgba(255,255,255,0.52); padding: 64px 24px 28px; }
.ag-footer-grid {
  max-width: var(--wide); margin: 0 auto 44px;
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px;
}
.ag-footer-brand img { height: 28px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.88; }
.ag-footer-brand p { font-size: 14px; line-height: 1.65; max-width: 260px; }
.ag-footer-col h4 {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--white); margin-bottom: 14px;
}
.ag-footer-col a { display: block; font-size: 14px; padding: 5px 0; color: rgba(255,255,255,0.48); transition: color 0.2s; }
.ag-footer-col a:hover { color: var(--sand); }
.ag-footer-bottom {
  max-width: var(--wide); margin: 0 auto; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: 13px;
}
.ag-footer-bottom a { color: rgba(255,255,255,0.42); }
.ag-footer-bottom a:hover { color: var(--sand); }

/* Inner pages */
.ag-page-hero {
  background: var(--dark); padding: 136px 24px 68px; color: var(--white);
  border-bottom: 4px solid var(--purple);
}
.ag-page-hero h1 {
  font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 700; margin-bottom: 14px; letter-spacing: -0.02em;
}
.ag-page-hero p { font-size: 16px; color: rgba(255,255,255,0.62); max-width: 600px; line-height: 1.65; }
.ag-breadcrumb { font-size: 11px; font-weight: 700; color: var(--sand); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.ag-content { padding: 56px 24px 88px; background: var(--warm); }
.ag-content p { color: var(--text-muted); line-height: 1.75; max-width: 680px; margin-bottom: 16px; }
.ag-content img.hero-img { width: 100%; max-width: 860px; margin-bottom: 28px; border-radius: 6px; }
.ag-notice {
  display: inline-block; margin-top: 18px; padding: 12px 16px;
  background: var(--sand); font-size: 13px; font-weight: 600; color: var(--text-muted);
  border-left: 4px solid var(--purple); border-radius: 0 4px 4px 0;
}
.ag-form { max-width: 480px; }
.ag-form label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.04em; font-size: 11px; }
.ag-form input, .ag-form textarea, .ag-form select {
  width: 100%; padding: 14px 16px; margin-bottom: 16px; border: 1px solid var(--gray-200);
  font-family: var(--font); font-size: 15px; transition: border-color 0.3s; background: var(--white); border-radius: 4px;
}
.ag-form input:focus, .ag-form textarea:focus { outline: none; border-color: var(--purple); }
.ag-form textarea { min-height: 130px; resize: vertical; }
.ag-form-thanks { display: none; font-size: 14px; color: var(--purple); font-weight: 700; margin-top: 10px; }
.ag-form.sent .ag-form-thanks { display: block; }

.ag-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ag-card {
  overflow: hidden; background: var(--white); border-radius: 6px;
  border: 1px solid var(--gray-100); transition: all 0.35s var(--ease);
}
.ag-card:hover { box-shadow: 0 16px 44px rgba(44,36,32,0.1); transform: translateY(-4px); }
.ag-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform 0.45s; }
.ag-card:hover img { transform: scale(1.04); }
.ag-card-body { padding: 22px 24px 26px; }
.ag-card-body h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.ag-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* Rich inner-page content */
.ag-intro { font-size: 18px; color: var(--text); line-height: 1.75; max-width: 780px; margin-bottom: 36px; font-weight: 500; }
.ag-content img.hero-img { max-width: none; width: 100%; margin-bottom: 40px; }
.ag-article-grid { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.ag-article-main { max-width: none; }
.ag-article-main p { max-width: none; }
.ag-h2 {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 700;
  color: var(--dark); margin: 36px 0 14px; letter-spacing: -0.01em;
}
.ag-h2:first-child { margin-top: 0; }
.ag-h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin: 24px 0 10px; }
.ag-list { margin: 0 0 20px; padding-left: 0; list-style: none; }
.ag-list li {
  position: relative; padding: 10px 0 10px 22px; color: var(--text-muted);
  line-height: 1.65; border-bottom: 1px solid var(--gray-100);
}
.ag-list li:last-child { border-bottom: none; }
.ag-list li::before {
  content: ''; position: absolute; left: 0; top: 18px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--purple);
}
.ag-list-check li::before {
  content: '✓'; width: auto; height: auto; background: none;
  color: var(--purple); font-weight: 700; font-size: 13px; top: 10px;
}
.ag-sidebar { position: sticky; top: 96px; }
.ag-sidebar-box {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: 6px;
  padding: 24px 22px; margin-bottom: 16px;
}
.ag-sidebar-box h3 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--purple); margin-bottom: 14px;
}
.ag-sidebar-box p, .ag-sidebar-box li { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin-bottom: 8px; }
.ag-sidebar-box ul { list-style: none; padding: 0; margin: 0; }
.ag-sidebar-box li { padding: 6px 0; border-bottom: 1px solid var(--gray-100); }
.ag-sidebar-box li:last-child { border-bottom: none; }
.ag-stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0;
}
.ag-stat-box {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: 6px;
  padding: 22px 18px; text-align: center;
}
.ag-stat-box strong {
  display: block; font-family: var(--font-display); font-size: 1.75rem;
  font-weight: 700; color: var(--purple); margin-bottom: 6px;
}
.ag-stat-box span { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.ag-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 28px 0 32px; }
.ag-process-step {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: 6px; padding: 20px 16px;
}
.ag-process-step em {
  display: block; font-style: normal; font-size: 11px; font-weight: 700;
  color: var(--purple); letter-spacing: 0.06em; margin-bottom: 8px;
}
.ag-process-step strong { display: block; font-size: 14px; color: var(--dark); margin-bottom: 6px; }
.ag-process-step span { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.ag-pullquote {
  margin: 32px 0; padding: 28px 32px; background: var(--sand);
  border-left: 4px solid var(--purple); border-radius: 0 6px 6px 0;
}
.ag-pullquote p { font-family: var(--font-display); font-size: 1.15rem; color: var(--dark); line-height: 1.55; margin: 0 !important; max-width: none !important; }
.ag-pullquote cite { display: block; margin-top: 12px; font-size: 12px; font-weight: 700; color: var(--text-muted); font-style: normal; text-transform: uppercase; letter-spacing: 0.06em; }
.ag-related { margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--gray-100); }
.ag-related h2 { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 20px; color: var(--dark); }
.ag-related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.ag-related-links a {
  display: inline-block; padding: 10px 16px; background: var(--white);
  border: 1px solid var(--gray-100); border-radius: 4px; font-size: 13px; font-weight: 600;
  color: var(--text); transition: all 0.25s;
}
.ag-related-links a:hover { border-color: var(--purple); color: var(--purple); }
.ag-hub-intro { max-width: 720px; margin-bottom: 40px; }
.ag-hub-intro p { font-size: 17px; max-width: none; }
.ag-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0; }
.ag-value-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: 6px; padding: 24px 22px;
}
.ag-value-card h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 8px; color: var(--dark); }
.ag-value-card p { font-size: 14px; margin: 0; max-width: none; }
.ag-legal h2 { font-family: var(--font-display); font-size: 1.2rem; margin: 28px 0 10px; color: var(--dark); }
.ag-legal p, .ag-legal li { font-size: 14px; color: var(--text-muted); line-height: 1.75; max-width: 720px; }
.ag-legal ul { margin: 0 0 16px 20px; }
.ag-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.ag-contact-info h2 { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 16px; color: var(--dark); }
.ag-contact-info p { max-width: none; }

@media (max-width: 1024px) {
  .ag-insights-layout, .ag-carousel-slide { grid-template-columns: 1fr; }
  .ag-insights-nav { padding: 0 0 32px; }
  .ag-service-grid { grid-template-columns: repeat(2, 1fr); }
  .ag-value-grid, .ag-news-grid, .ag-card-grid { grid-template-columns: repeat(2, 1fr); }
  .ag-footer-grid { grid-template-columns: 1fr 1fr; }
  .ag-article-grid, .ag-contact-grid { grid-template-columns: 1fr; }
  .ag-sidebar { position: static; }
  .ag-process { grid-template-columns: repeat(2, 1fr); }
  .ag-stat-row, .ag-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ag-nav { display: none; }
  .ag-menu-btn { display: block; }
  .ag-header-link.hide-mobile, .ag-btn.hide-mobile { display: none; }
  .ag-hero { min-height: 85vh; }
  .ag-hero-content { padding: 110px 20px 64px; }
  .ag-section { padding: 72px 20px; }
  .ag-value-grid, .ag-news-grid, .ag-card-grid, .ag-footer-grid, .ag-service-grid { grid-template-columns: 1fr; }
  .ag-carousel-text { padding: 32px 24px; }
  .ag-insight-overlay { padding: 28px 22px; }
  .ag-service { min-height: 280px; }
  .ag-process, .ag-stat-row, .ag-values-grid { grid-template-columns: 1fr; }
}
