/* ==========================================================
   SARLAT CINEMA / FRANCE TABAC
   CSS isolé pour éviter les conflits avec le thème existant
========================================================== */

.ft-page {
  --ft-bg: #c9c9c9;
  --ft-text: #080808;
  --ft-white: #ffffff;
  --ft-black: #000000;
  --ft-blue: #0b2e8f;
  --ft-red: #e35b6a;
  --ft-max: 1480px;

  background: var(--ft-bg);
  color: var(--ft-text);
  font-family: "Source Sans Pro", "Open Sans", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.45;
  overflow: hidden;
}

.ft-page * {
  box-sizing: border-box;
}

.ft-container {
  width: min(var(--ft-max), calc(100% - 80px));
  margin: 0 auto;
}


/* =========================
   HERO
========================= */

.ft-hero {
  padding: 90px 0 70px;
  background: var(--ft-bg);
}

.ft-image-frame {
  width: min(980px, 100%);
  margin: 0 auto 45px;
  background: #000;
  padding: 42px 0;
}

.ft-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.ft-intro {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 45px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.ft-logo {
  width: 125px;
  height: 125px;
  border: 5px solid var(--ft-blue);
  border-radius: 50%;
  color: var(--ft-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-weight: 800;
  transform: rotate(-4deg);
}

.ft-logo span {
  font-size: 18px;
  letter-spacing: 1px;
}

.ft-logo strong {
  margin-top: 4px;
  font-size: 34px;
  color: var(--ft-red);
}

.ft-intro-text {
  text-align: center;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.32;
}

.ft-intro-text p {
  margin: 0 0 26px;
}

.ft-intro-text p:last-child {
  margin-bottom: 0;
}


/* =========================
   SECTIONS
========================= */

.ft-section {
  padding: 80px 0;
  background: var(--ft-bg);
}

.ft-pillars h1 {
  max-width: 1380px;
  margin: 0 auto 80px;
  text-align: center;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.18;
  font-weight: 400;
}

.ft-pillars h1 strong {
  font-weight: 900;
}

.ft-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.ft-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ft-card-content {
  flex: 1;
}

.ft-card h2 {
  margin: 0 0 18px;
  color: var(--ft-text);
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.15;
  font-weight: 900;
}

.ft-card p {
  margin: 0 0 18px;
  text-align: justify;
  font-size: clamp(20px, 1.9vw, 31px);
  line-height: 1.32;
}

.ft-card .ft-small {
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.28;
  text-align: center;
  font-style: italic;
  margin-top: 10px;
}

.ft-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-top: 35px;
  object-fit: cover;
  display: block;
}


/* =========================
   FULL IMAGE BLOCKS
========================= */

.ft-full-image {
  position: relative;
  width: min(var(--ft-max), calc(100% - 80px));
  margin: 0 auto;
  min-height: 70vh;
  background: #111;
  overflow: hidden;
}

/* petit espace uniquement entre deux grands visuels successifs */
.ft-full-image + .ft-full-image {
  margin-top: 18px;
}

.ft-full-image img {
  display: block;
  width: 100%;
  min-height: 70vh;
  object-fit: cover;
}

.ft-full-image-title {
  position: absolute;
  top: 55px;
  z-index: 2;
  color: var(--ft-white);
  font-size: clamp(34px, 4.4vw, 66px);
  line-height: 1.05;
  font-weight: 900;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}

.ft-title-right {
  right: 60px;
  text-align: right;
}

.ft-title-dark {
  color: #000;
  text-shadow: none;
}

/* =========================
   FINAL
========================= */

.ft-final {
  padding: 60px 0 70px;
}

.ft-final-grid {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 70px;
  align-items: stretch;
}

.ft-final-left img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.ft-final-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
}

.ft-final-text {
  padding-top: 40px;
  text-align: center;
  font-size: clamp(26px, 2.7vw, 42px);
  line-height: 1.28;
  font-weight: 700;
}

.ft-final-text p {
  margin: 0 auto 50px;
  max-width: 980px;
}

.ft-final-text .ft-white {
  color: var(--ft-white);
  font-weight: 900;
}

.ft-plan-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7.5;
  object-fit: cover;
}


/* =========================
   CTA
========================= */

.ft-cta {
  padding: 70px 0 90px;
  text-align: center;
  background: #111;
  color: #fff;
}

.ft-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  color: #fff;
}

.ft-cta p {
  max-width: 760px;
  margin: 0 auto 35px;
  font-size: 22px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.ft-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.ft-btn:hover {
  background: #e7e7e7;
  color: #111111;
  text-decoration: none;
  transform: translateY(-2px);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .ft-container {
    width: min(var(--ft-max), calc(100% - 48px));
  }

  .ft-grid-3 {
    gap: 34px;
  }

  .ft-card p {
    font-size: 22px;
  }

  .ft-final-grid {
    gap: 42px;
  }
}

@media (max-width: 900px) {
  .ft-page {
    font-size: 18px;
  }

  .ft-hero {
    padding: 55px 0 45px;
  }

  .ft-image-frame {
    padding: 22px 0;
    margin-bottom: 34px;
  }

  .ft-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .ft-logo {
    margin: 0 auto;
    width: 105px;
    height: 105px;
  }

  .ft-intro-text {
    font-size: 25px;
  }

  .ft-pillars h1 {
    margin-bottom: 45px;
  }

  .ft-grid-3 {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .ft-card {
    max-width: 680px;
    margin: 0 auto;
  }

  .ft-card p {
    font-size: 21px;
    text-align: left;
  }

  .ft-full-image,
  .ft-full-image img {
    min-height: 520px;
  }

  .ft-full-image-title {
    top: 32px;
    right: 24px;
    left: 24px;
    font-size: 38px;
  }

  .ft-final-grid {
    grid-template-columns: 1fr;
  }

  .ft-final-left img {
    min-height: 520px;
  }

  .ft-final-text {
    padding-top: 0;
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .ft-container {
    width: calc(100% - 28px);
  }

  .ft-hero {
    padding: 35px 0;
  }

  .ft-image-frame {
    padding: 14px 0;
  }

  .ft-intro-text {
    font-size: 21px;
    line-height: 1.35;
  }

  .ft-section {
    padding: 52px 0;
  }

  .ft-pillars h1 {
    font-size: 31px;
    text-align: left;
  }

  .ft-card h2 {
    font-size: 26px;
  }

  .ft-card p {
    font-size: 19px;
  }

  .ft-full-image,
  .ft-full-image img {
    min-height: 430px;
  }

  .ft-full-image-title {
    font-size: 30px;
    text-align: left;
  }

  .ft-final-left img {
    min-height: 430px;
  }

  .ft-final-text {
    font-size: 23px;
    line-height: 1.35;
  }

  .ft-final-text p {
    margin-bottom: 34px;
  }

  .ft-cta {
    padding: 52px 0 65px;
  }

  .ft-cta p {
    font-size: 18px;
  }
}

#page_wrap {
  padding: 99px 0 100px !important;

}