:root {
  --page-background: #fbfbf7;
  --surface: #ffffff;
  --text-main: #070707;
  --text-soft: #5d605b;
  --text-muted: #70736d;
  --accent-soft: #edf6b2;
  --accent-frame: #dff6df;
  --accent-green-start: #2dd05f;
  --accent-green-end: #16bb48;
  --border-soft: rgba(14, 18, 11, 0.1);
  --shadow-soft: 0 22px 45px rgba(15, 23, 10, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(218, 246, 220, 0.22), transparent 28%),
    var(--page-background);
  color: var(--text-main);
  font-family: "Manrope", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: min(1400px, calc(100% - 80px));
  margin: 0 auto;
  padding: 28px 0 24px;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.62rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand img {
  width: 38px;
  height: 38px;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 10px;
  padding: 4px;
}

.main-nav a {
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(237, 246, 178, 0.6);
  outline: none;
  transform: translateY(-1px);
}

.main-nav .is-active {
  background: var(--accent-soft);
}

.quote-link {
  justify-self: end;
  padding: 16px 24px;
  border-radius: 999px;
  background: #090909;
  color: var(--surface);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.14);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-main);
  transition: transform 260ms ease, opacity 260ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.88fr);
  gap: 72px;
  align-items: start;
  padding: 44px 0 0;
}

.hero-copy {
  padding-top: 26px;
}

.anchor-target {
  display: block;
  position: relative;
  top: -28px;
  visibility: hidden;
}

.hero-copy h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(3.6rem, 4.9vw, 5.35rem);
  line-height: 0.95;
  letter-spacing: -0.068em;
}

.hero-description {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--text-soft);
  font-size: 1.18rem;
  line-height: 1.5;
  letter-spacing: -0.035em;
}

.hero-actions {
  margin-top: 34px;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-green-start), var(--accent-green-end));
  color: var(--surface);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: 0 20px 32px rgba(22, 187, 72, 0.26);
}

.trust-card {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
  padding: 14px 22px 14px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 24px rgba(10, 20, 8, 0.06);
}

.trust-avatars {
  display: flex;
  align-items: center;
  min-width: 168px;
}

.trust-avatar {
  width: 52px;
  height: 52px;
  margin-left: -14px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background-color: #d8ead2;
  background-image: url("assets/images/mathurin-jardine.png");
  background-size: 190px auto;
  box-shadow: 0 6px 18px rgba(10, 20, 8, 0.08);
}

.trust-avatars .trust-avatar:first-child {
  margin-left: 0;
}

.avatar-1 {
  background-position: 16% 38%;
}

.avatar-2 {
  background-position: 34% 34%;
}

.avatar-3 {
  background-position: 55% 42%;
}

.avatar-4 {
  background-position: 76% 48%;
}

.trust-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(225, 245, 213, 0.98), rgba(204, 236, 201, 0.96));
  color: rgba(7, 7, 7, 0.76);
}

.trust-plus img {
  width: 24px;
  height: 24px;
}

.trust-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}

.trust-copy strong {
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.trust-copy span {
  color: var(--text-muted);
  font-size: 0.98rem;
  font-weight: 600;
}

.hero-note {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 1.06rem;
  line-height: 1.48;
  letter-spacing: -0.038em;
}

.hero-visual {
  position: relative;
}

.image-frame {
  position: relative;
  padding: 22px;
  border-radius: 38px;
  background: linear-gradient(180deg, #d7f6dd 0%, var(--accent-frame) 100%);
  box-shadow: var(--shadow-soft);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 1 / 1.23;
  border-radius: 32px;
  object-fit: cover;
  object-position: center 34%;
}

.visual-cta {
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.visual-cta a {
  display: inline-flex;
  align-items: center;
  min-height: 64px;
  padding: 0 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.97);
  color: #131313;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  box-shadow: 0 16px 36px rgba(10, 20, 8, 0.14);
}

.visual-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 36px rgba(10, 20, 8, 0.14);
}

.visual-cta-arrow img {
  width: 24px;
  height: 24px;
}

.service-band {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-top: 82px;
  margin-bottom: 86px;
  margin-left: -50vw;
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(180deg, #d8f3d8 0%, #d3f0d0 100%);
}

.service-band-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  align-items: center;
  min-height: 86px;
  gap: 28px;
  padding: 0 clamp(24px, 5vw, 72px);
  color: rgba(28, 44, 23, 0.72);
  white-space: nowrap;
}

.service-band-track span {
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.service-band-track span:nth-child(2),
.service-band-track span:nth-child(4) {
  font-size: 0.96rem;
  font-weight: 700;
}

.service-band-track span:nth-child(3) {
  font-size: 1.06rem;
}

.overview-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  gap: 48px;
  align-items: start;
  padding: 0;
}

.overview-copy h2 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(3rem, 4vw, 4.3rem);
  line-height: 0.97;
  letter-spacing: -0.065em;
}

.overview-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.52;
  letter-spacing: -0.03em;
}

.overview-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-green-start), var(--accent-green-end));
  color: var(--surface);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 16px 30px rgba(22, 187, 72, 0.2);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.contact-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.contact-link-icon img {
  width: 22px;
  height: 22px;
}

.overview-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 78px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  background: linear-gradient(180deg, #dbf5d5 0%, #d5f0ce 100%);
}

.feature-icon img {
  width: 24px;
  height: 24px;
}

.feature-pill strong {
  display: block;
  max-width: 180px;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.overview-gallery {
  display: grid;
  grid-template-columns: 1.76fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #d7ead0;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card-large,
.gallery-card-tall {
  height: clamp(420px, 40vw, 580px);
}

.gallery-card-large img {
  object-position: center 60%;
}

.gallery-card-tall img {
  object-position: center 30%;
}

.gallery-card-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 26px rgba(10, 20, 8, 0.12);
}

.gallery-card-arrow img {
  width: 24px;
  height: 24px;
}

.showcase {
  position: relative;
  margin-top: 100px;
  border-radius: 28px;
  overflow: hidden;
  background: url("assets/images/potager-fleurs.jpg") center / cover no-repeat;
  padding: 80px 64px;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 12, 0.72);
  pointer-events: none;
}

.showcase-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.showcase-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.showcase-content p {
  margin: 22px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.showcase-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-block:first-child {
  padding-left: 0;
  border-left: none;
}

.stat-block strong {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-block span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.site-footer {
  margin-top: 100px;
  padding-top: 56px;
  border-top: 1px solid var(--border-soft);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .brand {
  font-size: 1.28rem;
}

.footer-brand p {
  margin: 16px 0 0;
  max-width: 320px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.52;
  letter-spacing: -0.02em;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav strong,
.footer-contact strong {
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-main);
  margin-bottom: 4px;
}

.footer-nav a,
.footer-contact a {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 160ms ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--text-main);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-green-start), var(--accent-green-end));
  color: var(--surface) !important;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  width: fit-content;
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border-soft);
  text-align: center;
}

.footer-bottom span {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

@media (max-width: 1180px) {
  .page-shell {
    width: min(100% - 40px, 1100px);
    padding-top: 24px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-self: start;
    padding: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 28px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-copy h1,
  .hero-description,
  .hero-note {
    max-width: 100%;
  }

  .hero-visual {
    max-width: 760px;
  }

  .service-band {
    margin-top: 64px;
    margin-bottom: 68px;
  }

  .service-band-track {
    grid-template-columns: repeat(5, minmax(190px, 1fr));
    min-height: 76px;
    padding: 0 24px;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .service-band-track::-webkit-scrollbar {
    display: none;
  }

  .overview-section {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0;
  }

  .overview-copy p {
    max-width: 100%;
  }

  .overview-features {
    margin-top: 42px;
  }

  .overview-gallery {
    max-width: 860px;
    grid-template-columns: 1.76fr 1fr;
    align-items: stretch;
  }

  .showcase {
    margin-top: 72px;
    padding: 60px 40px;
  }

  .showcase-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
    margin-top: 44px;
  }

  .stat-block:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }

  .site-footer {
    margin-top: 72px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: calc(100% - 28px);
    padding-bottom: 20px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 0;
  }

  .brand {
    gap: 10px;
    font-size: 1.02rem;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .menu-toggle {
    display: flex;
  }

  .quote-link {
    display: none;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    grid-column: 1 / -1;
    width: 100%;
    padding: 20px 0 8px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 1rem;
    text-align: left;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    transform: none;
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    background: #090909;
    color: var(--surface);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .nav-cta:hover,
  .nav-cta:focus-visible {
    background: #1a1a1a;
  }

  .hero-copy h1 {
    max-width: 340px;
    font-size: clamp(2.7rem, 14vw, 3.7rem);
    line-height: 0.92;
  }

  .hero-description {
    margin-top: 22px;
    font-size: 1rem;
  }

  .primary-cta {
    width: 100%;
    min-height: 60px;
    font-size: 1.04rem;
  }

  .trust-card {
    width: 100%;
    gap: 16px;
    padding-right: 18px;
    border-radius: 30px;
  }

  .trust-avatars {
    min-width: 152px;
  }

  .trust-avatar {
    width: 48px;
    height: 48px;
    background-size: 180px auto;
  }

  .trust-copy strong {
    font-size: 1.25rem;
  }

  .trust-copy span,
  .hero-note {
    font-size: 1rem;
  }

  .image-frame {
    padding: 16px;
    border-radius: 28px;
  }

  .image-frame img {
    border-radius: 24px;
  }

  .visual-cta {
    right: 18px;
    bottom: 18px;
    left: 18px;
    gap: 10px;
  }

  .visual-cta a {
    min-height: 58px;
    padding: 0 20px;
    font-size: 1rem;
    flex: 1;
    justify-content: center;
  }

  .visual-cta-arrow {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }

  .service-band {
    margin-top: 46px;
    margin-bottom: 50px;
  }

  .service-band-track {
    min-height: 68px;
    padding: 0 16px;
  }

  .service-band-track span {
    font-size: 0.9rem;
  }

  .overview-section {
    gap: 26px;
    padding: 0;
  }

  .overview-copy h2 {
    max-width: 320px;
    font-size: clamp(2.35rem, 12vw, 3.2rem);
    line-height: 0.96;
  }

  .overview-copy p {
    font-size: 0.98rem;
  }

  .overview-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 28px;
  }

  .secondary-cta {
    width: 100%;
    min-height: 58px;
    font-size: 1rem;
  }

  .contact-link {
    justify-content: center;
    font-size: 0.98rem;
    text-align: center;
  }

  .overview-features {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }

  .feature-pill {
    justify-content: center;
    text-align: center;
  }

  .feature-pill strong {
    max-width: none;
    font-size: 1rem;
  }

  .overview-gallery {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .gallery-card {
    border-radius: 18px;
  }

  .gallery-card-large,
  .gallery-card-tall {
    height: 280px;
  }

  .gallery-card-arrow {
    top: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .showcase {
    margin-top: 52px;
    padding: 48px 24px;
    border-radius: 22px;
  }

  .showcase-content h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .showcase-content p {
    font-size: 0.96rem;
  }

  .showcase-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
    margin-top: 36px;
  }

  .stat-block {
    padding: 0 20px;
  }

  .stat-block:first-child,
  .stat-block:nth-child(3) {
    padding-left: 0;
    border-left: none;
  }

  .stat-block strong {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .stat-block span {
    font-size: 0.88rem;
  }

  .site-footer {
    margin-top: 52px;
    padding-top: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-cta {
    width: 100%;
  }
}
