:root {
  --forest:#244c3b;
  --deep:#173b2c;
  --ink:#233b30;
  --muted:#59665d;
  --cream:#fbf9f2;
  --sage:#e8eee3;
  --line:#d7ded2;
  --peach:#f5ddc9;
  --white:#fffef9;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:28px;
}
body {
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:16px;
  line-height:1.65;
}
img {
  display:block;
  max-width:100%;
  height:auto;
}
a {
  color:inherit;
  text-decoration:none;
}
button,input,select,textarea {
  font:inherit;
}
button,a,input,select,textarea,summary {
  -webkit-tap-highlight-color:transparent;
}
a,button,summary {
  touch-action:manipulation;
}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,summary:focus-visible {
  outline:3px solid #bd623b;
  outline-offset:5px;
}
p,h1,h2,h3 {
  margin:0;
}
p+p {
  margin-top:16px;
}
h1,h2,h3 {
  font-weight:600;
  line-height:1.15;
  letter-spacing:-.045em;
}
h1 {
  font-size:clamp(42px,4.6vw,70px);
  line-height:1.1;
}
h1>span {
  display:block;
}
h2 {
  font-size:clamp(32px,3.25vw,48px);
  white-space:pre-line;
}
h3 {
  font-size:23px;
  letter-spacing:-.025em;
  line-height:1.25;
}
p {
  color:var(--muted);
}
.wrap {
  width:min(1200px,calc(100% - 96px));
  margin-inline:auto;
}
.section {
  padding-block:92px;
}
.eyebrow {
  font-size:11px;
  font-weight:750;
  letter-spacing:.18em;
  color:var(--forest);
  margin-bottom:22px;
}
.note {
  font-size:13px;
  line-height:1.7;
}
.serif {
  font-family:Georgia,"Times New Roman",serif;
  font-weight:400;
  font-style:italic;
  color:var(--forest);
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:13px 24px;
  background:var(--forest);
  border:1px solid var(--forest);
  color:white;
  border-radius:9px;
  font-weight:600;
  font-size:14px;
  line-height:1.4;
  text-align:center;
  transition:background .18s,transform .18s;
  cursor:pointer;
}
.btn:hover {
  background:var(--deep);
  transform:translateY(-2px);
}
.btn-small {
  min-height:44px;
  padding:11px 17px;
  font-size:13px;
}
.btn-outline {
  color:var(--forest);
  background:transparent;
  border-color:#9dac9b;
}
.btn-outline:hover {
  background:var(--sage);
}
.btn-light {
  background:var(--cream);
  color:var(--forest);
  border-color:var(--cream);
}
.btn-light:hover {
  background:var(--sage);
}
.actions {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}
.text-link {
  font-weight:600;
  text-decoration:underline;
  text-underline-offset:5px;
  line-height:1.6;
}
.text-link:hover {
  color:#965032;
}
.skip-link {
  position:absolute;
  top:-100px;
  left:20px;
  background:var(--white);
  padding:12px;
  z-index:10;
}
.skip-link:focus {
  top:10px;
}
.nav {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:108px;
}
.brand {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:25px;
  font-weight:750;
  letter-spacing:-1.2px;
  flex-shrink:0;
}
.brand img {
  width:44px;
}
.brand-dot {
  color:#ad633f;
}
.nav-links {
  display:flex;
  align-items:center;
  gap:26px;
  font-size:12px;
  font-weight:600;
}
.nav-section:hover {
  text-decoration:underline;
  text-underline-offset:6px;
}
.lang-switch {
  display:flex;
  gap:2px;
  padding:3px;
  border:1px solid var(--line);
  border-radius:7px;
}
.lang-switch button {
  border:0;
  border-radius:4px;
  font-size:11px;
  min-height:34px;
  min-width:33px;
  background:transparent;
  color:var(--muted);
  cursor:pointer;
}
.lang-switch button.actif {
  background:var(--forest);
  color:white;
}
.hero {
  display:grid;
  grid-template-columns:1.08fr 1fr;
  gap:65px;
  align-items:center;
  padding:45px 0 65px;
}
.hero-copy {
  padding-block:15px;
}
.lead {
  font-size:17px;
  line-height:1.85;
  margin-top:25px;
  max-width:510px;
}
.hero .actions {
  margin-top:28px;
}
.hero .note {
  margin-top:17px;
  max-width:440px;
}
.hero-visual {
  position:relative;
  padding-bottom:34px;
}
.hero-img {
  width:100%;
  height:500px;
  object-fit:cover;
  border-radius:130px 16px 16px 16px;
  object-position:center;
}
.photo-label {
  position:absolute;
  top:23px;
  right:18px;
  max-width:80%;
  display:flex;
  align-items:center;
  gap:7px;
  font-size:10px;
  color:var(--white);
  background:#203b2de6;
  padding:9px 12px;
  border-radius:30px;
}
.photo-label svg {
  width:16px;
  height:16px;
  flex-shrink:0;
}
.floating-note {
  position:absolute;
  bottom:5px;
  left:-25px;
  right:32px;
  display:flex;
  gap:15px;
  align-items:center;
  background:var(--white);
  padding:21px 23px;
  box-shadow:0 15px 40px #163d2610;
  border:1px solid var(--line);
  border-radius:12px;
}
.floating-note>svg {
  width:43px;
  height:43px;
  background:var(--sage);
  padding:10px;
  border-radius:50%;
  flex-shrink:0;
}
.floating-note strong {
  display:block;
  font-size:15px;
}
.floating-note span {
  display:block;
  color:var(--muted);
  font-size:12px;
}
.chapter-strip {
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-block:23px;
  gap:20px;
}
.chapter-strip p {
  font-size:13px;
}
.chapter-strip>div {
  display:flex;
  align-items:center;
  gap:11px;
  font-size:12px;
  font-weight:600;
}
.chapter-strip svg {
  width:18px;
  height:18px;
  margin-left:14px;
}
.section-heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:48px;
  margin-bottom:35px;
}
.section-heading>div {
  flex:1.2;
}
.section-heading>p {
  flex:.8;
  max-width:410px;
  font-size:15px;
}
.use-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.use-card {
  padding:27px 24px 32px;
  background:#efeee4;
  border-radius:13px;
}
.use-1 {
  background:#e8eee3;
}
.use-2 {
  background:#f4e4d8;
}
.use-3 {
  background:#eaece5;
}
.card-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:45px;
}
.icon {
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border:1px solid #25453324;
  border-radius:50%;
}
.card-index {
  font-size:11px;
  font-weight:500;
  color:#64705d;
}
.use-card h3 {
  font-size:21px;
  min-height:54px;
  margin-bottom:17px;
}
.use-card p {
  font-size:13px;
  line-height:1.85;
}
.coordination {
  display:flex;
  gap:25px;
  align-items:center;
  padding:25px 32px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:12px;
}
.coordination>svg {
  width:40px;
  height:40px;
  flex-shrink:0;
}
.coordination h3 {
  font-size:19px;
  margin-bottom:8px;
}
.coordination p {
  font-size:14px;
}
.audience {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:100px;
  align-items:center;
}
.audience h2 {
  margin-bottom:25px;
}
.audience>div>p:not(.eyebrow) {
  max-width:460px;
}
.audience-panel {
  padding:32px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:15px;
  box-shadow:12px 12px 0 var(--sage);
}
.audience-panel h3 {
  font-size:19px;
}
.audience-list {
  list-style:none;
  padding:0;
  margin:16px 0;
}
.audience-list li {
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 0;
  border-bottom:1px solid #e8eae1;
}
.audience-list strong {
  display:block;
  font-size:14px;
}
.audience-list span:not(.audience-mark) {
  display:block;
  font-size:12px;
  color:var(--muted);
}
.audience-mark {
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--sage);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.audience-mark svg {
  width:17px;
}
.audience-panel .note {
  font-size:11px;
}
.lending-band {
  background:var(--forest);
  color:var(--cream);
  padding-bottom:42px;
}
.lending {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:100px;
  padding-block:70px 45px;
}
.lending .eyebrow {
  color:#bfcfbb;
}
.lending h2 {
  margin-bottom:24px;
}
.lending p {
  color:#d0dccd;
  font-size:15px;
}
.lending-actions {
  margin-top:24px;
}
.lending-actions .text-link {
  font-size:14px;
}
.lending-step {
  display:flex;
  gap:23px;
  padding:25px 0;
  border-bottom:1px solid #ffffff26;
}
.lending-step:first-child {
  padding-top:0;
}
.lending-step>span {
  color:#b5c5ac;
  font-size:12px;
  padding-top:5px;
}
.lending-step h3 {
  font-size:20px;
  margin-bottom:9px;
}
.lending-step p {
  font-size:13px;
}
.credit-note {
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:30px;
  padding-top:28px;
  border-top:1px solid #ffffff26;
}
.credit-note strong {
  font-size:16px;
}
.credit-note p {
  color:#d0dccd;
  font-size:13px;
}
.business-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:17px;
}
.business-card {
  display:flex;
  flex-direction:column;
  border-top:2px solid var(--forest);
  padding:25px 0 20px;
}
.business-num {
  font:italic 26px Georgia,serif;
  color:#809078;
  margin-bottom:25px;
}
.business-card h3 {
  font-size:22px;
  margin-bottom:16px;
}
.business-card p {
  font-size:13px;
  line-height:1.85;
  margin-bottom:23px;
}
.status-tag {
  align-self:flex-start;
  font-size:10px;
  font-weight:600;
  background:var(--sage);
  padding:5px 10px;
  border-radius:5px;
  margin-top:auto;
}
.business-card:first-child .status-tag {
  background:var(--peach);
}
.business-bottom {
  padding-top:24px;
  border-top:1px solid var(--line);
}
.business-bottom .note {
  max-width:880px;
}
.business-bottom .actions {
  margin-top:24px;
  gap:25px;
}
.getting-started {
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:80px;
  padding:48px 52px;
  background:var(--sage);
  border-radius:16px;
}
.start-list {
  counter-reset:start;
  list-style:none;
  padding:0;
  margin:0;
}
.start-list li {
  counter-increment:start;
  display:flex;
  gap:22px;
  padding-bottom:26px;
}
.start-list li:last-child {
  padding-bottom:0;
}
.start-list li:before {
  content:counter(start);
  flex-shrink:0;
  border:1px solid #9bab93;
  border-radius:50%;
  width:33px;
  height:33px;
  text-align:center;
  line-height:31px;
  font-size:13px;
}
.start-list h3 {
  font-size:19px;
  margin-bottom:8px;
}
.start-list p {
  font-size:13px;
}
.faq {
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:80px;
}
.faq details {
  border-bottom:1px solid var(--line);
  padding:0 0 18px;
  margin-bottom:18px;
}
.faq summary {
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  line-height:1.6;
  padding:8px 24px 8px 0;
  list-style:none;
  position:relative;
}
.faq summary::-webkit-details-marker {
  display:none;
}
.faq summary:after {
  content:'+';
  position:absolute;
  right:0;
  font-size:22px;
  font-weight:400;
  top:3px;
}
.faq details[open] summary:after {
  content:'−';
}
.faq details p {
  font-size:14px;
  padding:8px 18px 0 0;
}
.founders {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  background:#f0e5d7;
  border-radius:16px;
  padding:55px;
}
.founders h2 {
  margin-bottom:22px;
}
.founders>div>p {
  max-width:410px;
}
.founder-signature {
  display:flex;
  gap:13px;
  align-items:center;
  margin-top:32px;
}
.avatar {
  display:flex;
  align-items:center;
  justify-content:center;
  width:43px;
  height:43px;
  border-radius:50%;
  background:var(--forest);
  color:white;
  font-size:12px;
}
.founder-signature strong {
  font-size:13px;
}
.founder-signature div>span {
  display:block;
  font-size:11px;
  color:var(--muted);
}
.founder-quote {
  font-family:Georgia,serif;
  font-style:italic;
  font-size:16px;
  margin-top:20px;
}
.signup-form {
  display:flex;
  flex-direction:column;
  gap:15px;
  position:relative;
}
.signup-row {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.signup-field {
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:0;
  flex:1 1 160px;
}
.signup-field label,.signup-form>label,.signup-checks legend {
  font-size:12px;
  font-weight:600;
  color:var(--ink);
}
.signup-form input[type=text],.signup-form input[type=email],.signup-form select,.signup-form textarea {
  width:100%;
  min-width:0;
  padding:11px 12px;
  border:1px solid #c8c4b7;
  border-radius:7px;
  background:var(--white);
  color:var(--ink);
  font-size:16px;
}
.signup-form textarea {
  resize:vertical;
}
.signup-checks {
  border:0;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:0 15px;
}
.signup-checks label {
  display:flex;
  align-items:center;
  gap:7px;
  min-height:44px;
  font-size:12px;
  cursor:pointer;
}
.signup-checks input {
  width:18px;
  height:18px;
  accent-color:var(--forest);
}
.signup-status {
  min-height:22px;
  font-size:13px;
}
.signup-submit {
  align-self:flex-start;
}
.signup-submit:disabled {
  opacity:.65;
  cursor:wait;
}
.final-cta {
  padding-block:95px 70px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:22px;
}
.final-cta>svg {
  width:34px;
  height:34px;
}
.final-cta>.text-link {
  font-size:12px;
}
.partage {
  margin-top:10px;
}
.partage-titre {
  font-size:12px;
}
.partage-boutons {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  margin-top:15px;
}
.partage-btn {
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:44px;
  background:transparent;
  border:0;
  padding:6px 3px;
  font-size:11px;
  color:var(--muted);
  cursor:pointer;
}
.partage-btn:hover {
  color:var(--forest);
  text-decoration:underline;
}
.partage-btn svg {
  width:15px;
  height:15px;
}
.footer {
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  padding-block:30px;
}
.footer .brand {
  font-size:21px;
}
.footer .brand img {
  width:34px;
}
.footer-links {
  display:flex;
  gap:20px;
  font-size:11px;
}
.footer-links a {
  font-weight:400;
}
.footer .note {
  font-size:10px;
}
@media(min-width:1450px) {
  .hero {
    padding-top:65px;
    padding-bottom:85px;
  }
  .hero-img {
    height:550px;
  }
}
@media(max-width:1100px) {
  .wrap {
    width:calc(100% - 64px);
  }
  .nav-links {
    gap:15px;
  }
  .nav-section {
    font-size:11px;
  }
  .hero {
    gap:40px;
  }
  .hero-img {
    height:460px;
  }
  .floating-note {
    left:-14px;
    right:16px;
  }
  .use-grid,.business-grid {
    grid-template-columns:repeat(2,1fr);
  }
  .use-card h3 {
    min-height:0;
  }
  .card-top {
    margin-bottom:26px;
  }
  .audience,.lending {
    gap:50px;
  }
  .founders {
    gap:40px;
    padding:35px;
  }
  .chapter-strip {
    align-items:flex-start;
  }
  .chapter-strip>div {
    gap:7px;
  }
  .chapter-strip svg {
    margin-left:6px;
  }
  .chapter-strip p {
    max-width:310px;
  }
  .footer {
    flex-wrap:wrap;
  }
}
@media(max-width:800px) {
  .wrap {
    width:calc(100% - 40px);
  }
  .nav {
    min-height:88px;
    gap:10px;
    flex-wrap:wrap;
    padding-block:16px;
  }
  .brand {
    font-size:22px;
  }
  .brand img {
    width:36px;
  }
  .nav-links {
    gap:10px;
  }
  .nav-section {
    display:none;
  }
  .nav-links .btn-small {
    font-size:11px;
    padding:10px 12px;
  }
  .hero {
    gap:35px;
    padding-block:28px 45px;
    grid-template-columns:1fr 1fr;
  }
  .hero h1 {
    font-size:42px;
  }
  .lead {
    font-size:15px;
  }
  .hero-img {
    height:440px;
    border-top-left-radius:85px;
  }
  .photo-label {
    top:16px;
    font-size:9px;
    right:12px;
  }
  .floating-note {
    padding:15px 12px;
    gap:9px;
    right:8px;
  }
  .floating-note strong {
    font-size:12px;
  }
  .floating-note span {
    font-size:10px;
  }
  .hero .btn {
    font-size:12px;
    padding:13px 15px;
  }
  .chapter-strip {
    flex-direction:column;
    gap:12px;
  }
  .chapter-strip p {
    max-width:none;
  }
  .chapter-strip svg:first-child {
    margin-left:0;
  }
  .section {
    padding-block:60px;
  }
  .section-heading {
    gap:25px;
    align-items:flex-start;
    flex-direction:column;
  }
  .section-heading>p {
    max-width:560px;
  }
  .audience,.lending {
    gap:35px;
  }
  .audience-panel {
    padding:23px;
    box-shadow:7px 7px 0 var(--sage);
  }
  .audience-panel h3 {
    font-size:17px;
  }
  .getting-started {
    padding:32px;
    gap:30px;
  }
  .faq {
    gap:30px;
  }
  .founders {
    grid-template-columns:1fr;
    gap:30px;
  }
  .founders>div>p {
    max-width:none;
  }
  .founders h2 {
    white-space:normal;
  }
  .founder-quote {
    max-width:480px!important;
  }
  .footer-links {
    flex-wrap:wrap;
  }
  .footer .note {
    width:100%;
    margin:0;
  }
}
@media(max-width:600px) {
  h1,.hero h1 {
    font-size:46px;
  }
  h2 {
    font-size:35px;
  }
  .hero {
    grid-template-columns:1fr;
    padding-top:22px;
    gap:30px;
  }
  .hero-copy {
    padding:0;
  }
  .eyebrow {
    font-size:10px;
    margin-bottom:16px;
  }
  .lead {
    margin-top:21px;
    font-size:16px;
  }
  .hero .actions {
    margin-top:22px;
    gap:10px;
  }
  .hero .btn {
    font-size:13px;
    padding:14px 18px;
  }
  .hero .note {
    font-size:11px;
  }
  .hero-visual {
    margin-left:9px;
    padding-bottom:25px;
  }
  .hero-img {
    height:340px;
    border-top-left-radius:85px;
    object-position:center;
  }
  .floating-note {
    left:-9px;
    bottom:0;
    right:24px;
    padding:17px;
  }
  .floating-note strong {
    font-size:14px;
  }
  .floating-note span {
    font-size:11px;
  }
  .photo-label {
    font-size:9px;
    max-width:88%;
  }
  .chapter-strip {
    padding-block:20px;
  }
  .chapter-strip p {
    font-size:12px;
  }
  .chapter-strip>div {
    font-size:11px;
    gap:8px;
  }
  .chapter-strip svg {
    width:16px;
    margin-left:10px;
  }
  .section {
    padding-block:48px;
  }
  .section-heading {
    margin-bottom:26px;
    gap:20px;
  }
  .use-grid {
    grid-template-columns:1fr;
    gap:12px;
  }
  .use-card {
    padding:24px;
  }
  .card-top {
    margin-bottom:20px;
  }
  .use-card h3 {
    font-size:24px;
    margin-bottom:13px;
  }
  .use-card p {
    font-size:14px;
  }
  .coordination {
    padding:22px;
    gap:16px;
    align-items:flex-start;
  }
  .coordination>svg {
    width:27px;
    height:27px;
  }
  .coordination h3 {
    font-size:18px;
  }
  .coordination p {
    font-size:13px;
  }
  .audience,.lending {
    grid-template-columns:1fr;
    gap:30px;
  }
  .audience-panel {
    margin-right:7px;
  }
  .audience h2 {
    margin-bottom:22px;
  }
  .lending {
    padding-block:48px 30px;
  }
  .lending-step {
    padding-block:20px;
  }
  .lending-step h3 {
    font-size:20px;
  }
  .credit-note {
    grid-template-columns:1fr;
    gap:10px;
    padding-top:23px;
  }
  .business-grid {
    gap:20px;
  }
  .business-card {
    padding-top:17px;
  }
  .business-card h3 {
    font-size:20px;
  }
  .business-num {
    margin-bottom:16px;
  }
  .business-card p {
    font-size:12px;
  }
  .status-tag {
    font-size:9px;
    line-height:1.5;
  }
  .business-bottom .actions {
    align-items:flex-start;
    flex-direction:column;
    gap:18px;
  }
  .business-bottom .text-link {
    font-size:13px;
  }
  .getting-started,.faq {
    grid-template-columns:1fr;
    gap:26px;
  }
  .getting-started {
    padding:28px 24px;
  }
  .getting-started h2 {
    white-space:normal;
  }
  .start-list p {
    font-size:14px;
  }
  .faq h2 {
    white-space:normal;
  }
  .faq summary {
    font-size:14px;
  }
  .founders {
    padding:28px 22px;
  }
  .founders h2 {
    font-size:34px;
  }
  .founders p {
    font-size:14px;
  }
  .signup-field {
    flex-basis:100%;
  }
  .final-cta {
    padding-block:60px 42px;
    gap:20px;
  }
  .final-cta h2 {
    font-size:35px;
  }
  .final-cta>p {
    font-size:15px;
  }
  .footer {
    gap:20px;
    padding-block:25px;
  }
  .footer-links {
    gap:15px;
  }
  .nav-links .btn-small {
    min-height:40px;
  }
  .lang-switch button {
    min-width:30px;
  }
}
@media(max-width:370px) {
  .wrap {
    width:calc(100% - 32px);
  }
  .brand {
    font-size:19px;
    gap:3px;
  }
  .brand img {
    width:30px;
  }
  .nav-links {
    gap:6px;
  }
  .nav-links .btn-small {
    font-size:10px;
    padding:10px 9px;
  }
  .lang-switch button {
    min-width:26px;
  }
  .hero h1 {
    font-size:41px;
  }
  .business-grid {
    grid-template-columns:1fr;
  }
  .business-card p {
    font-size:14px;
  }
  .status-tag {
    font-size:10px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*:before,*:after {
    transition:none!important;
  }
  .btn:hover {
    transform:none;
  }
}
.mobile-sections {
  display:none;
}
@media(max-width:800px) {
  .mobile-sections {
    display:flex;
    align-items:center;
    gap:23px;
    border-bottom:1px solid var(--line);
    padding-block:0 15px;
    font-size:11px;
    font-weight:600;
  }
  .mobile-sections a {
    min-height:36px;
    display:inline-flex;
    align-items:center;
  }
}
@media(max-width:600px) {
  .business-grid {
    grid-template-columns:1fr;
  }
  .business-card {
    display:grid;
    grid-template-columns:30px 1fr;
    column-gap:15px;
    row-gap:12px;
    padding-block:20px;
  }
  .business-num {
    grid-row:1/4;
    margin:0;
    font-size:24px;
  }
  .business-card h3,.business-card p {
    margin:0;
  }
  .business-card p {
    font-size:14px;
  }
  .status-tag {
    justify-self:start;
    margin-top:2px;
    font-size:10px;
  }
}
@media(max-width:600px) {
  .nav {
    gap:6px;
    flex-wrap:nowrap;
  }
  .nav .brand {
    font-size:20px;
    gap:4px;
  }
  .nav .brand img {
    width:30px;
  }
  .nav-links {
    gap:6px;
  }
  .nav-links .btn-small {
    font-size:11px;
    padding:10px 11px;
  }
}
@media(max-width:370px) {
  .nav .brand {
    font-size:18px;
  }
  .nav .brand img {
    width:26px;
  }
}
/* Cercles, accueil et rencontres ouvertes. */
.hospitality {
  padding-top: 0;
}
.hospitality-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.hospitality-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
}
.hospitality-card .icon {
  margin-bottom: 18px;
}
.hospitality-card h3 {
  margin-bottom: 16px;
}
.hospitality-card p,
.hospitality-card li {
  font-size: 14px;
  line-height: 1.8;
}
.hospitality-card .text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 14px;
  font-size: 14px;
}
.chair-card {
  display: flex;
  flex-direction: column;
  background: var(--sage);
}
.chair-card h3 {
  font-size: 30px;
}
.chair-steps {
  padding-left: 20px;
  margin: 22px 0;
}
.chair-steps li {
  padding: 4px 0 4px 7px;
}
.chair-steps li::marker {
  color: var(--forest);
  font-weight: 700;
}
.hospitality-example {
  border-top: 1px solid #bccbb5;
  padding-top: 18px;
}
.chair-card .text-link {
  margin-top: auto;
  padding-top: 22px;
}
.hospitality-side {
  display: grid;
  gap: 20px;
}
.hospitality-side .hospitality-card {
  padding: 25px 30px;
}
.hospitality-side .icon {
  float: right;
  margin: 0 0 10px 16px;
}
.hospitality-extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 30px;
}
.hospitality-extras h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.hospitality-extras p {
  font-size: 13px;
}
@media (max-width: 800px) {
  .hospitality-grid {
    grid-template-columns: 1fr;
  }
  .chair-card .text-link {
    margin-top: 0;
  }
  .hospitality-side {
    grid-template-columns: repeat(2, 1fr);
  }
  .hospitality-side .icon {
    float: none;
    margin: 0 0 18px;
  }
}
@media (max-width: 600px) {
  .hospitality-card,
  .hospitality-side .hospitality-card {
    padding: 25px;
  }
  .hospitality-side,
  .hospitality-extras {
    grid-template-columns: 1fr;
  }
  .chair-card h3 {
    font-size: 27px;
  }
  .hospitality-extras {
    gap: 22px;
  }
}
