/* Ethyco — Enterprise B2B Stylesheet */
/* Palette: deep navy, industrial slate, clean white */

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

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0d1b2a;
  --navy-mid:    #152638;
  --navy-light:  #1e3a52;
  --slate:       #3d6b8a;
  --slate-muted: #4a7fa5;
  --accent:      #5b93b8;
  --text-dark:   #1a2332;
  --text-mid:    #3b4c5e;
  --text-light:  #6b7d8f;
  --border:      #dde3e9;
  --bg-light:    #f7f9fb;
  --white:       #ffffff;

  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w:       1180px;
  --section-pad: 80px 24px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Layout Utility ────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Navigation ────────────────────────────────────────────── */
.site-nav {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 96px 24px 88px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91,147,184,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  max-width: 780px;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.01em;
}

/* ─── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 60px 24px 56px;
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  max-width: 600px;
}

/* ─── Section Labels ────────────────────────────────────────── */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-muted);
  margin-bottom: 12px;
}

/* ─── Positioning Section (Home) ───────────────────────────── */
.positioning {
  padding: var(--section-pad);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.positioning-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.positioning h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 20px;
}

.positioning p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ─── Capabilities Grid (Home) ─────────────────────────────── */
.capabilities-overview {
  padding: var(--section-pad);
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.cap-header {
  margin-bottom: 48px;
}

.cap-header h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  color: var(--text-dark);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.cap-card {
  background: var(--white);
  padding: 36px 32px;
}

.cap-card-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.cap-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.cap-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── Trust Indicators ─────────────────────────────────────── */
.trust {
  padding: var(--section-pad);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.trust-text h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.trust-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.trust-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust-list li {
  padding: 20px 22px;
  background: var(--bg-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 3px 3px 0;
}

.trust-list li strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.trust-list li span {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ─── CTA Section ──────────────────────────────────────────── */
.cta-section {
  background: var(--navy-mid);
  padding: 72px 24px;
}

.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text {
  max-width: 640px;
}

.cta-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1.5px solid var(--accent);
  color: var(--white);
  background: transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.btn:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--slate);
  border-color: var(--slate);
}

/* ─── Content Sections (Capabilities / Markets) ─────────────── */
.content-section {
  padding: var(--section-pad);
}

.content-section:nth-child(even) {
  background: var(--bg-light);
}

.content-section:nth-child(odd) {
  background: var(--white);
}

/* Keep consistent borders */
.content-section {
  border-bottom: 1px solid var(--border);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Intro text block */
.section-intro {
  max-width: var(--max-w);
  margin: 0 auto 56px;
  padding: 0;
}

.section-intro p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 720px;
}

/* Category list */
.category-list {
  display: grid;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.category-item {
  background: var(--white);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}

.category-item:nth-child(even) {
  background: var(--bg-light);
}

.category-label {
  padding-top: 3px;
}

.category-label .cat-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.category-label h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.category-body p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 14px;
}

.category-cta {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate-muted);
  letter-spacing: 0.03em;
}

/* Markets grid */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.market-card {
  background: var(--white);
  padding: 36px 36px;
}

.market-card:nth-child(even) {
  background: var(--bg-light);
}

.market-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.market-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.market-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── Contact Page ──────────────────────────────────────────── */
.contact-section {
  padding: var(--section-pad);
  background: var(--white);
}

.contact-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-detail .label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact-detail .value {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-detail a.value {
  color: var(--slate-muted);
}

.contact-detail a.value:hover {
  color: var(--slate);
}

/* Form */
.contact-form-wrap h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 28px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-field input,
.form-field textarea {
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
  border-radius: 2px;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: var(--white);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 6px;
}

.form-submit {
  margin-top: 20px;
}

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 24px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand .brand-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-brand .brand-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.footer-info {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-info a,
.footer-info span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-info a:hover { color: rgba(255,255,255,0.72); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 32px 0 24px;
}

.footer-copy {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.28);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .cap-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; gap: 36px; }
  .trust-list { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; }
  .category-item { grid-template-columns: 1fr; gap: 12px; }
  .markets-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 680px) {
  :root { --section-pad: 56px 20px; }
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--navy);
    padding: 20px 24px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-toggle { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-info { text-align: left; }
}

/* ─── Footer Updates (expanded nav) ───────────────────────────── */
.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  max-width: 320px;
}
.footer-nav-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.03em;
}
.footer-nav-links a:hover { color: rgba(255,255,255,0.72); }

.footer-location {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-location .texas-svg {
  flex-shrink: 0;
  display: block;
}
.footer-coords {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

/* ─── Why / About — Alternating Content Sections ─────────────── */
.why-section {
  padding: var(--section-pad);
  border-bottom: 1px solid var(--border);
}
.why-section:nth-child(odd)  { background: var(--white); }
.why-section:nth-child(even) { background: var(--bg-light); }

.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}

.why-label .why-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.why-label h2 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}
.why-body p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}
.why-body p:last-child { margin-bottom: 0; }

/* ─── About — Leadership Cards ───────────────────────────────── */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 32px;
}
.leadership-card {
  background: var(--white);
  padding: 32px 28px;
}
.leadership-card .lc-placeholder {
  width: 52px;
  height: 52px;
  background: var(--bg-light);
  border-radius: 50%;
  border: 1.5px solid var(--border);
  margin-bottom: 18px;
}
.leadership-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.leadership-card .lc-title {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.leadership-card p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.65;
}
.lc-note {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 28px;
}

/* ─── About — Values Grid ─────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 32px;
}
.value-item {
  background: var(--white);
  padding: 32px 28px;
  border-left: 3px solid var(--accent);
}
.value-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.value-item p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.72;
}

/* ─── Insights Grid ───────────────────────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.article-card {
  background: var(--white);
  padding: 36px 36px;
  display: flex;
  flex-direction: column;
}
.article-card:nth-child(even) { background: var(--bg-light); }
.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.article-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.article-date {
  font-size: 0.75rem;
  color: var(--text-light);
}
.article-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
}
.article-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.article-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-muted);
  align-self: flex-start;
}
.article-link:hover { color: var(--slate); }

/* ─── Article Page ────────────────────────────────────────────── */
.article-page {
  padding: 64px 24px 88px;
  background: var(--white);
}
.article-page-inner {
  max-width: 740px;
  margin: 0 auto;
}
.article-back {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--slate-muted);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  display: inline-block;
}
.article-back:hover { color: var(--slate); }
.article-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.article-header .article-meta { margin-bottom: 16px; }
.article-header h1 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
  font-family: Georgia, 'Playfair Display', serif;
}
.article-header .article-byline {
  font-size: 0.83rem;
  color: var(--text-light);
}
.article-content h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 36px 0 14px;
}
.article-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 18px;
}
.article-content ul, .article-content ol {
  margin: 0 0 18px 22px;
}
.article-content li {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 8px;
}
.article-content strong { color: var(--text-dark); font-weight: 600; }
.article-cta {
  margin-top: 56px;
  padding: 32px 36px;
  background: var(--bg-light);
  border-left: 3px solid var(--accent);
}
.article-cta p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}
.article-cta .btn { margin-top: 4px; }

/* ─── Contact Form — Select Styling ──────────────────────────── */
.form-field select {
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
  border-radius: 2px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b7d8f'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.form-field select:focus {
  border-color: var(--accent);
  background-color: var(--white);
}

/* ─── Responsive Additions ────────────────────────────────────── */
@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; gap: 20px; }
  .leadership-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .footer-nav-links { flex-direction: column; gap: 8px; }
}

/* ─── Footer Updated Layout ─────────────────────── */
.footer-geo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
}
.footer-geo span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.32);
  font-variant-numeric: tabular-nums;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 16px;
  justify-content: flex-end;
  max-width: 500px;
}
.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-email-link {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}
.footer-email-link:hover { color: rgba(255,255,255,0.8); }

/* ─── Nav 7 items ───────────────────────────────── */
@media (min-width: 681px) {
  .nav-links { gap: 24px; }
}

/* ─── Form Select ───────────────────────────────── */
.form-field select {
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 11px 36px 11px 14px;
  outline: none;
  transition: border-color 0.15s;
  border-radius: 2px;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236b7d8f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-field select:focus {
  border-color: var(--accent);
  background-color: var(--white);
}

/* ─── Why Page ──────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 0;
}
.why-pillar {
  background: var(--white);
  padding: 40px 44px;
}
.why-pillar:nth-child(even) { background: var(--bg-light); }
.why-pillar-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.why-pillar h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.35;
}
.why-pillar p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 10px;
}
.why-pillar p:last-child { margin-bottom: 0; }

/* ─── About Page ────────────────────────────────── */
.about-prose p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-prose p:last-child { margin-bottom: 0; }
.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 16px;
}
.value-item {
  background: var(--white);
  padding: 32px 30px;
}
.value-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}
.value-item p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.team-placeholder {
  padding: 36px 40px;
  background: var(--bg-light);
  border-left: 3px solid var(--border);
}
.team-placeholder p {
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
}

/* ─── Insights Page ─────────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.insight-card {
  background: var(--white);
  padding: 36px 36px;
  display: flex;
  flex-direction: column;
}
.insight-card:nth-child(even) { background: var(--bg-light); }
.insight-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.insight-card h3 {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 12px;
}
.insight-card p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 22px;
}
.insight-card a.read-more {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.insight-card a.read-more::after { content: '→'; }
.insight-card a.read-more:hover { color: var(--slate); }

/* ─── Article Pages ─────────────────────────────── */
.article-breadcrumb {
  padding: 18px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.article-breadcrumb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 0.78rem;
  color: var(--text-light);
}
.article-breadcrumb-inner a { color: var(--slate-muted); }
.article-breadcrumb-inner a:hover { color: var(--slate); }
.article-breadcrumb-inner span { margin: 0 7px; opacity: 0.5; }

.article-layout {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.article-header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.article-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.article-header h1 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.article-meta {
  font-size: 0.8rem;
  color: var(--text-light);
}
.article-body p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 20px;
}
.article-body h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 36px 0 14px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.article-body h3 {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 22px 0 8px;
}
.article-body ul {
  margin: 0 0 20px 0;
  padding-left: 20px;
}
.article-body ul li {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 7px;
}
.article-callout {
  background: var(--bg-light);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  border-radius: 0 3px 3px 0;
}
.article-footer-cta {
  margin-top: 56px;
  padding: 32px 36px;
  background: var(--bg-light);
  border: 1px solid var(--border);
}
.article-footer-cta p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* ─── Legal Pages ───────────────────────────────── */
.legal-layout {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.legal-header {
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.legal-header h1 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 0.8rem;
  color: var(--text-light);
}
.legal-section {
  margin-bottom: 36px;
}
.legal-section h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.legal-section p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 10px;
}
.legal-section p:last-child { margin-bottom: 0; }

/* ─── Responsive additions ──────────────────────── */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .footer-nav { align-items: flex-start; }
  .footer-links { justify-content: flex-start; }
  .why-pillar { padding: 32px 28px; }
  .article-footer-cta { padding: 24px 24px; }
}
