*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --blue: #1a9baf;
  --blue-dark: #0e7a8c;
  --blue-light: #d6eef2;
  --green: #8fbf2a;
  --green-dark: #6e9520;
  --green-light: #eaf4cc;
  --forest: #2c4a2e;
  --sage: #7a9e7e;
  --sage-light: #c2d9c4;
  --cream: #f7f4ee;
  --linen: #ede8dc;
  --terracotta: #c4724a;
  --text-dark: #1a2a2b;
  --text-mid: #455758;
  --text-light: #7a8c8d;
  --white: #fdfcfa;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 4%;
  background: rgba(253, 252, 250, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26, 155, 175, 0.12);
  transition: box-shadow 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
}
.nav-links li a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 100px;
  transition: all 0.2s;
  display: block;
  cursor: pointer;
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--blue-dark);
  background: var(--blue-light);
}
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  font-weight: 500 !important;
}
.nav-cta:hover {
  background: var(--blue-dark) !important;
  color: var(--white) !important;
}

/* ── PAGES ── */
.page {
  display: none;
  padding-top: 70px;
  min-height: 100vh;
  animation: fadeIn 0.35s ease;
}
.page.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7% 6% 7% 7%;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.6rem;
}
.tag::before {
  content: "";
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--blue);
}
h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
h1 em {
  font-style: italic;
  color: var(--blue);
}
.hero-desc {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 440px;
  margin-bottom: 2.2rem;
}
.tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--green-dark);
  margin-bottom: 2.2rem;
  opacity: 0.85;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.btn {
  background: var(--blue);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
}
.btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(26, 155, 175, 0.3);
}
.btn-green {
  background: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  box-shadow: 0 8px 25px rgba(143, 191, 42, 0.3);
}
.btn-outline {
  background: none;
  border: 1.5px solid var(--blue);
  color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-ghost {
  background: none;
  color: var(--blue);
  padding: 0;
  font-size: 0.84rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
}
.btn-ghost:hover {
  gap: 14px;
}
.btn-ghost::after {
  content: "→";
  font-size: 1rem;
}
.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--linen);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: 14px;
  padding: 1rem 1.4rem;
  box-shadow: 0 16px 50px rgba(26, 155, 175, 0.18);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 2;
}
.badge-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.badge-text {
  font-size: 0.76rem;
  color: var(--text-mid);
  line-height: 1.4;
}
.badge-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* ── STATS ── */
.stats {
  background: var(--blue-dark);
  padding: 3rem 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.stat-item {
  padding: 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-num span {
  color: var(--green);
}
.stat-lbl {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(214, 238, 242, 0.8);
}

/* ── SECTIONS ── */
.section {
  padding: 5rem 8%;
}
.section-sm {
  padding: 3.5rem 8%;
}
.bg-cream {
  background: var(--cream);
}
.bg-linen {
  background: var(--linen);
}
.bg-blue {
  background: var(--blue-dark);
  color: var(--white);
}
.bg-green {
  background: var(--green-dark);
  color: var(--white);
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.6rem;
}
h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--blue-dark);
  margin: 2rem 0 0.8rem;
}
p {
  font-size: 0.94rem;
  line-height: 1.88;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
strong {
  font-weight: 500;
  color: var(--text-dark);
}
.bg-blue h2,
.bg-blue strong,
.bg-green h2,
.bg-green strong {
  color: var(--white);
}
.bg-blue p,
.bg-green p {
  color: rgba(255, 255, 255, 0.82);
}
.bg-blue h3 {
  color: rgba(214, 238, 242, 0.9);
}

.stag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.stag::before {
  content: "";
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--blue);
}
.bg-blue .stag,
.bg-green .stag {
  color: rgba(214, 238, 242, 0.8);
}
.bg-blue .stag::before,
.bg-green .stag::before {
  background: rgba(214, 238, 242, 0.6);
}
.stag-green {
  color: var(--green-dark);
}
.stag-green::before {
  background: var(--green-dark);
}

/* ── LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.img-r {
  border-radius: 18px;
  overflow: hidden;
}
.img-r.tall {
  aspect-ratio: 4/5;
}
.img-r.wide {
  aspect-ratio: 16/9;
}
.img-r img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── CARDS ── */
.cards2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--linen);
  border: 1.5px solid var(--linen);
  border-radius: 18px;
  overflow: hidden;
}
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--linen);
  border: 1.5px solid var(--linen);
  border-radius: 18px;
  overflow: hidden;
}
.card {
  background: var(--white);
  padding: 2.4rem;
  position: relative;
  transition: background 0.3s;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--blue);
  transition: height 0.4s;
}
.card:hover::before {
  height: 100%;
}
.card:hover {
  background: var(--blue-light);
}
.card-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--sage-light);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.7rem;
}
.card-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}
.card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.card p {
  font-size: 0.87rem;
  line-height: 1.72;
  margin: 0;
}
.card-cta {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue);
  cursor: pointer;
  margin-top: 1rem;
  display: block;
  text-decoration: none;
}
.card-cta:hover {
  text-decoration: underline;
}

/* ── LISTS ── */
ul.piam {
  list-style: none;
  margin: 1.2rem 0;
}
ul.piam li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 0.55rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(26, 155, 175, 0.1);
}
ul.piam li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
ul.piam li::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 6px;
}
.bg-blue ul.piam li {
  color: rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.bg-blue ul.piam li::before {
  background: var(--green);
}

/* ── CHIPS ── */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.1rem 0;
}
.chip {
  background: var(--blue-light);
  border: 1px solid rgba(26, 155, 175, 0.25);
  color: var(--blue-dark);
  font-size: 0.77rem;
  font-weight: 400;
  padding: 0.33rem 0.85rem;
  border-radius: 100px;
}

/* ── QUOTE ── */
.quote {
  background: var(--blue-dark);
  color: var(--white);
  border-radius: 16px;
  padding: 2.2rem 2.8rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: '"';
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  line-height: 1;
}
.quote p {
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.78;
  padding-left: 0.5rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ── PAGE HEADER ── */
.page-hdr {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 3.5rem 8% 3rem;
  color: var(--white);
}
.page-hdr h1 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: 0.7rem;
}
.page-hdr p {
  color: rgba(214, 238, 242, 0.82);
  font-size: 0.97rem;
  max-width: 580px;
  margin: 0;
}

/* ── PRESTATIONS ── */
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bcards {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.bcards:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(26, 155, 175, 0.15);
}
.bimg {
  height: 200px;
  overflow: hidden;
}
.bimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.bcards:hover .bimg img {
  transform: scale(1.06);
}
.bimg-ph {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.bbody {
  padding: 1.5rem;
}
.btitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.bbody p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.blink {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  cursor: pointer;
}
.blink:hover {
  text-decoration: underline;
}

/* ── ABOUT TEAM CARDS ── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.team-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1.5px solid var(--linen);
  text-align: center;
}
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}
.team-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}
.team-role {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.8rem;
}
.team-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  text-align: left;
}

/* ── MEDIA / PRESSE ── */
.press-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--linen);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem;
}
.press-img {
  width: 140px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
.press-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.press-body p {
  font-size: 0.84rem;
  color: var(--text-mid);
  margin: 0.3rem 0 0;
}
.press-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-dark);
}
.press-source {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ── HIGHLIGHTS ── */
.hlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.8rem;
}
.hl {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.hldot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 5px;
}

/* ── LOCATION ── */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.loc-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}
.loc-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.loc-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-mid);
}
.loc-text strong {
  display: block;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 1px;
}

/* ── CONTACT ── */
.cform-wrap {
  background: var(--blue-dark);
  border-radius: 20px;
  padding: 3rem;
}
.fg {
  margin-bottom: 1.1rem;
}
.fg label {
  display: block;
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(214, 238, 242, 0.7);
  margin-bottom: 0.45rem;
}
.fg input,
.fg textarea,
.fg select {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: all 0.2s;
  resize: none;
}
.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}
.fg select option {
  background: #0e7a8c;
  color: var(--white);
}
.consent {
  font-size: 0.76rem;
  color: rgba(214, 238, 242, 0.7);
  line-height: 1.5;
  margin: 0.8rem 0;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.consent input {
  width: auto;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--green);
}
.sbtn {
  width: 100%;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 0.95rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
}
.sbtn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* ── CTA BANNER ── */
.cta-ban {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 3.5rem 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-ban h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin: 0;
}
.cta-ban p {
  color: rgba(214, 238, 242, 0.75);
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
}

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  padding: 2.5rem 8%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.f-logo img {
  height: 44px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.f-copy {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
}
.f-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
}
.f-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.f-links a {
  font-size: 0.75rem;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
.f-links a:hover {
  color: var(--blue-light);
}

/* Social icons */
.f-social {
  display: flex;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.f-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.f-social a:hover,
.f-social a:focus-visible {
  transform: translateY(-2px);
  border-color: transparent;
  outline: none;
}
.f-social .fb:hover,
.f-social-light .fb:hover,
.f-social .fb:focus-visible,
.f-social-light .fb:focus-visible {
  background: #1877F2;
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.4);
}
.f-social .ig:hover,
.f-social-light .ig:hover,
.f-social .ig:focus-visible,
.f-social-light .ig:focus-visible {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 6px 16px rgba(220, 39, 67, 0.4);
}
.f-social .tt:hover,
.f-social-light .tt:hover,
.f-social .tt:focus-visible,
.f-social-light .tt:focus-visible {
  background: #000;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

/* Social icons — light-background variant (e.g. contact page) */
.f-social-light {
  display: flex;
  gap: 0.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.f-social-light a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 1.1rem;
  text-decoration: none;
  border: 1.5px solid var(--blue);
  box-shadow: 0 2px 8px rgba(26, 155, 175, 0.12);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.f-social-light a:hover,
.f-social-light a:focus-visible {
  transform: translateY(-2px);
  color: #fff;
  border-color: transparent;
  outline: none;
}

/* Suivez-nous block on contact page */
.suivez-nous {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 155, 175, 0.18);
}
.suivez-nous-lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: var(--text-dark);
  opacity: 0.75;
  margin-bottom: 0.9rem;
}

/* ── SEPARATOR ── */
.sep {
  width: 50px;
  height: 2px;
  background: var(--blue);
  margin: 1.3rem 0;
}
.sep-green {
  background: var(--green);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    height: 55vw;
    min-height: 260px;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cards2,
  .cards3 {
    grid-template-columns: 1fr;
  }
  .prestations-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    background: var(--white);
    padding: 0.6rem 6% 1.2rem;
    box-shadow: 0 16px 30px rgba(20, 40, 45, 0.12);
    border-bottom: 1px solid rgba(26, 155, 175, 0.12);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links li a {
    padding: 0.75rem 1rem;
    border-radius: 10px;
  }
  .nav-links li a.nav-cta {
    text-align: center;
    margin-top: 0.4rem;
  }
  .hero-badge {
    display: none;
  }
  .cta-ban {
    flex-direction: column;
    text-align: center;
  }
  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .f-col {
    align-items: center;
  }
  .f-links,
  .f-social {
    justify-content: center;
  }
  .loc-grid {
    grid-template-columns: 1fr;
  }
  .hlights {
    grid-template-columns: 1fr;
  }
  .three-col {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .prestations-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 3.5rem 6%;
  }
  .page-hdr {
    padding: 3rem 6% 2.5rem;
  }
}
