/* advisorbriefs.com — web0510 batch */
/* Fonts: Plus Jakarta Sans + IBM Plex Mono */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --accent: #78716C;
  --accent-dark: #57534E;
  --accent-light: #F5F5F4;
  --gold: #A16207;
  --gold-light: #FEF3C7;
  --text-primary: #1C1917;
  --text-secondary: #78716C;
  --text-light: #A8A29E;
  --bg-white: #FFFFFF;
  --bg-light: #FAFAF9;
  --bg-muted: #F5F5F4;
  --border: #E7E5E4;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 24px rgba(0,0,0,.09);
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }
p { color: var(--text-secondary); line-height: 1.7; }
.lead { font-size: 1.1rem; color: var(--text-secondary); }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none; transition: all .2s ease;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); text-decoration: none; color: #fff; }
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent-light); text-decoration: none; }
.btn-white { background: #fff; color: var(--accent); }
.btn-white:hover { background: var(--accent-light); text-decoration: none; }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }

/* === NAV (A-simple) === */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

/* --- Nav aliases for blog/legal pages (added 2026-05-11) ---
   Frontend generated a 2nd nav structure for blog/*.html and legal/*.html
   (.site-header > .nav-container > .nav-menu + .nav-cta as siblings) with
   no CSS backing; elements stacked vertically. These rules mirror .site-nav
   layout so the same visual result renders across all pages. */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.nav-container .nav-logo {
  font-size: 20px; font-weight: 700; color: var(--text-primary);
  text-decoration: none; letter-spacing: -0.01em;
}
.nav-menu {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu a {
  color: var(--text-primary); font-weight: 500; font-size: 0.95rem;
  text-decoration: none;
}
.nav-menu a:hover,
.nav-menu a.nav-active { color: var(--accent); }
.nav-container .nav-cta {
  margin-left: 16px;
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex; flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--bg-white); border-bottom: 1px solid var(--border);
    padding: 16px 24px; gap: 16px;
  }
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 32px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--text-primary); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--accent); text-decoration: none; }
.nav-cta { margin-left: 16px; }
.nav-links-wrap { display: flex; align-items: center; }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }

@media (max-width: 768px) {
  .nav-links-wrap { display: none; }
  .nav-links-wrap.open {
    display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg-white); border-bottom: 1px solid var(--border);
    padding: 16px 24px; gap: 16px;
  }
  .nav-mobile-toggle { display: flex; }
  .nav-links { flex-direction: column; gap: 16px; }
}

/* === HERO (C-split) === */
.hero-split { padding: 80px 0; background: var(--bg-light); overflow: hidden; }
.hero-split .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-eyebrow {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  background: var(--gold-light); color: var(--gold);
  font-size: 0.8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-split h1 { margin-bottom: 20px; }
.hero-split .lead { margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image-wrap img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

@media (max-width: 900px) {
  .hero-split .container { grid-template-columns: 1fr; }
  .hero-image-wrap { order: -1; }
}

/* === STATS (B-cards) === */
.stats-section { background: var(--bg-white); padding: 60px 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
  background: var(--bg-light); border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; border: 1px solid var(--border);
}
.stat-value { font-family: var(--font-body); font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 0.875rem; color: var(--text-secondary); margin-top: 6px; }

@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .stats-grid { grid-template-columns: 1fr; } }

/* === SECTION HEADER === */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block; margin-bottom: 12px; padding: 4px 12px;
  background: var(--accent-light); color: var(--accent);
  border-radius: 20px; font-size: 0.8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; }

/* === FEATURES (A-grid-6) === */
.features-section { padding: 80px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; transition: box-shadow .2s ease;
}
.feature-card:hover { box-shadow: var(--shadow-md); }
.feature-card-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; }
.feature-card-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.95rem; }

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* === C-ALTERNATING FEATURES (product page) === */
.features-alt { padding: 80px 0; }
.feature-alt-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; margin-bottom: 80px;
}
.feature-alt-row:last-child { margin-bottom: 0; }
.feature-alt-row.img-right .feature-alt-img { order: 2; }
.feature-alt-row.img-right .feature-alt-text { order: 1; }
.feature-alt-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.feature-alt-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.feature-alt-text .feature-number {
  font-family: var(--font-mono); font-size: 0.8rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px;
}
.feature-alt-text h3 { font-size: 1.5rem; margin-bottom: 16px; }
.feature-alt-text p { font-size: 1rem; line-height: 1.75; }

@media (max-width: 900px) {
  .feature-alt-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-alt-row.img-right .feature-alt-img { order: 0; }
  .feature-alt-row.img-right .feature-alt-text { order: 0; }
}

/* === PROCESS (A-numbered) === */
.process-section { background: var(--bg-light); padding: 80px 0; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.process-step { text-align: center; }
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: 1.25rem;
  margin: 0 auto 20px;
}
.process-step h3 { margin-bottom: 10px; font-size: 1.1rem; }

@media (max-width: 700px) { .process-steps { grid-template-columns: 1fr; } }

/* === INTEGRATIONS === */
.integrations-section { padding: 60px 0; background: var(--bg-white); }
.integrations-grid {
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: center; align-items: center; margin-top: 40px;
}
.integration-badge {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 20px; background: var(--bg-light);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: box-shadow .2s;
}
.integration-badge:hover { box-shadow: var(--shadow-md); }
.integration-badge img { height: 36px; width: 110px; object-fit: contain; }

/* === CTA NEWSLETTER (B-newsletter) === */
.cta-newsletter {
  background: var(--bg-muted); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 80px 0; text-align: center;
}
.cta-newsletter h2 { margin-bottom: 16px; }
.cta-newsletter p { margin-bottom: 32px; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; max-width: 480px; margin: 0 auto; }
.newsletter-input {
  flex: 1; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; min-width: 200px;
}
.newsletter-input:focus { outline: none; border-color: var(--accent); }

/* === CTA BANNER (A-banner) === */
.cta-banner { background: var(--accent); padding: 80px 0; text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 32px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === TEAM === */
.team-section { padding: 80px 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 48px; }
.team-card { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.team-photo { aspect-ratio: 1/1; overflow: hidden; background: var(--bg-muted); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 20px; }
.team-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; color: var(--text-primary); }
.team-title { font-size: 0.8rem; color: var(--gold); font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .04em; }
.team-bio { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.55; }

@media (max-width: 1000px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

/* === BLOG INDEX (B-editorial-list) === */
.blog-section { padding: 80px 0; }
.blog-list { display: flex; flex-direction: column; gap: 32px; margin-top: 48px; }
.blog-list-item {
  display: grid; grid-template-columns: 280px 1fr; gap: 32px;
  align-items: start; border-bottom: 1px solid var(--border); padding-bottom: 32px;
}
.blog-list-item:last-child { border-bottom: none; }
.blog-list-thumb { border-radius: var(--radius); overflow: hidden; }
.blog-list-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-list-meta { font-size: 0.8rem; color: var(--text-light); margin-bottom: 8px; display: flex; gap: 12px; }
.blog-list-title { font-size: 1.2rem; margin-bottom: 8px; color: var(--text-primary); line-height: 1.35; }
.blog-list-title a { color: var(--text-primary); }
.blog-list-title a:hover { color: var(--accent); text-decoration: none; }
.blog-list-excerpt { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.blog-read-more { display: inline-flex; align-items: center; gap: 4px; font-size: 0.875rem; font-weight: 600; color: var(--accent); }

@media (max-width: 700px) { .blog-list-item { grid-template-columns: 1fr; } }

/* === ARTICLE === */
.article-header { padding: 60px 0 40px; background: var(--bg-light); border-bottom: 1px solid var(--border); }
.article-container { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.article-meta { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 16px; display: flex; gap: 16px; flex-wrap: wrap; }
.article-header h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.article-cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg); margin: 40px 0; }
.article-body { max-width: 780px; margin: 0 auto; padding: 0 24px 80px; }
.article-body h2 { font-size: 1.5rem; margin: 2rem 0 1rem; }
.article-body h3 { font-size: 1.25rem; margin: 1.5rem 0 .75rem; }
.article-body p { margin-bottom: 1.25rem; color: var(--text-primary); line-height: 1.75; }
.article-body ul, .article-body ol { margin: 1rem 0 1.25rem 1.5rem; }
.article-body li { margin-bottom: .5rem; color: var(--text-primary); line-height: 1.7; }
.article-body blockquote {
  border-left: 4px solid var(--gold); padding: 16px 20px;
  background: var(--gold-light); border-radius: 0 var(--radius) var(--radius) 0; margin: 1.5rem 0;
}
.article-body blockquote p { color: var(--text-primary); font-style: italic; margin: 0; }

/* === CONTACT (A-split) === */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color .2s; background: var(--bg-white); color: var(--text-primary);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(120,113,108,.1); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-info h3 { margin-bottom: 20px; }
.contact-detail { display: flex; gap: 12px; margin-bottom: 16px; }
.contact-detail-label { font-weight: 600; min-width: 80px; font-size: 0.9rem; color: var(--text-primary); }
.contact-detail-value { color: var(--text-secondary); font-size: 0.9rem; }

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* === PAGE HERO (inner pages) === */
.page-hero { background: var(--bg-light); padding: 64px 0; border-bottom: 1px solid var(--border); }
.page-hero h1 { margin-bottom: 12px; }
.page-hero .lead { max-width: 640px; }

/* === VALUES SECTION === */
.values-section { padding: 80px 0; background: var(--bg-white); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.value-card {
  background: var(--bg-light); border-radius: var(--radius-lg);
  padding: 32px; border-left: 4px solid var(--gold);
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text-primary); text-transform: capitalize; }
.value-card p { font-size: 0.95rem; }

@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }

/* === FOUNDING STORY === */
.story-section { padding: 80px 0; background: var(--bg-light); }
.story-content { max-width: 780px; margin: 0 auto; }
.story-content p { margin-bottom: 1.25rem; font-size: 1.05rem; line-height: 1.8; }

/* === FOOTER (A-4col) === */
.site-footer { background: #1C1917; color: #A8A29E; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.6; }
.footer-col h4 { color: #E7E5E4; font-family: var(--font-body); font-size: 0.95rem; margin-bottom: 16px; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #A8A29E; font-size: 0.9rem; }
.footer-col ul li a:hover { color: #E7E5E4; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid #292524; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.85rem; }
.footer-logo { filter: brightness(0) invert(1); height: 28px; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* === COOKIE BANNER (B-sensitive) === */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #1C1917; color: #E7E5E4;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 12px rgba(0,0,0,.2);
}
.cookie-banner.hidden { display: none; }
.cookie-banner p { font-size: 0.875rem; margin: 0; }
.cookie-banner a { color: #D6D3D1; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-accept {
  padding: 8px 20px; background: var(--accent); color: #fff;
  border: none; border-radius: 6px; font-weight: 600; font-size: 0.875rem; cursor: pointer;
}
.cookie-accept:hover { background: var(--accent-dark); }
.cookie-decline {
  padding: 8px 16px; background: transparent; color: #E7E5E4;
  border: 1px solid #57534E; border-radius: 6px; font-size: 0.875rem; cursor: pointer;
}

/* === LEGAL === */
.legal-content { max-width: 780px; margin: 60px auto; padding: 0 24px 80px; }
.legal-content h2 { font-size: 1.5rem; margin: 2rem 0 1rem; }
.legal-content h3 { font-size: 1.2rem; margin: 1.5rem 0 .75rem; }
.legal-content p { margin-bottom: 1.25rem; line-height: 1.75; color: var(--text-primary); }
.legal-content ul { margin: 1rem 0 1.25rem 1.5rem; }
.legal-content li { margin-bottom: .5rem; line-height: 1.7; color: var(--text-primary); }

/* === 404 === */
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; }
.error-code { font-family: var(--font-body); font-size: 6rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 16px; }
.error-page h2 { margin-bottom: 12px; }
.error-page p { margin-bottom: 24px; }


/* === Advisorbriefs Task-A additions === */

/* Features 6-grid */
.features-6-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .features-6-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features-6-grid { grid-template-columns: 1fr; } }

/* Process steps grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.666% + 1rem);
  right: calc(16.666% + 1rem);
  height: 2px;
  background: linear-gradient(to right, var(--gold, #A16207), #D6D3D1);
  z-index: 0;
}
.step-item { position: relative; z-index: 1; text-align: center; }
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-grid::before { display: none; }
}

/* Contact split */
.contact-split {
  background: var(--bg-light, #FAFAF9);
  padding: 80px 0;
}
.contact-split .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-split .container { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* 404 page */
.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  background: var(--bg-light, #FAFAF9);
  padding: 80px 0;
}
.not-found .container { width: 100%; }
.not-found-code {
  font-family: var(--font-mono, monospace);
  font-size: 8rem;
  font-weight: 500;
  color: #E7E5E4;
  line-height: 1;
  margin-bottom: 1.5rem;
}

/* Contact form inputs */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary, #78716C);
  margin-bottom: 0.375rem;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border, #E7E5E4);
  border-radius: var(--radius, 8px);
  background: #fff;
  font-family: var(--font-body, sans-serif);
  font-size: 0.9375rem;
  color: var(--text-primary, #1C1917);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold, #A16207);
  box-shadow: 0 0 0 3px rgba(161,98,7,.1);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* Contact detail */
.contact-detail {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(161,98,7,.1);
  border-radius: var(--radius, 8px);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold, #A16207);
}
.contact-detail-text p { font-size: 0.875rem; color: var(--text-light, #A8A29E); margin-bottom: 0.125rem; }
.contact-detail-text a { color: var(--text-primary, #1C1917); font-weight: 500; }
.contact-detail-text a:hover { color: var(--gold, #A16207); }

/* Feature checklist */
.feature-checklist { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.25rem; list-style: none; }
.feature-checklist li {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.9375rem; color: #44403C;
}
.check-icon {
  width: 20px; height: 20px;
  background: rgba(161,98,7,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold, #A16207);
  font-size: 0.75rem;
}

/* Values grid (about page) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: #fff;
  border: 1px solid var(--border, #E7E5E4);
  border-radius: var(--radius-lg, 16px);
  padding: 2rem;
}
.value-number {
  font-family: var(--font-mono, monospace);
  font-size: 2rem; font-weight: 500;
  color: #E7E5E4; margin-bottom: 0.75rem; line-height: 1;
}
.value-card h3 { margin-bottom: 0.625rem; }

/* Legal hero small padding */
.legal-hero { padding: 3rem 0; background: var(--bg-light, #FAFAF9); border-bottom: 1px solid var(--border, #E7E5E4); }
