/*
Theme Name: Technologies College
Theme URI: https://technologiescollege.fr
Author: Jacky – bquery-web.com
Author URI: https://bquery-web.com
Description: Thème officiel pour l'annuaire des établissements scolaires Technologies College. Compatible avec le plugin technologiescollege (shortcode [tc_recherche]).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tc-theme
Tags: education, annuaire, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, sticky-post, threaded-comments, translation-ready
*/

/* ============================================================
   Variables globales
   ============================================================ */
:root {
  --tc-blue:        #1a5276;
  --tc-blue-mid:    #1f6596;
  --tc-blue-light:  #2980b9;
  --tc-red:         #c0392b;
  --tc-red-light:   #e74c3c;
  --tc-gold:        #f39c12;
  --tc-white:       #ffffff;
  --tc-off-white:   #f7f9fc;
  --tc-gray-light:  #edf0f5;
  --tc-gray:        #bdc3c7;
  --tc-text:        #2c3e50;
  --tc-text-light:  #5d6d7e;
  --tc-radius:      10px;
  --tc-radius-lg:   18px;
  --tc-shadow:      0 4px 24px rgba(26,82,118,.10);
  --tc-shadow-lg:   0 8px 48px rgba(26,82,118,.16);
  --tc-transition:  .25s ease;
  --tc-font-display:'Playfair Display', Georgia, serif;
  --tc-font-body:   'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  --tc-max-width:   1200px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--tc-font-body);
  font-size: 1rem;
  color: var(--tc-text);
  background: var(--tc-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--tc-blue-light); text-decoration: none; transition: color var(--tc-transition); }
a:hover { color: var(--tc-blue); }
ul { list-style: none; }

/* ============================================================
   Layout
   ============================================================ */
.tc-container {
  max-width: var(--tc-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--tc-white);
  border-bottom: 3px solid var(--tc-blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(26,82,118,.10);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}
.site-logo img { height: 130px; width: auto; }
.site-logo a { display: flex; align-items: center; gap: 12px; }
.site-logo__text { font-family: var(--tc-font-display); font-size: 1.25rem; color: var(--tc-blue); font-weight: 700; line-height: 1.2; }
.site-logo__text span { color: var(--tc-red); }
.site-logo__sub { font-size: .7rem; color: var(--tc-text-light); text-transform: uppercase; letter-spacing: .08em; font-family: var(--tc-font-body); }

/* Navigation */
.site-nav ul { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--tc-text);
  padding: 8px 14px;
  border-radius: 6px;
  transition: background var(--tc-transition), color var(--tc-transition);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.site-nav a:hover, .site-nav .current-menu-item a {
  background: var(--tc-blue);
  color: var(--tc-white);
}
.site-nav .menu-cta a {
  background: var(--tc-red);
  color: var(--tc-white);
}
.site-nav .menu-cta a:hover { background: var(--tc-red-light); }

/* Burger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--tc-blue);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--tc-transition);
}

/* ============================================================
   HERO
   ============================================================ */
.tc-hero {
  background: linear-gradient(135deg, var(--tc-blue) 0%, var(--tc-blue-mid) 55%, #1b3a5c 100%);
  color: var(--tc-white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.tc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.tc-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--tc-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.tc-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.tc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.tc-hero__badge svg {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}
.tc-hero__title {
  font-family: var(--tc-font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.tc-hero__title em {
  font-style: normal;
  color: var(--tc-gold);
  position: relative;
}
.tc-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: .85;
  max-width: 600px;
  margin: 0 auto 48px;
  font-weight: 400;
}

/* ============================================================
   SEARCH BOX (override du plugin dans le hero)
   ============================================================ */
.tc-hero-search {
  background: var(--tc-white);
  border-radius: var(--tc-radius-lg);
  box-shadow: var(--tc-shadow-lg);
  padding: 32px 36px 28px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.tc-hero-search .tc-search-form {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}
.tc-hero-search .tc-field label {
  color: var(--tc-blue) !important;
  font-size: .78rem !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
}
.tc-hero-search .tc-field input,
.tc-hero-search .tc-field select {
  border: 1.5px solid var(--tc-gray-light) !important;
  border-radius: 8px !important;
  font-size: .95rem !important;
  background: var(--tc-off-white) !important;
  color: var(--tc-text) !important;
}
.tc-hero-search .tc-field input:focus,
.tc-hero-search .tc-field select:focus {
  border-color: var(--tc-blue-light) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(41,128,185,.15) !important;
}
.tc-hero-search .tc-field-submit {
  grid-column: 1 / -1 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.tc-hero-search .tc-btn-recherche {
  background: var(--tc-red) !important;
  border-radius: 8px !important;
  padding: 12px 28px !important;
  font-size: .95rem !important;
  font-weight: 700 !important;
  letter-spacing: .02em !important;
  transition: background var(--tc-transition), transform var(--tc-transition), box-shadow var(--tc-transition) !important;
}
.tc-hero-search .tc-btn-recherche:hover {
  background: var(--tc-red-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(192,57,43,.3) !important;
}

/* Stats sous la recherche */
.tc-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.tc-hero-stat { text-align: center; color: rgba(255,255,255,.9); }
.tc-hero-stat__num {
  font-family: var(--tc-font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--tc-white);
  line-height: 1;
}
.tc-hero-stat__label { font-size: .8rem; opacity: .75; text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

/* ============================================================
   SECTION GÉNÉRIQUE
   ============================================================ */
.tc-section { padding: 80px 0; }
.tc-section--alt { background: var(--tc-off-white); }
.tc-section__header { text-align: center; margin-bottom: 56px; }
.tc-section__eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--tc-red);
  margin-bottom: 12px;
}
.tc-section__title {
  font-family: var(--tc-font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--tc-blue);
  line-height: 1.2;
  margin-bottom: 16px;
}
.tc-section__desc {
  font-size: 1.05rem;
  color: var(--tc-text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   CRITÈRES (Guide)
   ============================================================ */
.tc-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.tc-guide-card {
  background: var(--tc-white);
  border: 1.5px solid var(--tc-gray-light);
  border-radius: var(--tc-radius-lg);
  padding: 32px 28px;
  transition: box-shadow var(--tc-transition), transform var(--tc-transition), border-color var(--tc-transition);
  position: relative;
  overflow: hidden;
}
.tc-guide-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tc-blue), var(--tc-blue-light));
  transform: scaleX(0);
  transition: transform var(--tc-transition);
  transform-origin: left;
}
.tc-guide-card:hover {
  box-shadow: var(--tc-shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.tc-guide-card:hover::before { transform: scaleX(1); }
.tc-guide-card__icon {
  margin-bottom: 16px;
  line-height: 1;
  color: var(--tc-blue-light);
}
.tc-guide-card__icon svg {
  width: 40px;
  height: 40px;
  display: block;
}
.tc-guide-card__title {
  font-family: var(--tc-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tc-blue);
  margin-bottom: 8px;
}
.tc-guide-card__text { font-size: .92rem; color: var(--tc-text-light); line-height: 1.6; }

/* ============================================================
   SERVICES
   ============================================================ */
.tc-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.tc-service-card {
  background: var(--tc-white);
  border-radius: var(--tc-radius-lg);
  padding: 36px 30px;
  box-shadow: var(--tc-shadow);
  transition: box-shadow var(--tc-transition), transform var(--tc-transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tc-service-card:hover { box-shadow: var(--tc-shadow-lg); transform: translateY(-4px); }
.tc-service-card__icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--tc-blue), var(--tc-blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.tc-service-card__icon-wrap svg {
  width: 26px;
  height: 26px;
  display: block;
}
.tc-service-card__title {
  font-family: var(--tc-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--tc-blue);
}
.tc-service-card__text { font-size: .93rem; color: var(--tc-text-light); line-height: 1.65; }

/* ============================================================
   CHIFFRES CLÉS
   ============================================================ */
.tc-numbers {
  background: linear-gradient(135deg, var(--tc-blue) 0%, var(--tc-blue-mid) 100%);
  color: var(--tc-white);
  padding: 72px 0;
}
.tc-numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.tc-number__val {
  font-family: var(--tc-font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--tc-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.tc-number__label {
  font-size: .9rem;
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.tc-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.tc-testimonial {
  background: var(--tc-white);
  border-radius: var(--tc-radius-lg);
  padding: 32px;
  box-shadow: var(--tc-shadow);
  position: relative;
}
.tc-testimonial::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 5rem;
  font-family: var(--tc-font-display);
  color: var(--tc-blue);
  opacity: .10;
  line-height: 1;
}
.tc-testimonial__stars { color: var(--tc-gold); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: .1em; }
.tc-testimonial__text { font-size: .97rem; color: var(--tc-text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.tc-testimonial__author { display: flex; align-items: center; gap: 12px; }
.tc-testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tc-blue), var(--tc-blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--tc-white);
  font-weight: 700;
  flex-shrink: 0;
}
.tc-testimonial__name { font-weight: 700; font-size: .9rem; color: var(--tc-text); }
.tc-testimonial__city { font-size: .8rem; color: var(--tc-text-light); }

/* ============================================================
   BLOG / ARTICLES
   ============================================================ */
.tc-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.tc-blog-card {
  background: var(--tc-white);
  border-radius: var(--tc-radius-lg);
  overflow: hidden;
  box-shadow: var(--tc-shadow);
  transition: box-shadow var(--tc-transition), transform var(--tc-transition);
  display: flex;
  flex-direction: column;
}
.tc-blog-card:hover { box-shadow: var(--tc-shadow-lg); transform: translateY(-4px); }
.tc-blog-card__img {
  height: 180px;
  background: linear-gradient(135deg, var(--tc-blue) 0%, var(--tc-blue-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: rgba(255,255,255,.8);
}
.tc-blog-card__img svg {
  width: 56px;
  height: 56px;
  display: block;
}
.tc-blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.tc-blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.tc-blog-card__cat {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tc-red);
}
.tc-blog-card__title { font-family: var(--tc-font-display); font-size: 1.1rem; font-weight: 700; color: var(--tc-blue); line-height: 1.3; }
.tc-blog-card__excerpt { font-size: .9rem; color: var(--tc-text-light); line-height: 1.6; flex: 1; }
.tc-blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--tc-blue-light);
  margin-top: 4px;
}
.tc-blog-card__link:hover { color: var(--tc-red); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.tc-cta-section {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  color: var(--tc-white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tc-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.tc-cta-section > * { position: relative; z-index: 1; }
.tc-cta-section h2 {
  font-family: var(--tc-font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.tc-cta-section p { font-size: 1.1rem; opacity: .9; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.tc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--tc-transition);
  cursor: pointer;
  border: none;
  letter-spacing: .02em;
}
.tc-btn--white {
  background: var(--tc-white);
  color: var(--tc-red);
}
.tc-btn--white:hover {
  background: var(--tc-off-white);
  color: var(--tc-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.tc-btn--outline-white {
  background: transparent;
  color: var(--tc-white);
  border: 2px solid rgba(255,255,255,.6);
}
.tc-btn--outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--tc-white);
  transform: translateY(-2px);
}
.tc-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0f2942;
  color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.site-footer__brand { display: flex; flex-direction: column; gap: 16px; }
.site-footer__logo { font-size: 1.25rem; font-weight: 700; font-family: var(--tc-font-display); color: var(--tc-white); }
.site-footer__logo span { color: var(--tc-gold); }
.site-footer__tagline { font-size: .87rem; opacity: .65; line-height: 1.6; }
.site-footer__col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tc-white);
  margin-bottom: 16px;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.site-footer__col a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--tc-transition);
}
.site-footer__col a:hover { color: var(--tc-gold); }

/* Footer régions */
.site-footer__regions {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 28px 0 32px;
}
.site-footer__regions-title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.site-footer__regions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__regions-list a {
  font-size: .84rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}
.site-footer__regions-list a:hover { color: var(--tc-gold); }
.site-footer__regions-count {
  color: rgba(255,255,255,.35);
  font-size: .78rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  opacity: .6;
}

/* ============================================================
   RÉSULTATS PLUGIN (overrides sur les cartes)
   ============================================================ */
.tc-results-wrapper { margin-top: 48px; }
/* ============================================================
   ARCHIVE TAXONOMIES
   ============================================================ */
.tc-archive-header {
  background: linear-gradient(135deg, var(--tc-blue) 0%, var(--tc-blue-light) 100%);
  color: #fff;
  padding: 36px 28px 28px;
  margin-bottom: 32px;
  border-radius: 0 0 var(--tc-radius) var(--tc-radius);
}
.tc-archive-header h1 {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 10px 0 8px;
}
.tc-archive-header p { color: rgba(255,255,255,.8); margin: 0; }
.tc-archive-stats {
  display: inline-block;
  margin-top: 10px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}

/* Fil d'Ariane dans l'en-tête archive */
.tc-archive-header .tc-breadcrumb {
  font-size: .8rem;
  margin-bottom: 4px;
}
.tc-archive-header .tc-breadcrumb a { color: rgba(255,255,255,.8); }
.tc-archive-header .tc-breadcrumb a:hover { color: #fff; }
.tc-archive-header .tc-breadcrumb [aria-current="page"] { color: rgba(255,255,255,.5); font-style: italic; }

/* Sous-navigation (départements d'une région, communes d'un département) */
.tc-subnav {
  margin-bottom: 32px;
}
.tc-subnav-title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--tc-text-light);
  margin-bottom: 12px;
}
.tc-subnav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tc-subnav-list a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: .84rem;
  background: var(--tc-gray-light);
  color: var(--tc-blue);
  border: 1px solid var(--tc-gray);
  transition: background .2s, color .2s;
  text-decoration: none;
}
.tc-subnav-list a:hover { background: var(--tc-blue); color: #fff; border-color: var(--tc-blue); }
.tc-subnav-list span { color: var(--tc-text-light); font-size: .78rem; }
.tc-subnav-list a:hover span { color: rgba(255,255,255,.7); }

.tc-results-header { margin-bottom: 20px; }
.tc-results-count { font-size: .95rem; color: var(--tc-text-light); font-weight: 600; }
.tc-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.tc-card {
  background: var(--tc-white);
  border-radius: var(--tc-radius-lg);
  box-shadow: var(--tc-shadow);
  overflow: hidden;
  transition: box-shadow var(--tc-transition), transform var(--tc-transition);
  border: 1.5px solid var(--tc-gray-light);
}
.tc-card:hover { box-shadow: var(--tc-shadow-lg); transform: translateY(-3px); }
.tc-card-body { padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.tc-card-type {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tc-blue-light);
  background: rgba(41,128,185,.1);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
}
.tc-card-title { font-size: 1.05rem; font-weight: 700; color: var(--tc-blue); line-height: 1.3; }
.tc-card-title a { color: inherit; }
.tc-card-title a:hover { color: var(--tc-red); }
.tc-card-commune, .tc-card-tel { font-size: .88rem; color: var(--tc-text-light); display: flex; align-items: center; gap: 6px; }
.tc-card-link { display: inline-flex; align-items: center; gap: 4px; font-size: .88rem; font-weight: 700; color: var(--tc-blue-light); margin-top: 4px; }
.tc-card-link:hover { color: var(--tc-red); }
.tc-badge-etat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}
.tc-etat-ouvert { background: #eafaf1; color: #1e8449; }
.tc-etat-ferme  { background: #fdecea; color: var(--tc-red); }
.tc-no-results {
  text-align: center;
  padding: 48px;
  color: var(--tc-text-light);
  font-size: 1rem;
  background: var(--tc-off-white);
  border-radius: var(--tc-radius-lg);
}

/* Pagination */
.page-numbers { display: flex; gap: 8px; margin-top: 36px; justify-content: center; flex-wrap: wrap; }
.page-numbers li a,
.page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1.5px solid var(--tc-gray-light);
  font-size: .9rem;
  font-weight: 600;
  color: var(--tc-text);
  transition: all var(--tc-transition);
}
.page-numbers li a:hover { background: var(--tc-blue); color: #fff; border-color: var(--tc-blue); }
.page-numbers li .current { background: var(--tc-blue); color: #fff; border-color: var(--tc-blue); }

/* ============================================================
   BLOG — HERO
   ============================================================ */
.tc-blog-hero {
  background: linear-gradient(135deg, var(--tc-blue) 0%, var(--tc-blue-mid) 55%, #1b3a5c 100%);
  color: var(--tc-white);
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}
.tc-blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.tc-blog-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 72px;
}
.tc-blog-hero .tc-section__eyebrow { color: var(--tc-gold); display: block; margin-bottom: 14px; }
.tc-blog-hero__title {
  font-family: var(--tc-font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.tc-blog-hero__title em { font-style: normal; color: var(--tc-gold); }
.tc-blog-hero__sub { font-size: 1.05rem; opacity: .85; max-width: 560px; margin: 0 auto; }
.tc-blog-hero__wave { position: relative; z-index: 2; line-height: 0; margin-top: -1px; }
.tc-blog-hero__wave svg { width: 100%; height: 64px; display: block; }

/* ── Filtres catégories ────────────────────────────── */
.tc-blog-filters {
  background: var(--tc-off-white);
  border-bottom: 1.5px solid var(--tc-gray-light);
  position: sticky;
  top: 72px;
  z-index: 90;
}
.tc-blog-filters__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: var(--tc-max-width);
  margin: 0 auto;
}
.tc-blog-filters__inner::-webkit-scrollbar { display: none; }
.tc-blog-filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--tc-text-light);
  background: var(--tc-white);
  border: 1.5px solid var(--tc-gray-light);
  white-space: nowrap;
  transition: all var(--tc-transition);
  text-decoration: none;
}
.tc-blog-filter-btn:hover,
.tc-blog-filter-btn.active {
  background: var(--tc-blue);
  color: var(--tc-white);
  border-color: var(--tc-blue);
}

/* ── Catégorie badge ───────────────────────────────── */
.tc-blog-cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tc-white);
  background: var(--tc-red);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.tc-blog-cat--overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  margin-bottom: 0;
  z-index: 2;
}

/* ── Meta date ─────────────────────────────────────── */
.tc-blog-meta-date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  color: var(--tc-text-light);
}
.tc-blog-meta-date svg { width: 13px; height: 13px; }

/* ── Article vedette ───────────────────────────────── */
.tc-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--tc-white);
  border-radius: var(--tc-radius-lg);
  box-shadow: var(--tc-shadow-lg);
  overflow: hidden;
  margin-bottom: 48px;
  transition: box-shadow var(--tc-transition);
}
.tc-blog-featured:hover { box-shadow: 0 12px 56px rgba(26,82,118,.2); }
.tc-blog-featured__img-wrap {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 340px;
}
.tc-blog-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.tc-blog-featured:hover .tc-blog-featured__img { transform: scale(1.04); }
.tc-blog-featured__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,82,118,.08), transparent);
}
.tc-blog-featured__body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.tc-blog-featured__title {
  font-family: var(--tc-font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--tc-blue);
}
.tc-blog-featured__title a { color: inherit; }
.tc-blog-featured__title a:hover { color: var(--tc-red); }
.tc-blog-featured__excerpt { font-size: .97rem; color: var(--tc-text-light); line-height: 1.7; flex: 1; }
.tc-blog-featured__meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.tc-blog-featured__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--tc-blue-light);
  transition: color var(--tc-transition), gap var(--tc-transition);
}
.tc-blog-featured__link svg { width: 14px; height: 14px; transition: transform var(--tc-transition); }
.tc-blog-featured__link:hover { color: var(--tc-red); }
.tc-blog-featured__link:hover svg { transform: translateX(3px); }

/* ── Grille archive ────────────────────────────────── */
.tc-blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.tc-blog-archive-card {
  background: var(--tc-white);
  border-radius: var(--tc-radius-lg);
  overflow: hidden;
  box-shadow: var(--tc-shadow);
  transition: box-shadow var(--tc-transition), transform var(--tc-transition);
  display: flex;
  flex-direction: column;
}
.tc-blog-archive-card:hover { box-shadow: var(--tc-shadow-lg); transform: translateY(-4px); }
.tc-blog-archive-card__img-wrap {
  position: relative;
  display: block;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--tc-blue), var(--tc-blue-light));
  flex-shrink: 0;
}
.tc-blog-archive-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.tc-blog-archive-card:hover .tc-blog-archive-card__img { transform: scale(1.06); }
.tc-blog-archive-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tc-blog-archive-card__img-placeholder svg { width: 48px; height: 48px; }
.tc-blog-archive-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tc-blog-archive-card__title {
  font-family: var(--tc-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tc-blue);
  line-height: 1.3;
}
.tc-blog-archive-card__title a { color: inherit; }
.tc-blog-archive-card__title a:hover { color: var(--tc-red); }
.tc-blog-archive-card__excerpt { font-size: .88rem; color: var(--tc-text-light); line-height: 1.6; flex: 1; }
.tc-blog-archive-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}

/* ── CTA blog ──────────────────────────────────────── */
.tc-blog-cta {
  background: linear-gradient(135deg, var(--tc-blue) 0%, var(--tc-blue-mid) 100%);
  padding: 48px 0;
}
.tc-blog-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.tc-blog-cta__title {
  font-family: var(--tc-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--tc-white);
  margin-bottom: 6px;
}
.tc-blog-cta__sub { font-size: .92rem; color: rgba(255,255,255,.75); }

/* ============================================================
   ARTICLE SINGLE — HERO
   ============================================================ */
.tc-article-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 0;
  color: var(--tc-white);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.tc-article-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.4) saturate(.8);
}
.tc-article-hero__bg--gradient {
  background: linear-gradient(135deg, var(--tc-blue) 0%, #1b3a5c 100%);
  filter: none;
}
.tc-article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,45,.8) 0%, rgba(26,82,118,.4) 100%);
}
.tc-article-hero__inner {
  position: relative;
  z-index: 2;
  padding-bottom: 56px;
  max-width: 820px;
}
.tc-article-hero__wave { position: relative; z-index: 2; line-height: 0; margin-top: -1px; }
.tc-article-hero__wave svg { width: 100%; height: 64px; display: block; }

/* Fil d'Ariane */
.tc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.tc-breadcrumb a { color: rgba(255,255,255,.75); }
.tc-breadcrumb a:hover { color: var(--tc-gold); }
.tc-breadcrumb span { color: rgba(255,255,255,.4); }

.tc-article-hero__title {
  font-family: var(--tc-font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.tc-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.tc-article-hero__sep { opacity: .4; }
.tc-article-meta-read {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  color: rgba(255,255,255,.8);
}
.tc-article-meta-read svg { width: 13px; height: 13px; }
.tc-article-hero .tc-blog-meta-date { color: rgba(255,255,255,.8); }

/* ============================================================
   ARTICLE SINGLE — LAYOUT
   ============================================================ */
.tc-article-layout { background: var(--tc-off-white); padding: 56px 0 80px; }
.tc-article-layout__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* Contenu */
.tc-article-content { min-width: 0; }
.tc-article-body {
  background: var(--tc-white);
  border-radius: var(--tc-radius-lg);
  padding: 48px 52px;
  box-shadow: var(--tc-shadow);
  line-height: 1.85;
  font-size: 1.05rem;
  color: var(--tc-text);
}
.tc-article-body h2 {
  font-family: var(--tc-font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--tc-blue);
  margin: 40px 0 14px;
  line-height: 1.25;
}
.tc-article-body h3 {
  font-family: var(--tc-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--tc-blue);
  margin: 28px 0 10px;
}
.tc-article-body p { margin-bottom: 18px; }
.tc-article-body strong { color: var(--tc-text); }
.tc-article-body a { color: var(--tc-blue-light); text-decoration: underline; text-underline-offset: 3px; }
.tc-article-body a:hover { color: var(--tc-red); }
.tc-article-body ul, .tc-article-body ol { padding-left: 24px; margin-bottom: 18px; }
.tc-article-body li { margin-bottom: 8px; }
.tc-article-body blockquote {
  border-left: 4px solid var(--tc-blue-light);
  margin: 28px 0;
  padding: 16px 24px;
  background: var(--tc-off-white);
  border-radius: 0 var(--tc-radius) var(--tc-radius) 0;
  font-style: italic;
  color: var(--tc-text-light);
}
.tc-article-body img {
  border-radius: var(--tc-radius);
  margin: 24px 0;
  box-shadow: var(--tc-shadow);
}

/* Tags */
.tc-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1.5px solid var(--tc-gray-light);
}
.tc-tag {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--tc-blue);
  background: rgba(26,82,118,.08);
  border: 1px solid rgba(26,82,118,.15);
  border-radius: 100px;
  padding: 5px 14px;
  transition: all var(--tc-transition);
}
.tc-tag:hover { background: var(--tc-blue); color: #fff; border-color: var(--tc-blue); }

/* Navigation prev/next */
.tc-article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.tc-article-nav__item {
  background: var(--tc-white);
  border-radius: var(--tc-radius-lg);
  padding: 20px 24px;
  box-shadow: var(--tc-shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow var(--tc-transition), transform var(--tc-transition);
  text-decoration: none;
}
.tc-article-nav__item:hover { box-shadow: var(--tc-shadow-lg); transform: translateY(-2px); }
.tc-article-nav__item--next { text-align: right; }
.tc-article-nav__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--tc-text-light);
}
.tc-article-nav__item--next .tc-article-nav__label { justify-content: flex-end; }
.tc-article-nav__label svg { width: 14px; height: 14px; }
.tc-article-nav__title { font-size: .93rem; font-weight: 700; color: var(--tc-blue); line-height: 1.3; }
.tc-article-nav__item:hover .tc-article-nav__title { color: var(--tc-red); }

/* Sidebar */
.tc-article-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tc-sidebar-block {
  background: var(--tc-white);
  border-radius: var(--tc-radius-lg);
  padding: 28px 24px;
  box-shadow: var(--tc-shadow);
}
.tc-sidebar-block__title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tc-text-light);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--tc-gray-light);
}
.tc-sidebar-posts { display: flex; flex-direction: column; gap: 16px; }
.tc-sidebar-post { display: flex; align-items: flex-start; gap: 12px; }
.tc-sidebar-post__thumb { flex-shrink: 0; border-radius: 8px; overflow: hidden; display: block; width: 60px; height: 60px; }
.tc-sidebar-post__img { width: 60px; height: 60px; object-fit: cover; display: block; }
.tc-sidebar-post__title {
  font-size: .88rem;
  font-weight: 600;
  color: var(--tc-text);
  line-height: 1.35;
  display: block;
  margin-bottom: 4px;
  transition: color var(--tc-transition);
}
.tc-sidebar-post__title:hover { color: var(--tc-blue-light); }
.tc-sidebar-post__date { font-size: .75rem; color: var(--tc-text-light); }
.tc-sidebar-cats { display: flex; flex-direction: column; gap: 4px; }
.tc-sidebar-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: .9rem;
  color: var(--tc-text);
  font-weight: 500;
  transition: background var(--tc-transition), color var(--tc-transition);
}
.tc-sidebar-cat:hover { background: var(--tc-off-white); color: var(--tc-blue); }
.tc-sidebar-cat span {
  background: var(--tc-off-white);
  color: var(--tc-text-light);
  font-size: .75rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 2px 8px;
}
.tc-sidebar-cta {
  background: linear-gradient(135deg, var(--tc-blue), var(--tc-blue-mid));
  border-radius: var(--tc-radius-lg);
  padding: 28px 24px;
  color: var(--tc-white);
}
.tc-sidebar-cta__title { font-family: var(--tc-font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.tc-sidebar-cta__text { font-size: .88rem; opacity: .8; margin-bottom: 20px; line-height: 1.6; }

/* ============================================================
   PAGE SERVICES — HERO
   ============================================================ */
.tc-services-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 0;
  color: var(--tc-white);
}
.tc-services-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(.4) saturate(.85);
}
.tc-services-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,.5) 0%, rgba(26,82,118,.75) 60%, rgba(15,41,66,.6) 100%);
}
.tc-services-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 80px;
}
.tc-services-hero .tc-section__eyebrow {
  color: var(--tc-gold);
  display: block;
  margin-bottom: 16px;
}
.tc-services-hero__title {
  font-family: var(--tc-font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.tc-services-hero__title em {
  font-style: normal;
  color: var(--tc-gold);
}
.tc-services-hero__sub {
  font-size: 1.05rem;
  opacity: .85;
  margin-bottom: 36px;
}
.tc-services-hero__chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.tc-services-hero__wave {
  position: relative;
  z-index: 2;
  line-height: 0;
  margin-top: -1px;
}
.tc-services-hero__wave svg {
  width: 100%;
  height: 72px;
  display: block;
}

/* ============================================================
   SERVICES — grille 4 cartes
   ============================================================ */
.tc-svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.tc-svc-card {
  background: var(--tc-white);
  border: 1.5px solid var(--tc-gray-light);
  border-radius: var(--tc-radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--tc-transition), transform var(--tc-transition), border-color var(--tc-transition);
}
.tc-svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tc-blue), var(--tc-blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tc-transition);
}
.tc-svc-card:hover {
  box-shadow: var(--tc-shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.tc-svc-card:hover::before { transform: scaleX(1); }
.tc-svc-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--tc-blue), var(--tc-blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.tc-svc-card__icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
.tc-svc-card__title {
  font-family: var(--tc-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--tc-blue);
  line-height: 1.2;
}
.tc-svc-card__text {
  font-size: .95rem;
  color: var(--tc-text-light);
  line-height: 1.7;
  flex: 1;
}
.tc-svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--tc-blue-light);
  margin-top: 4px;
  transition: color var(--tc-transition), gap var(--tc-transition);
}
.tc-svc-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--tc-transition);
}
.tc-svc-card__link:hover { color: var(--tc-red); }
.tc-svc-card__link:hover svg { transform: translateX(3px); }

/* ============================================================
   COMMENT ÇA FONCTIONNE
   ============================================================ */
.tc-how {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.tc-how__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(.3) saturate(.7);
}
.tc-how__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,82,118,.9) 0%, rgba(15,41,66,.85) 100%);
}
.tc-how__inner {
  position: relative;
  z-index: 2;
}
.tc-how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 8px;
}
.tc-how-step {
  flex: 1;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--tc-radius-lg);
  padding: 40px 32px;
  text-align: center;
  color: var(--tc-white);
  backdrop-filter: blur(8px);
  position: relative;
  transition: background var(--tc-transition), transform var(--tc-transition);
}
.tc-how-step:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-4px);
}
.tc-how-step__num {
  font-family: var(--tc-font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,.08);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
  letter-spacing: -.04em;
}
.tc-how-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--tc-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #fff;
}
.tc-how-step__icon svg {
  width: 30px;
  height: 30px;
  display: block;
}
.tc-how-step__title {
  font-family: var(--tc-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.tc-how-step__text {
  font-size: .93rem;
  opacity: .8;
  line-height: 1.7;
}
.tc-how-step__arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  flex-shrink: 0;
  margin-top: 80px;
}
.tc-how-step__arrow svg {
  width: 40px;
  height: 20px;
  display: block;
}

/* Variante split image inversée (image à droite) */
.tc-about-split--reverse {
  direction: rtl;
}
.tc-about-split--reverse > * {
  direction: ltr;
}
.tc-about-split__img--alt {
  border-radius: 24px 120px 24px 24px;
}

/* ============================================================
   PAGE À PROPOS — HERO
   ============================================================ */
.tc-about-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 0;
  color: var(--tc-white);
}
.tc-about-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(.45) saturate(.9);
}
.tc-about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,82,118,.75) 0%, rgba(15,41,66,.6) 100%);
}
.tc-about-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 80px;
}
.tc-about-hero .tc-section__eyebrow {
  color: var(--tc-gold);
  display: block;
  margin-bottom: 16px;
}
.tc-about-hero__title {
  font-family: var(--tc-font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.tc-about-hero__title em {
  font-style: normal;
  color: var(--tc-gold);
}
.tc-about-hero__sub {
  font-size: 1.05rem;
  opacity: .85;
  margin-bottom: 36px;
  line-height: 1.7;
}
.tc-about-hero__chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.tc-about-hero__wave {
  position: relative;
  z-index: 2;
  line-height: 0;
  margin-top: -1px;
}
.tc-about-hero__wave svg {
  width: 100%;
  height: 72px;
  display: block;
}

/* ============================================================
   QUI NOUS SOMMES — split image/texte
   ============================================================ */
.tc-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.tc-about-split__img-wrap {
  position: relative;
  flex-shrink: 0;
}
.tc-about-split__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 120px 24px 24px 24px;
  display: block;
  box-shadow: var(--tc-shadow-lg);
}
.tc-about-split__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--tc-white);
  border-radius: var(--tc-radius-lg);
  box-shadow: var(--tc-shadow-lg);
  padding: 20px 24px;
  text-align: center;
  border-left: 4px solid var(--tc-gold);
}
.tc-about-split__badge-num {
  display: block;
  font-family: var(--tc-font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--tc-blue);
  line-height: 1.1;
}
.tc-about-split__badge-lbl {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--tc-text-light);
  margin-top: 4px;
  display: block;
}
.tc-about-text {
  font-size: 1rem;
  color: var(--tc-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.tc-about-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.tc-about-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .97rem;
  font-weight: 600;
  color: var(--tc-text);
}
.tc-about-checks li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ============================================================
   TIMELINE — Notre histoire
   ============================================================ */
.tc-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 16px;
}
.tc-timeline::before {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, var(--tc-blue-light), var(--tc-blue));
  z-index: 0;
}
.tc-timeline__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 16px;
}
.tc-timeline__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tc-blue), var(--tc-blue-light));
  border: 4px solid var(--tc-white);
  box-shadow: 0 0 0 2px var(--tc-blue-light);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-bottom: 24px;
}
.tc-timeline__card {
  background: var(--tc-white);
  border-radius: var(--tc-radius-lg);
  box-shadow: var(--tc-shadow);
  padding: 28px 24px;
  width: 100%;
  border-top: 3px solid var(--tc-blue-light);
  transition: box-shadow var(--tc-transition), transform var(--tc-transition);
}
.tc-timeline__card:hover {
  box-shadow: var(--tc-shadow-lg);
  transform: translateY(-4px);
}
.tc-timeline__year {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--tc-blue-light);
  display: block;
  margin-bottom: 8px;
}
.tc-timeline__title {
  font-family: var(--tc-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tc-blue);
  margin-bottom: 10px;
}
.tc-timeline__text {
  font-size: .92rem;
  color: var(--tc-text-light);
  line-height: 1.65;
}

/* ============================================================
   MISSION & VALEURS — image de fond
   ============================================================ */
.tc-about-mv {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.tc-about-mv__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(.3) saturate(.8);
}
.tc-about-mv__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,82,118,.85) 0%, rgba(15,41,66,.8) 100%);
}
.tc-about-mv__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.tc-about-mv__card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  border-radius: var(--tc-radius-lg);
  padding: 48px 40px;
  color: var(--tc-white);
  transition: background var(--tc-transition), transform var(--tc-transition);
}
.tc-about-mv__card:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-4px);
}
.tc-about-mv__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--tc-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tc-white);
  margin-bottom: 24px;
  flex-shrink: 0;
}
.tc-about-mv__icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
.tc-about-mv__title {
  font-family: var(--tc-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.tc-about-mv__text {
  font-size: 1rem;
  opacity: .85;
  line-height: 1.75;
}

/* ============================================================
   ÉQUIPE
   ============================================================ */
.tc-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.tc-team-card {
  background: var(--tc-white);
  border-radius: var(--tc-radius-lg);
  box-shadow: var(--tc-shadow);
  overflow: hidden;
  transition: box-shadow var(--tc-transition), transform var(--tc-transition);
}
.tc-team-card:hover {
  box-shadow: var(--tc-shadow-lg);
  transform: translateY(-5px);
}
.tc-team-card__img-wrap {
  height: 240px;
  overflow: hidden;
}
.tc-team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .4s ease;
  display: block;
}
.tc-team-card:hover .tc-team-card__img {
  transform: scale(1.05);
}
.tc-team-card__body {
  padding: 28px 24px;
}
.tc-team-card__name {
  font-family: var(--tc-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tc-blue);
  margin-bottom: 4px;
}
.tc-team-card__role {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tc-gold);
  margin-bottom: 12px;
}
.tc-team-card__bio {
  font-size: .92rem;
  color: var(--tc-text-light);
  line-height: 1.65;
}

/* ============================================================
   PAGE CONTACT — HERO
   ============================================================ */
.tc-contact-hero {
  background: linear-gradient(135deg, var(--tc-blue) 0%, var(--tc-blue-mid) 55%, #1b3a5c 100%);
  color: var(--tc-white);
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}
.tc-contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.tc-contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(41,128,185,.35) 0%, transparent 70%);
  pointer-events: none;
}
.tc-contact-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 72px;
}
.tc-contact-hero .tc-section__eyebrow {
  color: var(--tc-gold);
  margin-bottom: 16px;
  display: block;
}
.tc-contact-hero__title {
  font-family: var(--tc-font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.tc-contact-hero__title em {
  font-style: normal;
  color: var(--tc-gold);
}
.tc-contact-hero__sub {
  font-size: 1.1rem;
  opacity: .85;
  margin-bottom: 36px;
}
.tc-contact-hero__chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.tc-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: .85rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  letter-spacing: .02em;
  color: rgba(255,255,255,.95);
}
.tc-chip svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: .85;
}
.tc-contact-hero__wave {
  position: relative;
  z-index: 2;
  line-height: 0;
  margin-top: -1px;
}
.tc-contact-hero__wave svg {
  width: 100%;
  height: 64px;
  display: block;
}

/* ============================================================
   PAGE CONTACT — BODY
   ============================================================ */
.tc-contact-body {
  background: var(--tc-off-white);
  padding: 64px 0 80px;
}
.tc-contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}

/* Colonne info */
.tc-contact-info {
  background: var(--tc-white);
  border-radius: var(--tc-radius-lg);
  box-shadow: var(--tc-shadow);
  padding: 40px 32px;
  position: sticky;
  top: 96px;
}
.tc-contact-info__block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.tc-contact-info__icon-wrap {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--tc-blue), var(--tc-blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.tc-contact-info__icon-wrap svg {
  width: 20px;
  height: 20px;
  display: block;
}
.tc-contact-info__label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tc-text-light);
  margin-bottom: 4px;
}
.tc-contact-info__value {
  font-size: .97rem;
  font-weight: 600;
  color: var(--tc-text);
  line-height: 1.4;
}
a.tc-contact-info__value:hover { color: var(--tc-blue-light); }
.tc-contact-info__sep {
  border: none;
  border-top: 1.5px solid var(--tc-gray-light);
  margin: 28px 0;
}
.tc-contact-info__faq-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tc-text-light);
  margin-bottom: 14px;
}
.tc-contact-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tc-contact-faq li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--tc-text);
  font-weight: 500;
}
.tc-contact-faq li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--tc-blue-light);
}

/* Carte formulaire */
.tc-contact-form-wrap {}
.tc-contact-form-card {
  background: var(--tc-white);
  border-radius: var(--tc-radius-lg);
  box-shadow: var(--tc-shadow-lg);
  overflow: hidden;
}
.tc-contact-form-card__header {
  background: linear-gradient(135deg, var(--tc-blue) 0%, var(--tc-blue-mid) 100%);
  color: var(--tc-white);
  padding: 36px 40px 28px;
}
.tc-contact-form-card__title {
  font-family: var(--tc-font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}
.tc-contact-form-card__sub {
  font-size: .9rem;
  opacity: .8;
}
.tc-contact-form-card__sub span { color: var(--tc-gold); }

/* ── CF7 styles premium ───────────────────────────────── */
.tc-contact-form-card .wpcf7 {
  padding: 40px;
}
.tc-contact-form-card .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tc-contact-form-card .wpcf7-form p {
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
/* Labels */
.tc-contact-form-card .wpcf7-form label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--tc-text-light);
  display: block;
}
/* Champs texte, email, tel */
.tc-contact-form-card .wpcf7-form input[type="text"],
.tc-contact-form-card .wpcf7-form input[type="email"],
.tc-contact-form-card .wpcf7-form input[type="tel"],
.tc-contact-form-card .wpcf7-form input[type="url"],
.tc-contact-form-card .wpcf7-form input[type="number"],
.tc-contact-form-card .wpcf7-form select,
.tc-contact-form-card .wpcf7-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--tc-gray-light);
  border-radius: 10px;
  font-size: .97rem;
  font-family: var(--tc-font-body);
  color: var(--tc-text);
  background: var(--tc-off-white);
  transition: border-color var(--tc-transition), box-shadow var(--tc-transition), background var(--tc-transition);
  outline: none;
  line-height: 1.5;
  -webkit-appearance: none;
  appearance: none;
}
.tc-contact-form-card .wpcf7-form input:focus,
.tc-contact-form-card .wpcf7-form select:focus,
.tc-contact-form-card .wpcf7-form textarea:focus {
  border-color: var(--tc-blue-light);
  background: var(--tc-white);
  box-shadow: 0 0 0 4px rgba(41,128,185,.12);
}
.tc-contact-form-card .wpcf7-form textarea {
  min-height: 150px;
  resize: vertical;
}
/* Champ invalide */
.tc-contact-form-card .wpcf7-form .wpcf7-not-valid {
  border-color: var(--tc-red) !important;
  box-shadow: 0 0 0 4px rgba(192,57,43,.10) !important;
}
.tc-contact-form-card .wpcf7-not-valid-tip {
  font-size: .8rem;
  color: var(--tc-red);
  margin-top: 4px;
  display: block;
}
/* Bouton submit */
.tc-contact-form-card .wpcf7-form input[type="submit"],
.tc-contact-form-card .wpcf7-submit {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--tc-blue) 0%, var(--tc-blue-light) 100%);
  color: var(--tc-white);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  transition: transform var(--tc-transition), box-shadow var(--tc-transition), filter var(--tc-transition);
  font-family: var(--tc-font-body);
  margin-top: 8px;
}
.tc-contact-form-card .wpcf7-form input[type="submit"]:hover,
.tc-contact-form-card .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,82,118,.35);
  filter: brightness(1.08);
}
.tc-contact-form-card .wpcf7-form input[type="submit"]:active,
.tc-contact-form-card .wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: none;
}
/* Spinner */
.tc-contact-form-card .wpcf7-spinner {
  display: none;
}
/* Messages de réponse */
.tc-contact-form-card .wpcf7-response-output {
  margin-top: 16px !important;
  margin-bottom: 0 !important;
  padding: 14px 18px !important;
  border-radius: 10px !important;
  font-size: .93rem !important;
  font-weight: 600 !important;
  border: none !important;
}
.tc-contact-form-card .wpcf7-mail-sent-ok {
  background: #eafaf1 !important;
  color: #1e8449 !important;
}
.tc-contact-form-card .wpcf7-mail-sent-ng,
.tc-contact-form-card .wpcf7-validation-errors,
.tc-contact-form-card .wpcf7-spam-blocked {
  background: #fdecea !important;
  color: var(--tc-red) !important;
}
/* Placeholder */
.tc-contact-form-card .wpcf7-form input::placeholder,
.tc-contact-form-card .wpcf7-form textarea::placeholder {
  color: var(--tc-gray);
}

/* Message si pas de formulaire */
.tc-contact-no-form {
  padding: 32px;
  text-align: center;
  color: var(--tc-text-light);
  font-size: .95rem;
}

/* ============================================================
   PAGE CONTACT — BANDEAU CONFIANCE
   ============================================================ */
.tc-contact-trust {
  background: var(--tc-white);
  border-top: 1.5px solid var(--tc-gray-light);
  padding: 40px 0;
}
.tc-contact-trust__grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.tc-contact-trust__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tc-contact-trust__item svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--tc-blue-light);
}
.tc-contact-trust__item strong {
  display: block;
  font-size: .93rem;
  font-weight: 700;
  color: var(--tc-text);
  line-height: 1.3;
}
.tc-contact-trust__item span {
  font-size: .82rem;
  color: var(--tc-text-light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tc-contact-grid { grid-template-columns: 1fr; }
  .tc-contact-info { position: static; }
  .tc-blog-featured { grid-template-columns: 1fr; }
  .tc-blog-featured__img-wrap { min-height: 240px; }
  .tc-blog-featured__body { padding: 32px 28px; }
  .tc-blog-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .tc-article-layout__inner { grid-template-columns: 1fr; }
  .tc-article-sidebar { position: static; }
  .tc-article-body { padding: 32px 28px; }
  .tc-svc-grid { grid-template-columns: 1fr; }
  .tc-how-steps { flex-direction: column; gap: 24px; }
  .tc-how-step__arrow { display: none; }
  .tc-about-split--reverse { direction: ltr; }
  .tc-about-split { grid-template-columns: 1fr; gap: 48px; }
  .tc-about-split__img { height: 320px; border-radius: 60px 16px 16px 16px; }
  .tc-about-split__badge { right: 0; bottom: -16px; }
  .tc-team-grid { grid-template-columns: 1fr 1fr; }
  .tc-timeline { grid-template-columns: 1fr; gap: 24px; }
  .tc-timeline::before { display: none; }
  .tc-timeline__item { align-items: flex-start; flex-direction: row; gap: 20px; }
  .tc-timeline__dot { margin-bottom: 0; margin-top: 4px; }
  .tc-about-mv__grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .tc-hero { padding: 56px 0 80px; }
  .tc-hero-search { padding: 20px; }
  .tc-hero-stats { gap: 24px; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-nav { 
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--tc-white);
    border-top: 1px solid var(--tc-gray-light);
    box-shadow: var(--tc-shadow);
    padding: 16px;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; }
  .nav-toggle { display: block; }
  .tc-numbers-grid { grid-template-columns: 1fr 1fr; }
  .tc-cta-btns { flex-direction: column; align-items: center; }
  .tc-contact-hero { padding: 64px 0 0; }
  .tc-contact-hero__chips { flex-direction: column; align-items: center; }
  .tc-contact-form-card__header { padding: 28px 24px 20px; }
  .tc-contact-form-card .wpcf7 { padding: 28px 20px; }
  .tc-contact-trust__grid { gap: 24px; flex-direction: column; align-items: flex-start; padding: 0 24px; }
  .tc-blog-hero { padding: 72px 0 0; }
  .tc-blog-archive-grid { grid-template-columns: 1fr; }
  .tc-blog-cta__inner { flex-direction: column; text-align: center; }
  .tc-article-hero { padding: 80px 0 0; min-height: 320px; }
  .tc-article-body { padding: 24px 20px; }
  .tc-article-nav { grid-template-columns: 1fr; }
  .tc-article-nav__item--next { text-align: left; }
  .tc-article-nav__item--next .tc-article-nav__label { justify-content: flex-start; }
  .tc-services-hero { padding: 80px 0 0; }
  .tc-services-hero__chips { flex-direction: column; align-items: center; }
  .tc-how { padding: 64px 0; }
  .tc-how__bg { background-attachment: scroll; }
  .tc-about-hero { padding: 80px 0 0; }
  .tc-about-hero__sub br { display: none; }
  .tc-about-hero__chips { flex-direction: column; align-items: center; }
  .tc-about-mv { padding: 64px 0; }
  .tc-about-mv__card { padding: 32px 24px; }
  .tc-team-grid { grid-template-columns: 1fr; }
  .tc-about-mv__bg { background-attachment: scroll; }
}
