/* ═══════════════════════════════════════════════
   CHARLY TATOUAGE — CSS Principal
   Design : Clair & Premium · Beige · Crème · Or
═══════════════════════════════════════════════ */

:root {
  --cream: #F5F0E8;
  --beige: #EDE5D5;
  --beige-dark: #D9CEBB;
  --ink: #1A1714;
  --ink-soft: #2E2A25;
  --ink-muted: #6B6358;
  --gold: #C4A96D;
  --gold-light: #D4BC8A;
  --white: #FDFAF5;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── NAVIGATION ─── */
#ct-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,169,109,0.2);
  transition: box-shadow 0.3s;
}

.ct-nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
}
.ct-nav-logo span { color: var(--gold); }

.ct-nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.ct-nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.ct-nav-links a:hover { color: var(--gold); }
.ct-nav-cta {
  background: var(--ink) !important;
  color: var(--cream) !important;
  padding: 0.65rem 1.6rem !important;
  transition: background 0.2s !important;
}
.ct-nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; }

.ct-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}
.ct-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}

.ct-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.ct-mobile-menu.open { display: flex; opacity: 1; pointer-events: all; }
.ct-mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink);
  text-decoration: none;
}
.ct-mobile-close {
  position: absolute;
  top: 2rem; right: 2rem;
  background: none; border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink-muted);
}

/* ─── UTILITAIRES ─── */
.ct-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}

.ct-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ct-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.ct-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.ct-title em { font-style: italic; color: var(--gold); }

.ct-subtitle {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 520px;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  padding: 1rem 2.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}
.btn-primary:hover { background: var(--ink); color: var(--cream); }

.btn-ghost {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--beige-dark);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── HERO ─── */
#ct-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  overflow: hidden;
}
.ct-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 6rem;
}
.ct-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ct-hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }

.ct-hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1rem;
}
.ct-hero-title em { font-style: italic; color: var(--gold); }

.ct-hero-sub {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--ink-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 400px;
}

.ct-tv-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.7rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  width: fit-content;
}
.ct-tv-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: ctPulse 2s infinite;
}
@keyframes ctPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(0.8); }
}

.ct-hero-actions { display: flex; align-items: center; gap: 2rem; }

.ct-hero-right {
  position: relative;
  overflow: hidden;
  background: var(--beige);
  min-height: 500px;
}
.ct-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ct-hero-stats {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  display: flex;
  gap: 3rem;
  z-index: 2;
}
.ct-hero-stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}
.ct-hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  display: block;
  margin-top: 0.3rem;
}
.ct-hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.7) 0%, transparent 50%);
  z-index: 1;
}

/* ─── TFX ─── */
#ct-tv {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.ct-tv-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.ct-tv-content {
  padding: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ct-tv-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ct-tv-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.ct-tv-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.ct-tv-title em { color: var(--gold); }
.ct-tv-text {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(245,240,232,0.65);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 400px;
}
.ct-tv-badge-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(196,169,109,0.4);
  padding: 1rem 2rem;
  width: fit-content;
}
.ct-tv-channel {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
}
.ct-tv-show {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
}
.ct-tv-visual {
  background: linear-gradient(135deg, #2E2A25 0%, #1A1714 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.ct-tv-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0.4;
}
.ct-tv-play {
  width: 80px; height: 80px;
  border: 1.5px solid rgba(196,169,109,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}
.ct-tv-play:hover { border-color: var(--gold); transform: scale(1.05); }
.ct-tv-play::before {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent var(--gold);
  margin-left: 5px;
}
.ct-ring {
  position: absolute;
  border: 1px solid rgba(196,169,109,0.1);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ctRing 3s ease-out infinite;
}
.ct-ring:nth-child(1) { width: 120px; height: 120px; }
.ct-ring:nth-child(2) { width: 120px; height: 120px; animation-delay: 1s; }
.ct-ring:nth-child(3) { width: 120px; height: 120px; animation-delay: 2s; }
@keyframes ctRing {
  0% { width:80px; height:80px; opacity:0.6; }
  100% { width:220px; height:220px; opacity:0; }
}

/* ─── GALERIE ─── */
#ct-galerie { background: var(--white); padding: 7rem 0; }
.ct-galerie-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}
.ct-galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ct-galerie-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--beige);
}
.ct-galerie-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.ct-galerie-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  min-height: 200px;
  transition: transform 0.4s ease;
}
.ct-galerie-item:nth-child(1) img { min-height: 400px; }
.ct-galerie-item:hover img { transform: scale(1.04); }
.ct-galerie-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.ct-galerie-item:hover .ct-galerie-overlay { background: rgba(26,23,20,0.4); }
.ct-galerie-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.3s;
  text-align: center;
}
.ct-galerie-item:hover .ct-galerie-tag { opacity: 1; }
.ct-galerie-note {
  margin-top: 2rem;
  text-align: center;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--ink-muted);
}
.ct-galerie-note a { color: var(--gold); }

/* ─── À PROPOS ─── */
#ct-apropos { background: var(--cream); padding: 7rem 0; }
.ct-apropos-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}
.ct-apropos-img { position: relative; }
.ct-apropos-frame {
  width: 100%; padding-bottom: 130%;
  background: linear-gradient(160deg, var(--beige) 0%, var(--beige-dark) 60%, var(--ink-soft) 100%);
  position: relative;
  overflow: hidden;
}
.ct-apropos-frame img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ct-apropos-frame::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(196,169,109,0.3);
  pointer-events: none;
  z-index: 1;
}
.ct-apropos-deco {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 1px solid var(--gold);
  opacity: 0.4;
}
.ct-apropos-years {
  position: absolute;
  bottom: 2rem; left: -2rem;
  background: var(--gold);
  padding: 1.2rem 1.6rem;
  text-align: center;
}
.ct-apropos-years-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  display: block;
}
.ct-apropos-years-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-top: 0.3rem;
}
.ct-apropos-content p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.ct-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.ct-skill {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--beige-dark);
  color: var(--ink-muted);
}

/* ─── AVIS ─── */
#ct-avis { background: var(--beige); padding: 7rem 0; }
.ct-avis-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 3rem;
  gap: 2rem;
}
.ct-google-rating { display: flex; flex-direction: column; align-items: flex-end; gap: 0.3rem; }
.ct-google-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.ct-google-stars { display: flex; gap: 4px; color: var(--gold); font-size: 1rem; }
.ct-google-count { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--ink-muted); }
.ct-avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ct-avis-card {
  background: var(--white);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s;
}
.ct-avis-card:hover { transform: translateY(-4px); }
.ct-avis-card::before {
  content: '"';
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: -1rem; left: 1.5rem;
  line-height: 1;
}
.ct-avis-stars { display: flex; gap: 3px; margin-bottom: 1rem; color: var(--gold); }
.ct-avis-text {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.ct-avis-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--beige);
  padding-top: 1rem;
}
.ct-avis-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--beige-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--ink-muted);
  flex-shrink: 0;
  font-weight: 500;
}
.ct-avis-name { font-size: 0.82rem; font-weight: 500; color: var(--ink); }
.ct-avis-date { font-size: 0.7rem; color: var(--ink-muted); }
.ct-google-logo { font-size: 0.65rem; letter-spacing: 0.1em; color: var(--ink-muted); margin-left: auto; opacity: 0.6; }

/* ─── BLOG ─── */
#ct-blog { background: var(--white); padding: 7rem 0; }
.ct-blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.ct-blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}
.ct-blog-card {
  background: var(--cream);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.ct-blog-card:hover { transform: translateY(-4px); }
.ct-blog-card-img {
  width: 100%;
  padding-bottom: 60%;
  position: relative;
  overflow: hidden;
  background: var(--beige);
}
.ct-blog-card:first-child .ct-blog-card-img { padding-bottom: 55%; }
.ct-blog-card-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.ct-blog-card:hover .ct-blog-card-img img { transform: scale(1.04); }
.ct-blog-cat {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  z-index: 1;
}
.ct-blog-body { padding: 1.5rem; }
.ct-blog-date {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.ct-blog-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.ct-blog-card:first-child .ct-blog-title { font-size: 1.4rem; }
.ct-blog-excerpt { font-size: 0.82rem; color: var(--ink-muted); line-height: 1.7; }
.ct-blog-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
}
.ct-blog-more::after { content: '→'; transition: transform 0.2s; }
.ct-blog-card:hover .ct-blog-more::after { transform: translateX(4px); }

/* ─── RDV ─── */
#ct-rdv {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
#ct-rdv::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,169,109,0.08) 0%, transparent 70%);
}
.ct-rdv-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.ct-rdv-label::before, .ct-rdv-label::after {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
}
.ct-rdv-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.ct-rdv-title em { color: var(--gold); }
.ct-rdv-sub {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(245,240,232,0.55);
  margin-bottom: 3rem;
  position: relative; z-index: 1;
}
.ct-rdv-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative; z-index: 1;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  padding: 1.1rem 3rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}
.btn-gold:hover { background: var(--cream); color: var(--ink); }
.btn-outline-light {
  border: 1px solid rgba(245,240,232,0.3);
  color: rgba(245,240,232,0.7);
  padding: 1.1rem 2.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.ct-rdv-info {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  position: relative; z-index: 1;
}
.ct-rdv-info-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  display: block;
  margin-bottom: 0.4rem;
}
.ct-rdv-info-value {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: rgba(245,240,232,0.8);
}

/* ─── FOOTER ─── */
#ct-footer {
  background: #100E0C;
  color: rgba(245,240,232,0.4);
  padding: 3rem 0;
}
.ct-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ct-footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(245,240,232,0.7);
}
.ct-footer-logo span { color: var(--gold); }
.ct-footer-links { display: flex; gap: 2rem; list-style: none; }
.ct-footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.ct-footer-links a:hover { color: var(--gold); }
.ct-footer-copy { font-size: 0.72rem; color: rgba(245,240,232,0.25); }

/* ─── TEMPLATE BLOG SINGLE ─── */
.ct-single-hero {
  padding: 10rem 0 5rem;
  background: var(--beige);
  text-align: center;
}
.ct-single-cat {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.ct-single-cat::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.ct-single-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--ink);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.15;
}
.ct-single-meta {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.ct-single-body {
  max-width: 740px;
  margin: 5rem auto;
  padding: 0 2rem;
}
.ct-single-body p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 1.8rem;
}
.ct-single-body h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  margin: 3rem 0 1.2rem;
  line-height: 1.2;
}
.ct-single-body h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin: 2rem 0 1rem;
}
.ct-single-body img {
  width: 100%;
  height: auto;
  margin: 2.5rem 0;
}
.ct-single-body blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
  margin: 2.5rem 0;
  font-style: italic;
  color: var(--ink-muted);
}
.ct-back-blog {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 3rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  #ct-nav { padding: 1.5rem 2rem; }
  .ct-container { padding: 0 2rem; }
  #ct-hero { grid-template-columns: 1fr; }
  .ct-hero-left { padding: 4rem 2rem; }
  .ct-hero-right { min-height: 400px; }
  .ct-tv-inner { grid-template-columns: 1fr; }
  .ct-tv-content { padding: 4rem 2rem; }
  .ct-apropos-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ct-galerie-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-galerie-item:nth-child(1) { grid-column: span 2; }
  .ct-avis-grid { grid-template-columns: 1fr; }
  .ct-blog-grid { grid-template-columns: 1fr; }
  .ct-rdv-info { flex-direction: column; gap: 2rem; }
  .ct-rdv-actions { flex-direction: column; }
  .ct-footer-inner { flex-direction: column; gap: 2rem; text-align: center; }
  .ct-galerie-header, .ct-blog-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .ct-avis-header { grid-template-columns: 1fr; }
  .ct-google-rating { align-items: flex-start; }
  .ct-nav-links { display: none; }
  .ct-hamburger { display: flex; }
}
