:root {
  --ink: #20322d;
  --ink-2: #f6edde;
  --ink-3: #3f5b52;
  --paper: #fffaf2;
  --paper-2: #f2e6d5;
  --muted: rgba(32, 50, 45, 0.66);
  --muted-light: rgba(255, 250, 242, 0.82);
  --muted-dark: rgba(32, 50, 45, 0.68);
  --aqua: #8fcac5;
  --aqua-strong: #3f9f96;
  --sand: #b9936c;
  --line: rgba(63, 159, 150, 0.24);
  --line-dark: rgba(32, 50, 45, 0.12);
  --shadow: 0 28px 70px rgba(32, 50, 45, 0.13);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 2147480000;
  inset: 0 0 auto;
  isolation: isolate;
  overflow: visible;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px clamp(18px, 4vw, 56px);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(255, 250, 242, 0.64) 72%, rgba(255, 250, 242, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-emblem {
  position: relative;
  width: 34px;
  height: 34px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-emblem img {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 74px;
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 12px rgba(63, 159, 150, 0.3));
}

.menu-toggle {
  display: none;
}

.mobile-nav-head,
.mobile-nav-footer,
.nav-backdrop {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.header-actions {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-panel {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 3vw, 34px);
}

nav,
.language-switcher,
.hero-actions,
.contact-actions,
.footer-bottom {
  display: flex;
  align-items: center;
}

nav {
  gap: clamp(10px, 1.4vw, 22px);
  color: rgba(32, 50, 45, 0.78);
  font-size: 0.83rem;
}

nav a,
.language-switcher a {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

nav a:hover,
nav a:focus-visible,
nav a[aria-current="page"],
.language-switcher a:hover,
.language-switcher a:focus-visible,
.language-switcher a[aria-current="page"] {
  color: var(--aqua-strong);
}

.interventions-nav {
  position: relative;
  z-index: 1;
}

.interventions-nav[data-open] {
  z-index: 20;
}

.interventions-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
}

.interventions-trigger:hover,
.interventions-trigger:focus-visible,
.interventions-nav[data-open] .interventions-trigger {
  color: var(--aqua-strong);
}

.interventions-trigger i {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.interventions-nav[data-open] .interventions-trigger i {
  transform: translateY(2px) rotate(225deg);
}

.interventions-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 14px);
  left: 50%;
  display: none;
  grid-template-columns: minmax(190px, 0.7fr) minmax(360px, 1.3fr);
  gap: 24px;
  width: min(700px, calc(100vw - 36px));
  max-height: calc(100dvh - 104px);
  overflow-y: auto;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.98);
  box-shadow: 0 24px 62px rgba(32, 50, 45, 0.18);
  transform: translate(-42%, 0);
  transform-origin: top center;
}

.interventions-nav[data-open] .interventions-menu {
  display: grid;
  transform: translate(-42%, 0);
  animation: interventions-menu-in 140ms ease-out both;
}

@keyframes interventions-menu-in {
  from {
    opacity: 0.72;
  }

  to {
    opacity: 1;
  }
}

.interventions-menu-intro {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px;
  border-right: 1px solid var(--line-dark);
}

.interventions-menu-intro strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.12;
}

.interventions-menu-intro span {
  color: var(--muted-dark);
  font-size: 0.78rem;
  line-height: 1.45;
}

.interventions-menu-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 14px;
}

nav .interventions-menu-links a {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
}

nav .interventions-menu-links a:hover,
nav .interventions-menu-links a:focus-visible,
nav .interventions-menu-links a[aria-current="page"] {
  background: rgba(63, 159, 150, 0.11);
  color: var(--ink);
}

.interventions-menu-links span {
  overflow-wrap: anywhere;
  font-weight: 800;
}

.interventions-menu-links small {
  color: var(--muted-dark);
  font-size: 0.7rem;
}

.language-switcher {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0;
  border: 1px solid rgba(32, 50, 45, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.88);
  box-shadow: 0 8px 24px rgba(32, 50, 45, 0.06);
}

.language-switcher[data-open] {
  z-index: 40;
}

.language-switcher-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 78px;
  min-height: 40px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
}

.language-switcher-trigger:hover,
.language-switcher-trigger:focus-visible,
.language-switcher[data-open] .language-switcher-trigger {
  background: rgba(63, 159, 150, 0.11);
  color: var(--aqua-strong);
}

.language-switcher-trigger svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.language-switcher-trigger i {
  width: 6px;
  height: 6px;
  margin-left: 1px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.language-switcher[data-open] .language-switcher-trigger i {
  transform: translateY(2px) rotate(225deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 120;
  display: none;
  width: 218px;
  padding: 8px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: rgba(255, 250, 242, 0.99);
  box-shadow: 0 22px 58px rgba(32, 50, 45, 0.2);
}

.language-switcher[data-open] .language-menu {
  display: grid;
  animation: interventions-menu-in 140ms ease-out both;
}

.language-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 42px;
  padding: 9px 11px;
  border-radius: 7px;
  color: var(--ink);
  font-size: 0.79rem;
}

.language-menu a span {
  font-weight: 700;
}

.language-menu a small {
  color: var(--muted-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.language-menu a:hover,
.language-menu a:focus-visible,
.language-menu a[aria-current="page"] {
  background: rgba(63, 159, 150, 0.12);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: 132px clamp(20px, 6vw, 82px) clamp(58px, 7vw, 88px);
}

.hero-media,
.hero-poster,
.hero-poster img,
.hero-video,
.hero-shade,
.band-image,
.band-image img,
.contact-bg,
.contact-bg img,
.contact-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -4;
}

.hero-poster img,
.hero-video,
.band-image img,
.contact-bg img {
  object-fit: cover;
}

.hero-poster img,
.hero-video {
  object-position: 58% 50%;
}

.hero-video {
  opacity: 0;
  object-fit: cover;
  pointer-events: none;
  transition: opacity 700ms ease;
}

[data-video-ready="true"] .hero-video {
  opacity: 1;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.9), rgba(255, 250, 242, 0.58) 44%, rgba(255, 250, 242, 0.12)),
    linear-gradient(180deg, rgba(255, 250, 242, 0.28), rgba(255, 250, 242, 0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 840px;
  min-width: 0;
  color: var(--ink);
}

.hero-mark {
  position: relative;
  display: block;
  width: clamp(72px, 8vw, 98px);
  height: clamp(72px, 8vw, 98px);
  overflow: hidden;
  margin: 0 0 18px -6px;
}

.hero-mark img {
  position: absolute;
  top: -9px;
  left: 50%;
  width: clamp(156px, 17vw, 210px);
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 22px rgba(143, 202, 197, 0.42));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7.4vw, 7.7rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5.8vw, 5.9rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.12;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 28px;
  color: var(--muted-dark);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(32, 50, 45, 0.18);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--aqua);
}

.button-primary {
  border-color: rgba(63, 91, 82, 0.84);
  background: var(--ink-3);
  color: var(--paper);
}

.button-secondary {
  background: rgba(255, 250, 242, 0.68);
}

.hero-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted-dark);
  font-size: 0.9rem;
}

.section-pad {
  padding: clamp(74px, 10vw, 136px) clamp(20px, 6vw, 82px);
}

.what-section,
.services-section,
.faq-section {
  background: var(--paper);
  color: var(--ink);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
}

.intro-panel {
  display: grid;
  gap: 20px;
  max-width: 620px;
  margin-left: auto;
  color: var(--muted-dark);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.72;
}

.intro-panel p {
  margin-bottom: 0;
}

.intro-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
}

.intro-panel li {
  padding-left: 22px;
  position: relative;
}

.intro-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--aqua-strong);
}

.intro-logo {
  width: min(245px, 56vw);
  height: auto;
  filter: drop-shadow(0 18px 42px rgba(13, 20, 19, 0.14));
}

.cinema-band {
  position: relative;
  min-height: clamp(560px, 78svh, 800px);
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(72px, 10vw, 126px) clamp(20px, 6vw, 82px);
  isolation: isolate;
  color: var(--ink);
}

.band-image {
  z-index: -3;
}

.first-contact .band-image img {
  object-position: 62% 50%;
}

.band-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.92), rgba(255, 250, 242, 0.55) 54%, rgba(255, 250, 242, 0.2)),
    linear-gradient(180deg, rgba(255, 250, 242, 0.14), rgba(255, 250, 242, 0.56));
}

.band-content {
  max-width: 800px;
}

.band-content p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted-dark);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.7;
}

.journey-section,
.trust-section {
  background:
    radial-gradient(circle at 82% 10%, rgba(185, 147, 108, 0.18), transparent 32rem),
    var(--ink-2);
  color: var(--ink);
}

.section-heading {
  max-width: 980px;
  margin: 0 auto clamp(38px, 6vw, 74px);
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted-dark);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.7;
}

.services-section .section-heading p,
.faq-section .section-heading p {
  color: var(--muted-dark);
}

.journey-list {
  display: grid;
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.journey-step {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: var(--shadow);
}

.journey-step:nth-child(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.journey-step:nth-child(even) .step-media {
  order: 2;
}

.step-media,
.step-media picture,
.step-media img {
  height: 100%;
}

.step-media img {
  width: 100%;
  object-fit: cover;
}

.step-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 5vw, 58px);
}

.step-number {
  display: block;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--aqua-strong);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.step-copy h3 {
  max-width: 760px;
  font-size: clamp(1.65rem, 2.7vw, 2.6rem);
  line-height: 1.08;
}

.step-kicker {
  max-width: 780px;
  margin: 14px 0 0;
  color: var(--ink-3);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  font-weight: 850;
  line-height: 1.5;
}

.step-description {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted-dark);
  font-size: 0.98rem;
  line-height: 1.72;
}

.journey-details {
  margin-top: 24px;
  border-top: 1px solid rgba(16, 41, 51, 0.14);
  border-bottom: 1px solid rgba(16, 41, 51, 0.14);
}

.journey-details summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 10px 46px 10px 0;
  color: var(--ink-3);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

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

.journey-details summary:focus-visible {
  outline: 2px solid var(--aqua-strong);
  outline-offset: 4px;
}

.journey-details summary::before,
.journey-details summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--aqua-strong);
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.journey-details summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.journey-details[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.journey-details ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 0 24px;
  list-style: none;
}

.journey-details li {
  position: relative;
  padding-left: 22px;
  color: var(--muted-dark);
  font-size: 0.92rem;
  line-height: 1.58;
}

.journey-details li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 1px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--aqua-strong);
  box-shadow: 0 0 0 4px rgba(63, 159, 150, 0.12);
}

.step-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--aqua-strong);
  border-radius: 0 6px 6px 0;
  background: rgba(63, 159, 150, 0.08);
  color: var(--ink-3);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.58;
}

.service-card p,
.trust-card p,
.faq-item p,
.tunisia-copy p,
.footer-legal {
  color: var(--muted-dark);
  line-height: 1.65;
}

.service-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1220px;
  margin: 0 auto;
}

.service-card,
.trust-card {
  min-height: 210px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 8px;
}

.service-card {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.4);
}

.service-card h3 {
  color: var(--ink);
}

.service-card p {
  color: var(--muted-dark);
}

.tunisia-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 720px;
  background: var(--paper-2);
  color: var(--ink);
}

.tunisia-media,
.tunisia-media picture,
.tunisia-media img {
  height: 100%;
}

.tunisia-media img {
  width: 100%;
  object-fit: cover;
  object-position: 60% 50%;
}

.tunisia-copy {
  align-self: center;
  padding: clamp(42px, 7vw, 90px);
}

.tunisia-copy p {
  max-width: 620px;
  color: var(--muted-dark);
  font-size: clamp(1.04rem, 1.7vw, 1.26rem);
}

.trust-card {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.46);
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
}

.faq-item {
  border-bottom: 1px solid var(--line-dark);
}

.faq-item summary {
  cursor: pointer;
  padding: 24px 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
}

.faq-item p {
  max-width: 760px;
  margin: -6px 0 24px;
  color: var(--muted-dark);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 130px) clamp(20px, 6vw, 82px);
  isolation: isolate;
  color: var(--ink);
}

.contact-bg {
  z-index: -3;
}

.contact-bg img {
  object-position: 48% 50%;
}

.contact-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.94), rgba(255, 250, 242, 0.82) 48%, rgba(255, 250, 242, 0.58)),
    linear-gradient(180deg, rgba(255, 250, 242, 0.28), rgba(255, 250, 242, 0.92));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: start;
  max-width: 1220px;
  margin: 0 auto;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted-dark);
  font-size: clamp(1.04rem, 1.7vw, 1.24rem);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(32, 50, 45, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.field,
.consent {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field span,
.consent span {
  color: rgba(32, 50, 45, 0.84);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(32, 50, 45, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  outline: none;
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  min-height: 112px;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(143, 202, 197, 0.14);
}

select option {
  color: var(--ink);
}

small[data-error-for],
.consent-error {
  min-height: 18px;
  color: #a83c32;
  font-size: 0.78rem;
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--aqua);
}

.intervention-page .site-header,
.testimonials-page .site-header {
  border-bottom: 1px solid rgba(32, 50, 45, 0.08);
  background: rgba(255, 250, 242, 0.9);
  backdrop-filter: blur(14px);
}

.testimonials-hero {
  position: relative;
  min-height: min(820px, 88svh);
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 82px) clamp(64px, 8vw, 100px);
  isolation: isolate;
}

.testimonials-hero-media,
.testimonials-hero-media img,
.testimonials-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.testimonials-hero-media {
  z-index: -3;
}

.testimonials-hero-media img {
  object-fit: cover;
  object-position: 58% 48%;
}

.testimonials-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.96), rgba(255, 250, 242, 0.78) 50%, rgba(255, 250, 242, 0.24)),
    linear-gradient(180deg, rgba(255, 250, 242, 0.12), rgba(255, 250, 242, 0.7));
}

.testimonials-hero-content {
  width: min(790px, 100%);
}

.testimonials-hero-content h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.6vw, 6.8rem);
}

.testimonials-hero-content > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted-dark);
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
  line-height: 1.6;
}

.demo-notice {
  display: grid;
  gap: 5px;
  max-width: 720px;
  margin-top: 28px;
  padding: 16px 18px;
  border-left: 4px solid var(--aqua-strong);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 12px 30px rgba(32, 50, 45, 0.08);
}

.demo-notice strong {
  color: var(--aqua-strong);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.demo-notice span {
  color: var(--muted-dark);
  font-size: 0.88rem;
  line-height: 1.5;
}

.reviews-section {
  background: var(--paper);
}

.reviews-overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: stretch;
  max-width: 1220px;
  margin: 0 auto clamp(36px, 6vw, 70px);
}

.google-review-summary {
  display: grid;
  align-content: center;
  justify-items: start;
  padding-block: 28px;
  border-block: 1px solid var(--line-dark);
}

.google-wordmark {
  margin-bottom: 30px;
  color: var(--ink-3);
  font-size: 1.1rem;
  font-weight: 800;
}

.google-wordmark span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-right: 8px;
  place-items: center;
  border: 2px solid var(--aqua-strong);
  border-radius: 50%;
  color: var(--aqua-strong);
}

.google-review-summary > span,
.google-review-summary small {
  color: var(--muted-dark);
}

.google-review-summary > span {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.google-review-summary strong {
  margin: 8px 0 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 7vw, 6.4rem);
  font-weight: 500;
  line-height: 1;
}

.review-stars {
  color: var(--sand);
  letter-spacing: 0;
}

.google-review-summary small {
  margin-top: 10px;
}

.reviews-map {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.reviews-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.demo-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1220px;
  margin: 0 auto;
}

.demo-review {
  display: grid;
  align-content: start;
  min-height: 310px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.demo-review-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}

.review-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--ink);
  font-weight: 900;
}

.demo-review h3,
.demo-review-head p,
.demo-review blockquote {
  margin: 0;
}

.demo-review h3 {
  font-size: 1rem;
}

.demo-review-head p,
.video-testimonial-copy p {
  color: var(--muted-dark);
  font-size: 0.78rem;
  line-height: 1.45;
}

.demo-review blockquote {
  margin-top: 18px;
  color: var(--muted-dark);
  font-size: 0.98rem;
  line-height: 1.7;
}

.demo-review > small {
  align-self: end;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  color: var(--aqua-strong);
  font-weight: 900;
  text-transform: uppercase;
}

.video-testimonials-section {
  background: #edf4ef;
}

.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 44px);
  max-width: 1040px;
  margin: 0 auto;
}

.video-testimonial {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.86);
}

.video-testimonial-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink-3);
}

.video-testimonial video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 68px;
  height: 68px;
  padding: 0;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: var(--aqua-strong);
  color: white;
  box-shadow: 0 14px 36px rgba(32, 50, 45, 0.28);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: background 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.video-play-button:hover,
.video-play-button:focus-visible {
  background: #2f887f;
  transform: translate(-50%, -50%) scale(1.06);
}

.video-play-button span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid white;
}

.video-testimonial[data-playing] .video-play-button {
  opacity: 0.28;
}

.video-testimonial[data-playing] .video-play-button:hover,
.video-testimonial[data-playing] .video-play-button:focus-visible {
  opacity: 1;
}

.video-testimonial[data-playing] .video-play-button span {
  width: 18px;
  height: 20px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, white 0 35%, transparent 35% 65%, white 65% 100%);
}

.demo-media-label {
  position: absolute;
  top: 16px;
  right: 16px;
  max-width: calc(100% - 32px);
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(255, 250, 242, 0.9);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-testimonial-copy {
  padding: 22px 24px 24px;
}

.video-testimonial-copy h3 {
  margin: 0 0 7px;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.video-testimonial-copy p {
  margin: 0;
}

.testimonials-cta {
  padding: clamp(74px, 10vw, 126px) clamp(20px, 6vw, 82px);
  background: var(--paper-2);
}

.testimonials-cta .intervention-cta-inner > p:not(.eyebrow) {
  color: var(--muted-dark);
  line-height: 1.65;
}

.testimonials-cta .contact-actions {
  justify-content: center;
}

.intervention-hero {
  position: relative;
  min-height: min(820px, 88svh);
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 82px) clamp(64px, 8vw, 100px);
  isolation: isolate;
}

.intervention-hero-media,
.intervention-hero-media img,
.intervention-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intervention-hero-media {
  z-index: -3;
  margin: 0;
}

.intervention-hero-media img {
  object-fit: cover;
  object-position: 55% 48%;
}

.intervention-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.96), rgba(255, 250, 242, 0.72) 48%, rgba(255, 250, 242, 0.16)),
    linear-gradient(180deg, rgba(255, 250, 242, 0.18), rgba(255, 250, 242, 0.64));
}

.intervention-hero-content {
  width: min(760px, 100%);
}

.intervention-hero-content h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 7.2rem);
}

.intervention-hero-content > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted-dark);
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
  line-height: 1.6;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--aqua-strong);
}

.intervention-overview {
  background: var(--paper);
}

.intervention-overview-grid,
.stay-includes-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: start;
  max-width: 1220px;
  margin: 0 auto;
}

.intervention-overview-copy {
  color: var(--muted-dark);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.72;
}

.intervention-overview-copy h3 {
  margin: 30px 0 14px;
  color: var(--ink);
}

.intervention-overview-copy ul,
.includes-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intervention-overview-copy li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
}

.intervention-overview-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.73em;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--aqua-strong);
}

.intervention-package {
  padding: clamp(54px, 7vw, 84px) clamp(20px, 6vw, 82px);
  border-block: 1px solid var(--line-dark);
  background: #edf4ef;
}

.intervention-package-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1220px;
  margin: 0 auto;
}

.package-fact {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 118px;
  padding: 10px clamp(20px, 4vw, 48px);
  border-left: 1px solid rgba(32, 50, 45, 0.14);
}

.package-fact:first-child {
  padding-left: 0;
  border-left: 0;
}

.package-fact > span {
  color: var(--muted-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-fact strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.05;
}

.package-fact strong small {
  display: block;
  margin-bottom: 5px;
  color: var(--aqua-strong);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-note {
  max-width: 1220px;
  margin: 24px auto 0;
  color: var(--muted-dark);
  font-size: 0.86rem;
  line-height: 1.55;
}

.stay-section {
  background: var(--ink-2);
}

.stay-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1220px;
  margin: 0 auto;
}

.stay-step {
  min-height: 248px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.68);
}

.stay-step > span {
  display: block;
  margin-bottom: 36px;
  color: var(--aqua-strong);
  font-weight: 900;
}

.stay-step p,
.includes-note,
.medical-disclaimer,
.related-intervention p,
.intervention-cta p {
  color: var(--muted-dark);
  line-height: 1.65;
}

.stay-includes {
  background: var(--paper);
}

.includes-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--ink);
  line-height: 1.5;
}

.includes-list li span {
  color: var(--aqua-strong);
  font-weight: 900;
}

.includes-note {
  margin: 20px 0 0;
  font-size: 0.86rem;
}

.medical-disclaimer {
  max-width: 1220px;
  margin: clamp(42px, 6vw, 72px) auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.84rem;
}

.related-section {
  background: #edf4ef;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1220px;
  margin: 0 auto;
}

.related-intervention {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.84);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.related-intervention:hover,
.related-intervention:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.related-intervention figure {
  height: 220px;
  margin: 0;
  overflow: hidden;
}

.related-intervention img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-intervention > div {
  padding: 22px;
}

.related-intervention small {
  color: var(--aqua-strong);
  font-weight: 900;
  text-transform: uppercase;
}

.related-intervention h3 {
  margin-top: 8px;
}

.intervention-cta {
  padding: clamp(74px, 10vw, 126px) clamp(20px, 6vw, 82px);
  background: var(--paper-2);
}

.intervention-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intervention-cta-inner p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px auto 30px;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}

.intervention-cta .contact-actions {
  justify-content: center;
}

.whatsapp-float {
  position: fixed;
  z-index: 35;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(63, 159, 150, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.9);
  color: #1d6f50;
  box-shadow: 0 16px 46px rgba(32, 50, 45, 0.16);
  backdrop-filter: blur(12px);
  font-weight: 900;
}

footer {
  display: grid;
  gap: 24px;
  padding: clamp(38px, 6vw, 70px) clamp(20px, 6vw, 82px);
  border-top: 1px solid var(--line-dark);
  background: #f2e6d5;
  color: rgba(32, 50, 45, 0.74);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.footer-brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.footer-legal {
  max-width: 1050px;
  margin: 0;
}

.footer-bottom {
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.is-waiting {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.is-waiting.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    grid-template-columns: auto auto;
    align-items: center;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    justify-self: end;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(32, 50, 45, 0.16);
    border-radius: 8px;
    background: rgba(255, 250, 242, 0.88);
    color: var(--ink);
    box-shadow: 0 8px 22px rgba(32, 50, 45, 0.08);
    cursor: pointer;
  }

  .menu-toggle-icon {
    display: grid;
    gap: 6px;
  }

  .menu-toggle-icon i {
    display: block;
    width: 19px;
    height: 1.5px;
    background: currentColor;
  }

  .nav-backdrop {
    position: fixed;
    z-index: 50;
    inset: 0;
    display: block;
    padding: 0;
    border: 0;
    background: rgba(32, 50, 45, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(5px);
    transition: opacity 240ms ease, visibility 240ms ease;
  }

  .nav-backdrop[data-open] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-panel {
    position: fixed;
    z-index: 80;
    top: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    width: min(420px, calc(100vw - 24px));
    height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0;
    border-left: 1px solid rgba(32, 50, 45, 0.1);
    background: rgba(255, 250, 242, 0.98);
    box-shadow: -28px 0 70px rgba(32, 50, 45, 0.16);
    transform: translateX(102%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 280ms cubic-bezier(0.22, 0.8, 0.3, 1), visibility 280ms ease;
  }

  .nav-panel[data-open] {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-head {
    position: sticky;
    z-index: 2;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: max(18px, env(safe-area-inset-top)) 20px 16px;
    border-bottom: 1px solid var(--line-dark);
    background: rgba(255, 250, 242, 0.96);
    backdrop-filter: blur(14px);
  }

  .mobile-nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    text-transform: uppercase;
  }

  .mobile-nav-brand > span {
    position: relative;
    width: 38px;
    height: 38px;
    overflow: hidden;
  }

  .mobile-nav-brand img {
    position: absolute;
    top: -4px;
    left: 50%;
    width: 78px;
    height: auto;
    max-width: none;
    transform: translateX(-50%);
  }

  .mobile-nav-close {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    background: rgba(237, 244, 239, 0.78);
    color: var(--ink);
    cursor: pointer;
  }

  .mobile-nav-close span,
  .mobile-nav-close span::before,
  .mobile-nav-close span::after {
    display: block;
    width: 19px;
    height: 1.5px;
  }

  .mobile-nav-close span {
    position: relative;
  }

  .mobile-nav-close span::before,
  .mobile-nav-close span::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: currentColor;
  }

  .mobile-nav-close span::before {
    transform: rotate(45deg);
  }

  .mobile-nav-close span::after {
    transform: rotate(-45deg);
  }

  .nav-panel nav {
    display: grid;
    align-content: start;
    gap: 0;
    width: 100%;
    padding: 10px 20px 28px;
    color: var(--ink);
    font-size: 1rem;
  }

  .nav-panel nav > a,
  .nav-panel .interventions-trigger {
    min-height: 54px;
    border-bottom: 1px solid var(--line-dark);
  }

  .nav-panel nav > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
  }

  .nav-panel nav > a::after {
    width: 7px;
    height: 7px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    content: "";
    opacity: 0.45;
    transform: rotate(45deg);
  }

  .nav-panel nav > a[aria-current="page"] {
    color: var(--aqua-strong);
  }

  .interventions-nav,
  .interventions-trigger {
    width: 100%;
  }

  .interventions-trigger {
    justify-content: space-between;
    padding: 0;
    font-weight: 700;
  }

  .interventions-menu {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: #edf4ef;
    box-shadow: none;
    transform: none;
    max-height: none;
    overflow: visible;
  }

  .interventions-nav[data-open] .interventions-menu {
    display: grid;
    margin: 10px 0 14px;
    padding: 14px;
    border: 1px solid var(--line-dark);
    transform: none;
  }

  .interventions-menu-intro {
    padding: 6px 6px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .interventions-menu-intro strong {
    font-size: 1.1rem;
  }

  .interventions-menu-links {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 7px;
  }

  nav .interventions-menu-links a {
    padding: 11px 7px;
    border-bottom: 1px solid rgba(32, 50, 45, 0.08);
    border-radius: 0;
  }

  nav .interventions-menu-links a:last-child {
    border-bottom: 0;
  }

  .mobile-nav-footer {
    display: grid;
    gap: 10px;
    padding: 20px 20px max(24px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line-dark);
    background: var(--paper-2);
  }

  .mobile-nav-footer > span {
    color: var(--muted-dark);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-nav-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 8px;
    font-weight: 900;
  }

  .mobile-nav-footer a:first-of-type {
    background: var(--aqua-strong);
    color: white;
    box-shadow: 0 12px 28px rgba(63, 159, 150, 0.24);
  }

  .mobile-nav-footer a:last-of-type {
    min-height: 36px;
    color: var(--ink-3);
    font-size: 0.84rem;
  }

  .language-switcher {
    width: max-content;
  }

  .section-grid,
  .journey-step,
  .journey-step:nth-child(even),
  .tunisia-section,
  .contact-layout,
  .intervention-overview-grid,
  .stay-includes-grid,
  .reviews-overview {
    grid-template-columns: 1fr;
  }

  .reviews-overview {
    gap: 28px;
  }

  .google-review-summary {
    grid-template-columns: auto 1fr;
    column-gap: 24px;
    align-items: center;
  }

  .google-wordmark {
    grid-row: 1 / span 5;
    margin: 0;
  }

  .journey-step:nth-child(even) .step-media {
    order: 0;
  }

  .step-media,
  .step-media picture,
  .step-media img {
    min-height: 320px;
  }

  .journey-step {
    min-height: 0;
  }

  .service-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: fixed;
    gap: 10px;
    padding: 16px 12px;
  }

  .header-actions {
    gap: 6px;
  }

  .brand > span:last-child {
    display: none;
  }

  .brand {
    font-size: 0.82rem;
  }

  .language-switcher-trigger {
    min-width: 68px;
    min-height: 38px;
    padding-inline: 10px;
    font-size: 0.68rem;
  }

  .language-menu {
    width: min(218px, calc(100vw - 28px));
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 0;
  }

  .nav-panel {
    width: min(390px, calc(100vw - 14px));
  }

  .interventions-menu {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .interventions-nav[data-open] .interventions-menu {
    padding: 14px;
  }

  .interventions-menu-intro {
    padding: 6px 8px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .interventions-menu-links {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
    padding: 128px 18px 104px;
  }

  .hero-content,
  .hero-copy,
  .hero-note {
    max-width: calc(100vw - 36px);
  }

  .step-copy {
    padding: 28px 22px 32px;
  }

  .step-copy h3 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .step-description {
    font-size: 0.94rem;
  }

  .journey-details summary {
    min-height: 56px;
  }

  .hero-poster img,
  .hero-video {
    object-position: 50% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(255, 250, 242, 0.88), rgba(255, 250, 242, 0.58)),
      linear-gradient(180deg, rgba(255, 250, 242, 0.12), rgba(255, 250, 242, 0.62));
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.85rem, 7.4vw, 2.35rem);
    line-height: 1.05;
    text-wrap: balance;
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.45rem);
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .intervention-hero {
    min-height: 90svh;
    padding: 126px 18px 70px;
  }

  .testimonials-hero {
    min-height: 92svh;
    padding: 126px 18px 58px;
  }

  .testimonials-hero-shade {
    background:
      linear-gradient(90deg, rgba(255, 250, 242, 0.94), rgba(255, 250, 242, 0.68)),
      linear-gradient(180deg, rgba(255, 250, 242, 0.16), rgba(255, 250, 242, 0.76));
  }

  .testimonials-hero-content h1 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .demo-notice {
    padding: 14px;
  }

  .intervention-hero-shade {
    background:
      linear-gradient(90deg, rgba(255, 250, 242, 0.92), rgba(255, 250, 242, 0.62)),
      linear-gradient(180deg, rgba(255, 250, 242, 0.18), rgba(255, 250, 242, 0.72));
  }

  .intervention-hero-content h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .intervention-package-inner,
  .stay-steps,
  .related-grid,
  .demo-reviews-grid,
  .video-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .google-review-summary {
    display: grid;
    grid-template-columns: 1fr;
  }

  .google-wordmark {
    grid-row: auto;
    margin-bottom: 22px;
  }

  .reviews-map,
  .reviews-map iframe {
    min-height: 340px;
  }

  .demo-review {
    min-height: 0;
  }

  .package-fact,
  .package-fact:first-child {
    min-height: auto;
    padding: 22px 0;
    border-top: 1px solid rgba(32, 50, 45, 0.14);
    border-left: 0;
  }

  .package-fact:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .stay-step {
    min-height: 220px;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .trust-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .cinema-band {
    min-height: 680px;
  }

  .first-contact .band-image img {
    object-position: 68% 50%;
  }

  .tunisia-media,
  .tunisia-media picture,
  .tunisia-media img {
    min-height: 430px;
  }

  .tunisia-media img {
    object-position: 62% 50%;
  }

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

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
