:root {
  --ink: #141c2b;
  --navy: #1c2844;
  --muted: #5c6578;
  --line: #d8dde6;
  --paper: #ffffff;
  --wash: #f4f5f7;
  --accent: #3d7a28;
  --max: 1120px;
  --sans: "IBM Plex Sans", system-ui, sans-serif;
  --serif: "IBM Plex Serif", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
[id] { scroll-margin-top: 96px; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

.wrap { width: min(var(--max), calc(100% - 3rem)); margin-inline: auto; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 88px;
}
.brand {
  display: flex; align-items: center; gap: 1rem;
  flex-shrink: 1;
  min-width: 0;
}
.brand img { height: 56px; width: auto; }
@media (min-width: 1200px) { .brand img { height: 64px; } }
.brand-text {
  display: none;
  padding-left: 1rem;
  border-left: 1px solid var(--line);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
  max-width: 10rem;
}
@media (min-width: 1280px) { .brand-text { display: block; } }

.nav {
  display: none; align-items: center; gap: 1rem;
  flex-wrap: nowrap; flex-shrink: 0; justify-content: flex-end;
}
@media (min-width: 900px) { .nav { display: flex; } }
@media (min-width: 1200px) { .nav { gap: 1.35rem; } }
.nav a {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.nav a:hover { color: var(--ink); }
.nav-phone {
  font-size: .78rem; font-weight: 600; color: var(--navy);
  white-space: nowrap;
}
.nav-cta {
  padding: .6rem .95rem;
  background: var(--navy);
  color: var(--paper) !important;
  font-weight: 600;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--ink); color: var(--paper) !important; }
.nav-phone:hover { color: var(--accent); }

.menu-btn {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: .5rem;
}
@media (min-width: 900px) { .menu-btn { display: none; } }
.menu-btn span { width: 22px; height: 1.5px; background: var(--ink); }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 1rem 1.5rem 1.25rem;
  background: var(--paper);
}
.mobile-nav.open { display: grid; gap: .85rem; }
.mobile-nav a { font-size: .9rem; font-weight: 500; color: var(--muted); }

/* ── HERO ── */
.hero {
  padding: 4rem 0 5rem;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid; gap: 3rem; align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1fr auto; gap: 4rem; }
}
.hero-kicker {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.5rem;
  max-width: 18ch;
}
.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 38rem;
  margin-bottom: 1.75rem;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-bottom: 2rem;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.35rem;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .03em; text-transform: uppercase;
  border-radius: 2px; transition: background .2s, color .2s;
}
.btn-solid { background: var(--navy); color: var(--paper); }
.btn-solid:hover { background: var(--ink); color: var(--paper); }
.btn-line { border: 1px solid var(--line); color: var(--navy); background: var(--paper); }
.btn-line:hover { border-color: var(--navy); color: var(--ink); }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--muted);
}
.hero-meta strong {
  display: block;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .2rem;
}
.hero-logo {
  display: none;
  justify-self: center;
}
@media (min-width: 960px) {
  .hero-logo { display: block; }
  .hero-logo img { width: 280px; height: auto; }
}

/* ── CERTS BAR ── */
.certs {
  background: var(--wash);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.certs-inner {
  display: flex; flex-wrap: wrap; gap: .75rem 2rem;
  font-size: .78rem;
  color: var(--muted);
}
.certs-inner span { color: var(--ink); font-weight: 600; }

.invite {
  background: var(--navy);
  color: var(--paper);
  padding: 1.35rem 0;
}
.invite-inner {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  align-items: center; justify-content: space-between;
}
.invite p { font-size: .95rem; max-width: 36rem; color: rgba(255,255,255,.88); }
.invite strong { color: var(--paper); }
.invite .btn-solid { background: var(--paper); color: var(--navy); }
.invite .btn-solid:hover { background: var(--wash); color: var(--ink); }

.why-grid {
  display: grid; gap: 1.5rem;
}
@media (min-width: 700px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-item h3 {
  font-size: .95rem; font-weight: 600; margin-bottom: .4rem; color: var(--ink);
}
.why-item p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

.coverage-text {
  font-size: .95rem; color: var(--muted);
  max-width: 44rem; margin-bottom: 1.5rem; line-height: 1.7;
}
.cities {
  display: flex; flex-wrap: wrap; gap: .5rem 1rem;
  font-size: .82rem; color: var(--muted);
  line-height: 1.8;
}
.cities span {
  padding: .2rem 0;
  border-bottom: 1px solid transparent;
}

.cta-band {
  background: var(--wash);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: .65rem;
}
.cta-band p { color: var(--muted); margin-bottom: 1.25rem; font-size: .95rem; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }

/* ── SECTIONS ── */
section { padding: 4.5rem 0; }
section.bordered { border-bottom: 1px solid var(--line); }
section.tinted { background: var(--wash); }

.section-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.intro { color: var(--muted); max-width: 40rem; margin-bottom: 2.5rem; }

.prose { max-width: 42rem; }
.prose p { margin-bottom: 1rem; color: var(--muted); }
.prose p:last-child { margin-bottom: 0; }

.two-col {
  display: grid; gap: 3rem;
}
@media (min-width: 800px) { .two-col { grid-template-columns: 1fr 1fr; } }

/* ── PRESTATIONS ── */
.service-list { border-top: 1px solid var(--line); }
.service-item {
  display: grid; gap: .35rem 2rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 700px) {
  .service-item { grid-template-columns: 220px 1fr; align-items: start; }
}
.service-item h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
}
.service-item p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── REGLEMENTAIRE ── */
.note-list { display: grid; gap: 2rem; }
@media (min-width: 800px) { .note-list { grid-template-columns: repeat(3, 1fr); } }
.note h3 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--ink);
}
.note p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ── FAQ ── */
.faq { border-top: 1px solid var(--line); }
details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}
summary {
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  list-style: none;
  display: flex; justify-content: space-between; gap: 1rem;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--muted); font-weight: 400; }
details[open] summary::after { content: "−"; }
details p {
  margin-top: .85rem;
  font-size: .92rem;
  color: var(--muted);
  max-width: 52rem;
  line-height: 1.65;
}

/* ── DIRIGEANT ── */
.profile {
  display: grid; gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--paper);
}
@media (min-width: 700px) { .profile { grid-template-columns: 1fr 2fr; } }
.profile aside {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 700px) {
  .profile aside {
    padding-bottom: 0;
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding-right: 2rem;
  }
}
.profile h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: .35rem;
}
.profile .role {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.profile p { font-size: .92rem; color: var(--muted); margin-bottom: .75rem; }
.profile-photo { margin-bottom: 1.25rem; }
.profile-photo img {
  width: 100%; max-width: 220px; height: auto;
  border-radius: 2px; display: block;
}
.profile-link {
  display: inline-block; margin-top: .75rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--accent);
}
.profile-link:hover { color: var(--navy); }

/* ── CONTACT ── */
.contact-grid {
  display: grid; gap: 3rem;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }

.coords { font-size: .92rem; }
.coords dl { display: grid; gap: 1.25rem; }
.coords dt {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .25rem;
}
.coords dd { color: var(--ink); font-weight: 500; }
.coords a { text-decoration: underline; text-underline-offset: 3px; }

form { display: grid; gap: 1rem; }
.row { display: grid; gap: 1rem; }
@media (min-width: 600px) { .row.two { grid-template-columns: 1fr 1fr; } }
label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .35rem;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: .75rem .85rem;
  font: inherit;
  font-size: .92rem;
  color: var(--ink);
  border-radius: 2px;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--navy);
  outline-offset: 0;
  border-color: var(--navy);
}
textarea { min-height: 140px; resize: vertical; }
.submit {
  justify-self: start;
  margin-top: .5rem;
  padding: .85rem 1.75rem;
  background: var(--navy);
  color: var(--paper);
  border: 0;
  font: inherit;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
}
.submit:hover { background: var(--ink); }
.submit:disabled { opacity: .6; cursor: wait; }
.form-msg { font-size: .88rem; margin-top: .5rem; }
.form-msg.ok { color: var(--accent); }
.form-msg.err { color: #a02828; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.consent {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .82rem; color: var(--muted); line-height: 1.5;
}
.consent input { width: auto; margin-top: .2rem; flex-shrink: 0; }

/* ── CONTACT CHANNELS ── */
.channels { display: grid; gap: 1rem; margin-top: 1.5rem; }
.channel-card {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  background: var(--paper);
}
.channel-card h3 {
  font-size: .82rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink); margin-bottom: .35rem;
}
.channel-card p { font-size: .88rem; color: var(--muted); margin-bottom: .85rem; line-height: 1.55; }
.channel-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.btn-wa {
  background: #128C7E; color: #fff !important;
}
.btn-wa:hover { background: #0e6f64; color: #fff !important; }
.btn-wa-outline {
  border: 1px solid #128C7E; color: #128C7E; background: var(--paper);
}
.btn-wa-outline:hover { background: #eef8f6; color: #0e6f64; }

/* ── WhatsApp flottant (gratuit — lien direct Raymond Attal) ── */
.wa-fab {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #128C7E; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(18,140,126,.35);
  transition: background .2s, transform .2s;
}
.wa-fab:hover { background: #0e6f64; color: #fff; transform: scale(1.04); }
.wa-fab svg { width: 28px; height: 28px; fill: currentColor; }
@media (max-width: 600px) { .wa-fab { right: 1rem; bottom: 1rem; } }

/* ── LEGAL ── */
.legal { padding: 3rem 0; background: var(--wash); font-size: .82rem; color: var(--muted); }
.legal-grid { display: grid; gap: 2rem; }
@media (min-width: 800px) { .legal-grid { grid-template-columns: 1fr 1fr; } }
.legal h3 {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .5rem;
}

/* ── FOOTER ── */
footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.footer-top {
  display: flex; flex-wrap: wrap; gap: 2rem;
  justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem;
}
.footer-top img { height: 52px; width: auto; }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 1rem 1.75rem;
  font-size: .78rem; color: var(--muted);
}
.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: .75rem;
  color: var(--muted);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  justify-content: space-between;
}

/* ── INNER PAGES ── */
.page-hero {
  padding: 3rem 0 3.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--wash);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 500; line-height: 1.15;
  color: var(--navy); margin-bottom: 1rem; max-width: 22ch;
}
.page-hero .lead { font-size: 1.05rem; color: var(--muted); max-width: 42rem; margin-bottom: 1.5rem; }
.breadcrumb {
  font-size: .75rem; color: var(--muted); margin-bottom: 1rem;
  display: flex; flex-wrap: wrap; gap: .35rem .5rem;
}
.breadcrumb a { text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb span[aria-hidden="true"] { color: var(--line); }

.content-grid {
  display: grid; gap: 3rem;
}
@media (min-width: 900px) {
  .content-grid.has-aside { grid-template-columns: 1fr 280px; align-items: start; }
}
.def-box {
  padding: 1.25rem 1.35rem;
  border-left: 3px solid var(--accent);
  background: var(--wash);
  margin-bottom: 2rem;
}
.def-box p { font-size: .95rem; color: var(--ink); line-height: 1.65; margin: 0; }
.def-box strong { color: var(--navy); }

h3.block-title {
  font-size: 1rem; font-weight: 600; color: var(--ink);
  margin-bottom: .75rem; margin-top: 0;
}
.content-main p { font-size: .95rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.7; }
.content-main ul, .content-main ol {
  margin: 0 0 1.25rem 1.25rem; color: var(--muted); font-size: .92rem; line-height: 1.65;
}
.content-main li { margin-bottom: .35rem; }

.process { border-top: 1px solid var(--line); margin-top: 1rem; }
.process-item {
  display: grid; gap: .25rem 1.5rem; padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 600px) { .process-item { grid-template-columns: 48px 1fr; } }
.process-num {
  font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--accent);
}
.process-item h4 { font-size: .92rem; font-weight: 600; margin-bottom: .25rem; }
.process-item p { font-size: .88rem; color: var(--muted); margin: 0; line-height: 1.6; }

.card-grid {
  display: grid; gap: 1rem;
}
@media (min-width: 600px) { .card-grid.two { grid-template-columns: 1fr 1fr; } }
@media (min-width: 800px) { .card-grid.three { grid-template-columns: repeat(3, 1fr); } }
.card-link {
  display: block; padding: 1.35rem 1.4rem;
  border: 1px solid var(--line); background: var(--paper);
  transition: border-color .2s;
}
.card-link:hover { border-color: var(--navy); color: var(--ink); }
.card-link h3 { font-size: .95rem; font-weight: 600; margin-bottom: .4rem; color: var(--ink); }
.card-link p { font-size: .85rem; color: var(--muted); line-height: 1.55; margin: 0; }
.card-link .tag {
  display: inline-block; margin-top: .75rem;
  font-size: .68rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent);
}

.stats-row {
  display: grid; gap: 1rem; margin: 2rem 0;
}
@media (min-width: 700px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat {
  padding: 1rem; border: 1px solid var(--line); text-align: center;
}
.stat strong {
  display: block; font-family: var(--serif);
  font-size: 1.5rem; font-weight: 500; color: var(--navy); margin-bottom: .25rem;
}
.stat span { font-size: .75rem; color: var(--muted); line-height: 1.4; }

.sidebar-box {
  padding: 1.25rem; border: 1px solid var(--line); background: var(--paper);
  margin-bottom: 1rem;
}
.sidebar-box h3 {
  font-size: .78rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: .75rem; color: var(--ink);
}
.sidebar-box ul { list-style: none; margin: 0; padding: 0; }
.sidebar-box li { font-size: .85rem; margin-bottom: .5rem; }
.sidebar-box li a { text-decoration: underline; text-underline-offset: 2px; }

.knowledge-list { border-top: 1px solid var(--line); }
.knowledge-item {
  padding: 1.35rem 0; border-bottom: 1px solid var(--line);
}
.knowledge-item h3 { font-size: .98rem; font-weight: 600; margin-bottom: .35rem; }
.knowledge-item p { font-size: .9rem; color: var(--muted); margin-bottom: .5rem; line-height: 1.6; }
.knowledge-item .meta {
  font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--accent);
}

.nav-active { color: var(--ink) !important; font-weight: 600; }
.hero h1.wide { max-width: none; }
.profile-hero { background: #1a3a38; color: var(--paper); padding: 3rem 0 3.5rem; }
.profile-hero h1 { color: var(--paper); max-width: none; }
.profile-hero .tagline { font-size: 1.05rem; color: rgba(255,255,255,.85); max-width: 36rem; margin-bottom: 1.5rem; }
.profile-hero .hero-kicker { color: rgba(255,255,255,.7); }
.back { font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.back:hover { color: var(--ink); }
.photo-wrap { border-radius: 2px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.hero-grid-profile { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 800px) { .hero-grid-profile { grid-template-columns: 280px 1fr; gap: 3.5rem; } }
.pillars { display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { padding: 1.5rem; border: 1px solid var(--line); background: var(--wash); }
.pillar h3 { font-size: .95rem; font-weight: 600; margin-bottom: .5rem; color: var(--ink); }
.pillar p { font-size: .88rem; color: var(--muted); line-height: 1.6; }
.timeline { border-top: 1px solid var(--line); }
.timeline-item { display: grid; gap: .25rem 2rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
@media (min-width: 700px) { .timeline-item { grid-template-columns: 140px 1fr; } }
.timeline-item .year { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); }
.timeline-item h3 { font-size: .95rem; font-weight: 600; margin-bottom: .25rem; color: var(--ink); }
.timeline-item p { font-size: .88rem; color: var(--muted); line-height: 1.6; margin: 0; }
.clients-grid { display: grid; gap: 1rem; }
@media (min-width: 600px) { .clients-grid { grid-template-columns: 1fr 1fr; } }
.client-item { padding: 1.1rem 1.25rem; border-left: 3px solid var(--accent); background: var(--wash); font-size: .9rem; color: var(--muted); line-height: 1.55; }
section.tinted .client-item { background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--accent); }
.badges { display: flex; flex-wrap: wrap; gap: .5rem 1rem; font-size: .78rem; color: rgba(255,255,255,.85); }
.badges span {
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  padding: .35rem .65rem; border-radius: 2px;
}
.profile-hero .btn-solid { background: var(--paper); color: var(--navy); }
.profile-hero .btn-solid:hover { background: var(--wash); color: var(--ink); }
.profile-hero .btn-line {
  border: 1px solid rgba(255,255,255,.5);
  color: var(--paper);
  background: transparent;
}
.profile-hero .btn-line:hover {
  border-color: var(--paper);
  color: var(--paper);
  background: rgba(255,255,255,.12);
}
.profile-cta .btn-line {
  background: var(--paper);
  border-color: var(--line);
  color: var(--navy);
}
.profile-cta .btn-line:hover { border-color: var(--navy); color: var(--ink); }
