:root {
  --green-900: #29483f;
  --green-800: #365c51;
  --green-700: #497468;
  --green-100: #e7efeb;
  --cream: #f7f4ed;
  --sand: #ebe3d6;
  --white: #ffffff;
  --ink: #24312d;
  --muted: #66736e;
  --border: #dce3df;
  --shadow: 0 24px 60px rgba(41, 72, 63, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

img {
  max-width: 100%;
}

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

.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(24px, 5vw, 90px);
  padding-right: clamp(24px, 5vw, 90px);
}

.narrow {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: #ffffff;
  border-bottom: 1px solid rgba(41, 72, 63, 0.12);
  box-shadow: 0 8px 25px rgba(25, 45, 39, 0.08);

  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.home-page .site-header {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.home-page .site-header.header-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 1.06rem;
  line-height: 1.1;
}

.brand-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
  border-radius: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.brand-subtitle {
  margin-top: 5px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-900);
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 0.93rem;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--green-700);
}

.main-nav a:not(.nav-button) {
  position: relative;
  padding: 9px 13px;
  border-radius: 999px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.main-nav a:not(.nav-button):hover {
  color: var(--green-900);
  background: var(--green-100);
  transform: scale(1.06);
  box-shadow: 0 8px 18px rgba(41, 72, 63, 0.1);
}

.nav-button {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--white) !important;

  transition:
  transform 0.2s ease,
  box-shadow 0.2s ease,
  background-color 0.2s ease;
}

.nav-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(41, 72, 63, 0.2);
  background: var(--green-800);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  color: var(--green-900);
}

.hero {
  padding: 78px 0 90px;
  background:
    radial-gradient(circle at 10% 10%, rgba(235, 227, 214, 0.8), transparent 32%),
    linear-gradient(135deg, #fbfaf7 0%, #f5f0e7 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 74px;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--green-700);
}

.eyebrow.light {
  color: #d8ebe4;
}

h1, h2, h3 {
  margin-top: 0;
}

h1, h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.12;
  color: var(--green-900);
}

h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

h3 {
  color: var(--green-900);
}

.hero-text {
  max-width: 650px;
  font-size: 1.15rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 28px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.96rem;

  transition:
  transform 0.2s ease,
  box-shadow 0.2s ease,
  background-color 0.2s ease,
  color 0.2s ease,
  border-color 0.2s ease;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(41, 72, 63, 0.18);
}

.button:active {
  transform: translateY(-1px) scale(0.98);
}

.button.primary {
  background: var(--green-900);
  color: var(--white);
}

.button.primary:hover {
  background: var(--green-800);
}

.button.secondary {
  border-color: var(--green-900);
  color: var(--green-900);
  background: transparent;
}

.button.secondary:hover {
  background: var(--green-900);
  color: var(--white);
  border-color: var(--green-900);
}

.button.full {
  width: 100%;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 7px 12px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.83rem;
  color: var(--muted);
}

.hero-card {
  position: relative;
  min-height: 570px;
  border-radius: 42px;
  background: linear-gradient(160deg, #d9e5df, #b9d0c6);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.abstract-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.shape-one {
  width: 230px;
  height: 230px;
  background: rgba(255,255,255,0.3);
  top: -70px;
  right: -40px;
}

.shape-two {
  width: 170px;
  height: 170px;
  background: rgba(235,227,214,0.75);
  bottom: 15px;
  left: -50px;
}

.room {
  position: absolute;
  inset: 50px 32px 100px;
  border-radius: 170px 170px 24px 24px;
  background: #f8f6f1;
  overflow: hidden;
}

.window {
  position: absolute;
  width: 165px;
  height: 220px;
  background: linear-gradient(#cfe3e5, #eef4ef);
  border: 10px solid #ffffff;
  border-radius: 90px 90px 8px 8px;
  left: 50%;
  transform: translateX(-50%);
  top: 42px;
  box-shadow: inset 0 0 0 1px #d9e5df;
}

.window::before,
.window::after {
  content: "";
  position: absolute;
  background: #ffffff;
}

.window::before {
  width: 6px;
  height: 100%;
  left: 50%;
}

.window::after {
  height: 6px;
  width: 100%;
  top: 52%;
}

.chair {
  position: absolute;
  width: 135px;
  height: 128px;
  bottom: 40px;
  background: #91ad9f;
  border-radius: 70px 70px 22px 22px;
  box-shadow: 0 18px 25px rgba(41,72,63,0.18);
}

.chair::after {
  content: "";
  position: absolute;
  width: 115%;
  height: 42px;
  background: #77998a;
  left: -7.5%;
  bottom: -8px;
  border-radius: 18px;
}

.chair-left {
  left: 38px;
  transform: rotate(-3deg);
}

.chair-right {
  right: 38px;
  transform: rotate(3deg);
}

.table {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 18px;
  border-radius: 50%;
  background: #a98769;
  z-index: 2;
}

.table::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 58px;
  background: #8f6e53;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
}

.plant {
  position: absolute;
  right: 25px;
  top: 115px;
  width: 70px;
  height: 120px;
}

.plant::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 17px;
  width: 38px;
  height: 38px;
  background: #b98668;
  border-radius: 8px 8px 18px 18px;
}

.plant span {
  position: absolute;
  width: 30px;
  height: 58px;
  background: #567d68;
  border-radius: 90% 10% 90% 10%;
  bottom: 32px;
  left: 20px;
  transform-origin: bottom center;
}

.plant span:nth-child(1) { transform: rotate(-34deg); }
.plant span:nth-child(2) { transform: rotate(18deg); }
.plant span:nth-child(3) { transform: rotate(55deg); }

.floating-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.94);
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(41,72,63,0.15);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note span {
  color: var(--muted);
  font-size: 0.83rem;
}

.intro {
  padding: 100px 0;
}

.intro p:not(.eyebrow) {
  font-size: 1.08rem;
  color: var(--muted);
}

.section {
  padding: 110px 0;
}

.soft-bg {
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}

.section-heading > p {
  color: var(--muted);
  margin-bottom: 28px;
}

.cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.service-card {
  flex: 0 1 calc(25% - 18px);
  box-sizing: border-box;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(41,72,63,0.08);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 800;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.approach-grid {
  display: block;
}

.approach-content {
  width: min(1000px, 100%);
  margin: 0 auto;
}


.quote-card p {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  color: var(--green-900);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.check-list li {
  position: relative;
  padding: 13px 0 13px 38px;
  border-bottom: 1px solid var(--border);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-700);
  font-size: .75rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.profile-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 20px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-lg);
}

.profile-photo {
  min-height: 330px;
  border-radius: 90px 90px 26px 26px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.profile-one {
  background: linear-gradient(145deg, #c7d9d2, #8daf9f);
}

.profile-two {
  background: linear-gradient(145deg, #eadfce, #c5ad91);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.profile-two img {
  width: 104%;
  height: 104%;
  object-position: center 44%;
  transform: scale(1.01);
}

.role {
  margin: 0 0 3px;
  color: var(--green-700);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

.profile-content h3 {
  font-size: 1.75rem;
  margin-bottom: 2px;
}

.credential,
.languages,
.profile-content p {
  color: var(--muted);
}

.credential {
  margin-top: 0;
  font-weight: 600;
}

.profile-content a {
  color: var(--green-800);
  font-weight: 700;
}

.center-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 55px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps article {
  position: relative;
  padding: 28px 24px;
  border-top: 2px solid var(--green-700);
  background: var(--white);
}

.steps span {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--sand);
}

.steps p {
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 72px;
  align-items: start;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--green-900);
  color: var(--white);
  box-shadow: var(--shadow);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.couple-card {
  background: linear-gradient(145deg, #27443a, #1d3129);
}

.pricing-card .small-label {
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .75rem;
  color: #cfe0d9;
}

.price {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  line-height: 1;
  margin: 10px 0;
}

.pricing-card ul {
  padding-left: 20px;
  margin: 25px 0;
}

.pricing-card .button.primary {
  background: var(--white);
  color: var(--green-900);
}

.faq-wrap {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
}

.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--green-900);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  font-size: 1.4rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  color: var(--muted);
  max-width: 90%;
}

.contact-section {
  background: var(--green-900);
  color: var(--white);
}

.contact-section h2 {
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.contact-form {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--ink);
}

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

label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 16px;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fbfcfb;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #aac3b8;
  border-color: transparent;
}

.form-note {
  font-size: .78rem;
  color: var(--muted);
  margin: 12px 0 0;
}

footer {
  padding: 70px 0 25px;
  background: #1f332d;
  color: #d5e1dc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .9fr;
  gap: 50px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 14px;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 17px;
}

.footer-grid a:not(.brand) {
  display: block;
  margin: 9px 0;
  color: #d5e1dc;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem;
  color: #abc0b8;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 15px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 12px;
  }

  .hero-grid,
  .section-heading,
  .approach-grid,
  .pricing-grid,
  .faq-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 520px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-visual {
    max-width: 620px;
  }

  .quote-card {
    right: 30px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero,
  .section,
  .intro {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    min-height: 430px;
  }

  .room {
    inset: 35px 18px 90px;
  }

  .chair {
    width: 105px;
    height: 105px;
  }

  .chair-left { left: 18px; }
  .chair-right { right: 18px; }

  .cards-grid,
  .steps,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .profile-photo {
    min-height: 250px;
  }

  .section-heading {
    gap: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .nav-wrap {
    min-height: 70px;
  }

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

  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .hero {
    padding: 56px 0 64px;
  }

  .hero-grid {
    gap: 36px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-points span {
    width: 100%;
    text-align: center;
  }

  .section,
  .intro {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .profile-card {
    padding: 20px;
    gap: 18px;
  }

  .profile-photo {
    min-height: 220px;
    border-radius: 28px 28px 18px 18px;
  }

  .pricing-card,
  .service-card {
    padding: 22px;
  }

  .footer-grid {
    gap: 30px;
  }
}

.linkedin-link {
  display: block;
  margin-top: 8px;
  font-size: .9rem;
  color: var(--muted) !important;
}
.linkedin-link:hover {
  color: var(--green-700) !important;
}

.hidden-field {
  display: none;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  background: var(--cream);
}

.thank-you-card {
  width: min(680px, 100%);
  padding: 50px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.thank-you-card h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
  transform 0.2s ease,
  box-shadow 0.2s ease,
  color 0.25s ease,
  border-color 0.25s ease;
}

.button::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background: var(--green-700);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.90s ease;
  z-index: -1;
}

.button:hover::before {
  transform: translate(-50%, -50%) scale(18);
}

.button:hover {
  color: var(--white);
}
.button.primary::before {
  background: var(--green-700);

  .button.secondary::before {
  background: var(--green-900);
}

.button.secondary:hover {
  color: var(--white);
  border-color: var(--green-900);
}
}

.policy-page {
  min-height: 100vh;
  padding: 90px clamp(16px, 3vw, 50px);
  background: var(--cream);
}

.policy-content {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 65px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.policy-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.policy-content section {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.policy-content section:last-of-type {
  border-bottom: 0;
}

.policy-content section h2 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.policy-content section p {
  color: var(--muted);
}

.policy-update {
  color: var(--muted);
  font-size: 0.9rem;
}


.hero-video-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--green-900);
  box-shadow: var(--shadow);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(25, 45, 39, 0.48),
    rgba(25, 45, 39, 0.06) 60%
  );
  pointer-events: none;
}

.hero-video-card .floating-note {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.hero-with-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
html,
body {
  margin: 0;
  padding: 0;
}
.home-page {
  padding-top: 0;
}

.hero-background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-background-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    circle at center,
    rgba(250, 247, 239, 0.82) 0%,
    rgba(250, 247, 239, 0.68) 48%,
    rgba(28, 48, 42, 0.28) 100%
  );
}
  

.hero-with-video .container {
  position: relative;
  z-index: 2;
}

.hero-with-video .hero-grid {
  display: block;
}

.hero-with-video .hero-copy {
  max-width: 720px;
}

.hero-with-video {
  position: relative;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-with-video .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-with-video .hero-grid {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-with-video .hero-copy {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.hero-with-video .hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-with-video .hero-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-with-video .hero-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

body:not(.home-page) {
  padding-top: 90px;
}


/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 85px 0 25px;
  background: #0b1c18;
  color: #ffffff;
}

/* =========================
   STRUCTURE PRINCIPALE
========================= */

.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 0.75fr 1.15fr 0.85fr;
  gap: clamp(35px, 5vw, 75px);
  align-items: start;
}

/* =========================
   LOGO ET PRÉSENTATION
========================= */

.footer-brand-section {
  max-width: 520px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: #ffffff;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.footer-brand:hover {
  transform: translateY(-4px);
  opacity: 0.92;
}

.footer-logo {
  width: clamp(110px, 10vw, 155px);
  height: clamp(110px, 10vw, 155px);
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-brand-name {
  color: #ffffff;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.15;
}

.footer-brand-subtitle {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.footer-description {
  max-width: 510px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

/* =========================
   TITRES DES COLONNES
========================= */

.footer-column h3 {
  position: relative;
  margin: 0 0 25px;
  padding-bottom: 12px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

/* =========================
   NAVIGATION
========================= */

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  line-height: 1.4;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-links a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.25s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(8px);
}

.footer-links a:hover::before {
  opacity: 1;
}

/* =========================
   NOUS JOINDRE
========================= */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  line-height: 1.55;
  overflow-wrap: anywhere;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-contact a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================
   RÉSEAUX SOCIAUX
========================= */

.footer-socials {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.social-link:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
}

.social-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
}

.social-link:nth-child(2) svg {
  fill: none;
}

.social-link:nth-child(2) .social-dot {
  fill: currentColor;
  stroke: none;
}

/* =========================
   PARTIE DU BAS
========================= */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 65px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.87rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.87rem;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

.footer-top-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-top-link:hover {
  transform: translateY(-3px);
}

/* =========================
   TABLETTE
========================= */

@media (max-width: 1150px) {
  .footer-main {
    grid-template-columns: 1.5fr 1fr;
  }

  .footer-brand-section {
    max-width: 600px;
  }
}

/* =========================
   TÉLÉPHONE
========================= */

@media (max-width: 700px) {
  .site-footer {
    padding: 60px 0 25px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-logo {
    width: 110px;
    height: 110px;
    border-radius: 25px;
  }

  .footer-brand-name {
    font-size: 1.15rem;
  }

  .footer-description {
    margin-top: 24px;
  }

  .footer-socials {
    gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 50px;
  }

  .footer-legal-links {
    justify-content: flex-start;
    gap: 15px 20px;
  }
}

@media (max-width: 430px) {
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo {
    width: 135px;
    height: 135px;
  }

  .footer-socials {
    flex-wrap: nowrap;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }
}

/* =========================
   SECTION CONTACT
========================= */

.contact-section {
  padding: 100px 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(200, 219, 207, 0.18),
      transparent 38%
    ),
    #f4f0e7;
}

.contact-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.15fr);
  gap: clamp(45px, 6vw, 90px);
  align-items: start;
}

/* =========================
   COLONNE GAUCHE
========================= */

.contact-content {
  position: sticky;
  top: 130px;
}

.contact-intro {
  max-width: 560px;
}

.contact-intro .eyebrow {
  margin-bottom: 14px;
  color: #45665c;
}

.contact-intro h2 {
  max-width: 520px;
  margin: 0 0 22px;
  color: #17342c;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.contact-intro-text {
  max-width: 570px;
  margin: 0;
  color: #586b64;
  font-size: 1.04rem;
  line-height: 1.75;
}

/* =========================
   CARTE NOUS JOINDRE
========================= */

.contact-info-card {
  max-width: 560px;
  margin-top: 38px;
  padding: 32px;
  border: 1px solid rgba(36, 76, 65, 0.12);
  border-radius: 26px;
  background: #17342c;
  color: #ffffff;
  box-shadow: 0 22px 48px rgba(27, 61, 51, 0.15);
}

.contact-info-card h3 {
  margin: 0 0 26px;
  color: #ffffff;
  font-size: 1.45rem;
}

.contact-info-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-width: 0;
}

.contact-info-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 0.93rem;
}

.contact-info-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.contact-info-item a {
  display: inline-block;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  overflow-wrap: anywhere;
  line-height: 1.5;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.contact-info-item a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* =========================
   CARTE DU FORMULAIRE
========================= */

.contact-form-card {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(36, 76, 65, 0.1);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(27, 61, 51, 0.12);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #29483f;
  font-size: 0.94rem;
  font-weight: 650;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(41, 72, 63, 0.18);
  border-radius: 14px;
  outline: none;
  background: #fbfaf7;
  color: #243c35;
  font: inherit;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.contact-form input,
.contact-form select {
  min-height: 52px;
}

.contact-form textarea {
  min-height: 135px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #456d60;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(69, 109, 96, 0.11);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8b9893;
}

.contact-form .full {
  width: 100%;
  margin-top: 4px;
  min-height: 54px;
}

/* =========================
   CONSENTEMENT
========================= */

.consent-checkbox {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 12px !important;
  align-items: start;
  padding: 16px;
  border-radius: 14px;
  background: #f5f3ed;
  color: #5c6d66 !important;
  font-size: 0.86rem !important;
  font-weight: 400 !important;
  line-height: 1.55;
}

.consent-checkbox input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 2px;
  padding: 0;
  accent-color: #29483f;
}

.consent-checkbox a {
  color: #29483f;
  font-weight: 700;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

/* =========================
   TABLETTE
========================= */

@media (max-width: 1050px) {
  .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-content {
    position: static;
  }

  .contact-intro,
  .contact-info-card {
    max-width: none;
  }

  .contact-info-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   TÉLÉPHONE
========================= */

@media (max-width: 650px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-intro h2 {
    font-size: 2.25rem;
  }

  .contact-info-card {
    padding: 25px;
  }

  .contact-info-list {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-form-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   ADAPTATION TÉLÉPHONE
======================================== */

@media (max-width: 700px) {

  /* Empêche les débordements horizontaux */
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 32px, 1200px);
    margin-inline: auto;
  }

  /* ========================================
     HEADER
  ======================================== */

  .site-header {
    min-height: 72px;
  }

  .nav-wrap {
    min-height: 72px;
    gap: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 0.82rem;
  }

  .brand-subtitle {
    font-size: 0.68rem;
  }

  /* Les liens passent sur plusieurs lignes */
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
  }

  .nav-links a {
    padding: 7px 9px;
    font-size: 0.78rem;
  }

  /* ========================================
     SECTION D’ACCUEIL
  ======================================== */

  .hero-with-video {
    min-height: 100svh;
    height: auto;
    padding: 120px 0 70px;
  }

  .hero-copy {
    width: 100%;
    padding-inline: 4px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
    line-height: 1.05;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  /* ========================================
     SECTIONS GÉNÉRALES
  ======================================== */

  section {
    scroll-margin-top: 90px;
  }

  .section {
    padding: 70px 0;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  /* ========================================
     CARTES DE SERVICES
  ======================================== */

  .cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    width: 100%;
    flex-basis: 100%;
  }

  /* ========================================
     SECTION CONTACT
  ======================================== */

  .contact-section {
    padding: 70px 0;
  }

  .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact-content {
    position: static;
    width: 100%;
  }

  .contact-intro h2 {
    font-size: 2.25rem;
  }

  .contact-intro-text {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  /* Carte Nous joindre */
  .contact-info-card {
    width: 100%;
    max-width: none;
    margin-top: 28px;
    padding: 24px 20px;
    border-radius: 22px;
    transform: none;
  }

  .contact-info-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-info-item {
    width: 100%;
  }

  .contact-info-item a {
    overflow-wrap: anywhere;
  }

  /* Formulaire */
  .contact-form-card {
    width: 100%;
    padding: 24px 18px;
    border-radius: 22px;
  }

  .contact-form {
    gap: 14px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-form label {
    gap: 6px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-form textarea {
    min-height: 120px;
  }

  .consent-checkbox {
    grid-template-columns: 20px 1fr;
    padding: 14px;
  }

  .contact-form .button {
    width: 100%;
  }

  /* ========================================
     FOOTER
  ======================================== */

  .site-footer {
    padding: 58px 0 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-brand-section {
    max-width: none;
  }

  .footer-brand {
    width: 100%;
    align-items: center;
  }

  .footer-logo {
    width: 105px;
    height: 105px;
    border-radius: 24px;
  }

  .footer-brand-name {
    font-size: 1.15rem;
  }

  .footer-description {
    max-width: none;
    margin-top: 22px;
    font-size: 0.95rem;
  }

  .footer-column h3 {
    margin-bottom: 20px;
  }

  /* Les quatre réseaux restent sur la même ligne */
  .footer-socials {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .social-link {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 45px;
  }

  .footer-legal-links {
    justify-content: flex-start;
    gap: 14px 18px;
  }
}


/* ========================================
   TRÈS PETITS TÉLÉPHONES
======================================== */

@media (max-width: 430px) {

  .container {
    width: min(100% - 24px, 1200px);
  }


  .nav-links a {
    font-size: 0.72rem;
    padding: 6px 7px;
  }

  .hero-copy h1 {
    font-size: 2.25rem;
  }

  .contact-form-card {
    padding: 20px 14px;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo {
    width: 125px;
    height: 125px;
  }

  .footer-socials {
    gap: 8px;
  }

  .social-link {
    width: 39px;
    height: 39px;
  }
}
/* =========================================
   NOTRE APPROCHE
========================================= */

.approach-editorial {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #e4eee9 0%,
      #eef3ef 52%,
      #f7f4ed 100%
    );
}


/* =========================================
   STRUCTURE
========================================= */

.approach-editorial-grid {
  display: grid;

  grid-template-columns:
    minmax(380px, 0.9fr)
    minmax(540px, 1.1fr);

  gap: clamp(60px, 8vw, 120px);

  align-items: center;
}


/* =========================================
   PARTIE GAUCHE
========================================= */

.approach-editorial-intro {
  position: relative;

  min-height: 590px;

  display: flex;
  align-items: center;

  overflow: hidden;

  border-radius: 34px;

}



/* LOGO EN ARRIÈRE-PLAN */

.approach-background-logo {
  position: absolute;

  width: clamp(430px, 44vw, 720px);
  max-width: none;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%)
    scale(1.05);

  opacity: 0.075;

  mix-blend-mode: multiply;

  pointer-events: none;

  user-select: none;

  transition:
    transform 0.8s ease,
    opacity 0.8s ease;
}


.approach-editorial-intro:hover
.approach-background-logo {

  transform:
    translate(-50%, -50%)
    scale(1.1)
    rotate(-2deg);

  opacity: 0.1;
}


/* TEXTE */

.approach-intro-content {
  position: relative;

  z-index: 2;

  max-width: px;

  padding:
    clamp(25px, 4vw, 50px);
}


.approach-intro-content .eyebrow {
  margin-bottom: 16px;
}


.approach-intro-content h2 {
  max-width: 570px;

  margin: 0 0 26px;

  color: var(--green-900);

  font-size:
    clamp(2.5rem, 4.3vw, 4rem);

  line-height: 1.07;

  letter-spacing: -0.035em;
}


.approach-editorial-lead {
  max-width: 550px;

  margin: 0 0 17px;

  color: #566a63;

  font-size: 1.03rem;

  line-height: 1.78;
}


/* =========================================
   ACCORDÉON
========================================= */

.approach-accordion {
  border-top:
    1px solid rgba(41, 72, 63, 0.18);
}


.approach-item {
  position: relative;

  border-bottom:
    1px solid rgba(41, 72, 63, 0.18);

  transition:
    background 0.3s ease;
}


/* =========================================
   TITRE CLIQUABLE
========================================= */

.approach-trigger {
  position: relative;

  display: grid;

  grid-template-columns:
    52px
    1fr
    44px;

  gap: 18px;

  align-items: center;

  width: 100%;

  padding:
    23px 8px;

  border: 0;

  background: transparent;

  color: var(--green-900);

  text-align: left;

  cursor: pointer;

  font-family: inherit;

  transition:
    padding 0.3s ease;
}


/* FOND AU SURVOL */

.approach-trigger::before {
  content: "";

  position: absolute;

  inset: 5px -12px;

  z-index: 0;

  border-radius: 18px;

  background:
    rgba(255, 255, 255, 0.64);

  opacity: 0;

  transform:
    scaleX(0.97);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}


.approach-trigger > * {
  position: relative;
  z-index: 1;
}


.approach-item:hover
.approach-trigger::before {

  opacity: 1;

  transform:
    scaleX(1);
}


.approach-item:hover
.approach-trigger {

  padding-left: 17px;

  padding-right: 17px;
}


/* =========================================
   ICÔNES
========================================= */

.approach-line-icon {
  display: flex;

  width: 42px;
  height: 42px;

  flex-shrink: 0;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    rgba(41, 72, 63, 0.08);

  color:
    var(--green-900);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}


.approach-line-icon svg {
  width: 20px;
  height: 20px;

  fill: none;

  stroke:
    currentColor;

  stroke-width: 1.8;

  stroke-linecap: round;

  stroke-linejoin: round;
}


.approach-item:hover
.approach-line-icon {

  transform:
    scale(1.08);

  background:
    var(--green-700);

  color:
    var(--white);
}


.approach-item.active
.approach-line-icon {

  transform:
    scale(1.08);

  background:
    var(--green-900);

  color:
    var(--white);
}


/* =========================================
   TITRE
========================================= */

.approach-trigger-title {
  color:
    var(--green-900);

  font-family:
    "Playfair Display",
    serif;

  font-size: 1.3rem;

  font-weight: 700;

  line-height: 1.3;
}


/* =========================================
   +
========================================= */

.approach-plus {
  display: flex;

  width: 38px;
  height: 38px;

  align-items: center;
  justify-content: center;

  justify-self: end;

  border-radius: 50%;

  background:
    rgba(41, 72, 63, 0.08);

  color:
    var(--green-900);

  font-size: 1.35rem;

  font-weight: 300;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}


.approach-item.active
.approach-plus {

  transform:
    rotate(45deg);

  background:
    var(--green-900);

  color:
    var(--white);
}


/* =========================================
   DESCRIPTION FERMÉE
========================================= */

.approach-description {
  display: grid;

  grid-template-rows: 0fr;

  opacity: 0;

  transition:
    grid-template-rows 0.4s ease,
    opacity 0.35s ease;
}


.approach-description-inner {
  overflow: hidden;
}


.approach-description p {
  max-width: 610px;

  margin:
    0
    55px
    0
    78px;

  padding-bottom: 0;

  color:
    var(--muted);

  font-size: 0.96rem;

  line-height: 1.72;

  transition:
    padding-bottom 0.4s ease;
}


/* =========================================
   DESCRIPTION OUVERTE
========================================= */

.approach-item.active
.approach-description {

  grid-template-rows: 1fr;

  opacity: 1;
}


.approach-item.active
.approach-description p {

  padding-bottom: 25px;
}


/* =========================================
   ÉTAT ACTIF
========================================= */

.approach-item.active {

  background:
    rgba(255, 255, 255, 0.3);
}


/* =========================================
   TABLETTE
========================================= */

@media (max-width: 1050px) {

  .approach-editorial-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }


  .approach-editorial-intro {
    min-height: 480px;
  }


  .approach-background-logo {
    width: 650px;
  }


  .approach-intro-content {
    max-width: 720px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

  .approach-editorial-intro {
    min-height: 500px;

    border-radius: 25px;
  }


  .approach-background-logo {
    width: 520px;

    opacity: 0.06;
  }


  .approach-intro-content {
    padding: 25px 10px;
  }


  .approach-intro-content h2 {
    font-size: 2.3rem;
  }


  .approach-trigger {
    grid-template-columns:
      44px
      1fr
      36px;

    gap: 11px;

    padding:
      21px
      2px;
  }


  .approach-line-icon {
    width: 38px;
    height: 38px;
  }


  .approach-line-icon svg {
    width: 18px;
    height: 18px;
  }


  .approach-trigger-title {
    font-size: 1.08rem;
  }


  .approach-plus {
    width: 34px;
    height: 34px;
  }


  .approach-description p {
    margin:
      0
      40px
      0
      55px;
  }

}

.approach-editorial {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      #e4eee9 0%,
      #eef3ef 52%,
      #f7f4ed 100%
    );
}
.approach-section-logo {
  position: absolute;

  left: 50%;
  top: 56%;

  width: clamp(700px, 68vw, 1100px);
  max-width: none;

  transform: translate(-50%, -50%);

  opacity: 0.08;

  mix-blend-mode: multiply;

  pointer-events: none;
  user-select: none;

  z-index: 0;
}

.approach-editorial .container {
  position: relative;
  z-index: 1;
}


/* =========================================
   TARIFS ET MODALITÉS
   VERSION VERTE / DYNAMIQUE
========================================= */

.pricing-section {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}


/* =========================================
   EN-TÊTE
========================================= */

.pricing-heading {
  width: 100%;
  max-width: none;
  margin: 0 0 55px 0;
  text-align: left;
}

.pricing-heading .eyebrow {
  margin-left: 0;
  text-align: left;
}

.pricing-heading h2 {
  margin-left: 0;
  text-align: left;
}

.pricing-heading > p:last-child {
  max-width: 650px;
  margin: 0;
  text-align: left;
}

/* =========================================
   GRILLE
========================================= */

.pricing-new-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 42px);

  max-width: 1150px;
  margin: 0 auto;
}


/* =========================================
   CARTES
========================================= */

.pricing-new-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 600px;

  padding: clamp(32px, 4vw, 44px);

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);

  background:
    linear-gradient(
      145deg,
      var(--green-900),
      #1d332c
    );

  color: var(--white);

  box-shadow:
    0 22px 55px rgba(41, 72, 63, 0.17);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


/* Deuxième carte légèrement différente */

.pricing-new-card:nth-child(2) {
  background:
    linear-gradient(
      145deg,
      #365c51,
      #203c34
    );
}


/* Effet lumineux subtil */

.pricing-new-card::after {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  top: -170px;
  right: -150px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.08);

  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}


.pricing-new-card:hover {
  transform: translateY(-9px);

  border-color:
    rgba(255, 255, 255, 0.18);

  box-shadow:
    0 32px 70px rgba(41, 72, 63, 0.25);
}


.pricing-new-card:hover::after {
  transform: scale(1.15);
}


/* =========================================
   HAUT
========================================= */

.pricing-card-top {
  position: relative;
  z-index: 2;

  display: flex;

  justify-content: space-between;
  align-items: flex-start;

  gap: 25px;
}


.pricing-type {
  margin: 0 0 5px;

  color: #cfe0d9;

  font-size: 0.73rem;
  font-weight: 800;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}


.pricing-card-top h3 {
  margin: 0;

  color: var(--white);

  font-family:
    "Playfair Display",
    serif;

  font-size:
    clamp(1.8rem, 3vw, 2.45rem);
}


/* =========================================
   PRIX
========================================= */

.pricing-price {
  display: flex;

  flex-direction: column;

  align-items: flex-end;

  flex-shrink: 0;
}


.pricing-amount {
  color: var(--white);

  font-family:
    "Playfair Display",
    serif;

  font-size:
    clamp(2.3rem, 3.4vw, 3.1rem);

  font-weight: 700;

  line-height: 1;
}


.pricing-duration {
  margin-top: 7px;

  color:
    rgba(255, 255, 255, 0.63);

  font-size: 0.82rem;
}


/* =========================================
   SÉPARATEUR
========================================= */

.pricing-divider {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 1px;

  margin: 28px 0;

  background:
    rgba(255, 255, 255, 0.14);
}


/* =========================================
   INTRO
========================================= */

.pricing-intro {
  position: relative;
  z-index: 2;

  margin: 0 0 28px;

  color:
    rgba(255, 255, 255, 0.76);

  line-height: 1.7;
}


/* =========================================
   LISTE
========================================= */

.pricing-features {
  position: relative;
  z-index: 2;

  display: flex;

  flex-direction: column;

  gap: 16px;

  margin: 0 0 34px;
  padding: 0;

  list-style: none;
}


.pricing-features li {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  color:
    rgba(255, 255, 255, 0.78);

  line-height: 1.55;
}


/* Check */

.pricing-check {
  display: flex;

  width: 25px;
  height: 25px;

  flex-shrink: 0;

  align-items: center;
  justify-content: center;

  margin-top: 1px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.11);

  color: var(--white);

  font-size: 0.72rem;
  font-weight: 800;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}


.pricing-new-card:hover
.pricing-check {
  transform: scale(1.1);

  background:
    rgba(255, 255, 255, 0.2);
}


/* =========================================
   BOUTON
========================================= */

.pricing-select-service {
  position: relative;
  z-index: 2;

  width: 100%;

  margin-top: auto;

  gap: 10px;

  overflow: hidden;

  border: 1px solid var(--white);

  background: var(--white);

  color: var(--green-900);

  transition:
    transform 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}


/* Cercle animé derrière */

.pricing-select-service::before {
  content: "";

  position: absolute;

  width: 20px;
  height: 20px;

  left: 50%;
  top: 50%;

  z-index: -1;

  border-radius: 50%;

  background: var(--green-700);

  transform:
    translate(-50%, -50%)
    scale(0);

  transition:
    transform 0.8s ease;
}


.pricing-select-service:hover::before {
  transform:
    translate(-50%, -50%)
    scale(35);
}


.pricing-select-service:hover {
  color: var(--white);

  transform: translateY(-3px);

  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.16);
}


.pricing-select-service span {
  transition:
    transform 0.3s ease;
}


.pricing-select-service:hover span {
  transform:
    translateX(6px);
}


/* =========================================
   MODALITÉS
========================================= */

.pricing-modalities {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  max-width: 1150px;

  margin: 42px auto 0;

  overflow: hidden;

  border:
    1px solid var(--border);

  border-radius: 22px;

  background: var(--white);

  box-shadow:
    0 12px 35px rgba(41, 72, 63, 0.05);
}


.pricing-modality {
  display: flex;

  align-items: center;

  gap: 14px;

  min-height: 110px;

  padding: 22px;

  border-right:
    1px solid var(--border);

  background: var(--white);

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}


.pricing-modality:last-child {
  border-right: 0;
}


.pricing-modality:hover {
  background: var(--green-100);
}


/* =========================================
   ICÔNES MODALITÉS
========================================= */

.pricing-modality-icon {
  display: flex;

  width: 44px;
  height: 44px;

  flex-shrink: 0;

  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: var(--green-100);

  color: var(--green-900);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}


.pricing-modality:hover
.pricing-modality-icon {
  transform: scale(1.08);

  background: var(--green-900);

  color: var(--white);
}


.pricing-modality-icon svg {
  width: 20px;
  height: 20px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.7;

  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================
   TEXTE MODALITÉS
========================================= */

.pricing-modality strong {
  display: block;

  margin-bottom: 3px;

  color: var(--green-900);

  font-size: 0.9rem;
}


.pricing-modality p {
  margin: 0;

  color: var(--muted);

  font-size: 0.84rem;

  line-height: 1.45;
}


.pricing-modality a {
  color: var(--green-700);

  font-size: 0.84rem;

  font-weight: 700;

  text-decoration: underline;

  text-underline-offset: 3px;
}


/* =========================================
   NOTE
========================================= */

.pricing-note {
  max-width: 850px;

  margin: 28px auto 0;

  color: var(--muted);

  font-size: 0.84rem;

  line-height: 1.6;

  text-align: center;
}


/* =========================================
   TABLETTE
========================================= */

@media (max-width: 950px) {

  .pricing-modalities {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .pricing-modality:nth-child(2) {
    border-right: 0;
  }

  .pricing-modality:nth-child(-n+2) {
    border-bottom:
      1px solid var(--border);
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .pricing-heading {
    margin-bottom: 40px;
  }


  .pricing-new-grid {
    grid-template-columns: 1fr;
  }


  .pricing-new-card {
    min-height: auto;
  }


  .pricing-card-top {
    flex-direction: column;

    gap: 18px;
  }


  .pricing-price {
    align-items: flex-start;
  }


  .pricing-modalities {
    grid-template-columns: 1fr;
  }


  .pricing-modality {
    min-height: auto;

    border-right: 0;

    border-bottom:
      1px solid var(--border);
  }


  .pricing-modality:last-child {
    border-bottom: 0;
  }

}

/* =========================================
   CORRECTION FOOTER - PAGES POLITIQUES
========================================= */

.site-footer {
  position: relative;
  z-index: 50;
  pointer-events: auto;
}

.site-footer a,
.site-footer button {
  position: relative;
  z-index: 51;
  pointer-events: auto;
  cursor: pointer;
}

.policy-page {
  position: relative;
  z-index: 1;
}

/* =========================================
   NOTRE ÉQUIPE
========================================= */

.team-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at top right,
      rgba(73, 116, 104, 0.10),
      transparent 32%
    ),
    var(--cream);
}


/* =========================================
   TITRE
========================================= */

.team-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 60px;
  align-items: end;

  margin-bottom: 55px;
}


.team-heading h2 {
  margin: 0;

  color: var(--green-900);

  font-size:
    clamp(2.4rem, 4.3vw, 3.9rem);

  line-height: 1.08;
}


.team-heading > p {
  margin: 0;

  color: var(--muted);

  line-height: 1.75;
}


/* =========================================
   GRILLE
========================================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap:
    clamp(28px, 4vw, 48px);
}


/* =========================================
   CARTE
========================================= */

.profile-card {
  position: relative;

  overflow: hidden;

  border:
    1px solid rgba(41, 72, 63, 0.10);

  border-radius: 30px;

  background:
    rgba(255, 255, 255, 0.92);

  box-shadow:
    0 18px 50px rgba(41, 72, 63, 0.08);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}


.profile-card:hover {
  transform:
    translateY(-10px);

  border-color:
    rgba(41, 72, 63, 0.20);

  box-shadow:
    0 32px 70px rgba(41, 72, 63, 0.14);
}


/* =========================================
   PHOTO
========================================= */

.profile-photo {
  position: relative;

  height: 430px;

  overflow: hidden;

  background:
    var(--green-100);
}


.profile-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition:
    transform 0.7s ease;
}


.profile-card:hover
.profile-photo img {
  transform:
    scale(1.055);
}


/* dégradé subtil */

.profile-photo-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(16, 38, 31, 0.38),
      transparent 48%
    );

  pointer-events: none;
}


/* petite étiquette */

.profile-photo-label {
  position: absolute;

  left: 24px;
  bottom: 24px;

  padding:
    9px 15px;

  border:
    1px solid rgba(255, 255, 255, 0.22);

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.16);

  color:
    #ffffff;

  font-size:
    0.78rem;

  font-weight: 700;

  letter-spacing:
    0.05em;

  backdrop-filter:
    blur(10px);
}


/* =========================================
   CONTENU
========================================= */

.profile-content {
  padding:
    clamp(28px, 4vw, 42px);
}


.role {
  margin:
    0 0 8px;

  color:
    var(--green-700);

  font-size:
    0.76rem;

  font-weight:
    800;

  letter-spacing:
    0.12em;

  text-transform:
    uppercase;
}


.profile-content h3 {
  margin:
    0 0 7px;

  color:
    var(--green-900);

  font-family:
    "Playfair Display",
    serif;

  font-size:
    clamp(1.9rem, 3vw, 2.5rem);
}


.credential {
  margin:
    0 0 25px;

  color:
    var(--green-700);

  font-weight:
    600;
}


.profile-description {
  margin:
    0 0 18px;

  color:
    var(--muted);

  line-height:
    1.72;
}


/* =========================================
   LANGUES
========================================= */

.profile-meta {
  margin:
    28px 0;

  padding:
    18px 20px;

  border-radius:
    16px;

  background:
    var(--green-100);

  color:
    var(--green-900);
}


.profile-meta span {
  display: flex;

  flex-direction: column;

  gap: 3px;

  font-size:
    0.9rem;
}


.profile-meta strong {
  font-size:
    0.75rem;

  letter-spacing:
    0.09em;

  text-transform:
    uppercase;
}


/* =========================================
   BOUTONS
========================================= */

.profile-actions {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;

  margin-top: 30px;
}


.profile-button {
  position: relative;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  padding:
    13px 18px;

  border-radius:
    999px;

  font-size:
    0.9rem;

  font-weight:
    700;

  transition:
    transform 0.28s ease,
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}


.profile-button.primary {
  background:
    var(--green-900);

  color:
    var(--white);
}


.profile-button.primary:hover {
  transform:
    translateY(-3px);

  background:
    var(--green-700);

  box-shadow:
    0 12px 25px rgba(41, 72, 63, 0.18);
}


.profile-button.secondary {
  border:
    1px solid rgba(41, 72, 63, 0.18);

  background:
    transparent;

  color:
    var(--green-900);
}


.profile-button.secondary:hover {
  transform:
    translateY(-3px);

  border-color:
    var(--green-900);

  background:
    var(--green-100);
}


.profile-button span {
  transition:
    transform 0.25s ease;
}


.profile-button:hover span {
  transform:
    translateX(4px);
}


/* =========================================
   TABLETTE
========================================= */

@media (max-width: 950px) {

  .team-heading {
    grid-template-columns: 1fr;

    gap: 20px;
  }


  .team-heading > p {
    max-width: 650px;
  }


  .team-grid {
    grid-template-columns: 1fr;
  }


  .profile-photo {
    height: 520px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

  .profile-photo {
    height: 380px;
  }


  .profile-actions {
    flex-direction: column;
  }


  .profile-button {
    width: 100%;
  }

}

.thank-you-page-body {
  padding-top: 0 !important;
}

.thank-you-page-body .site-header {
  display: none !important;
}

.thank-you-page-body .thank-you-page {
  min-height: 100vh;
  margin-top: 0;
}
