/* =========================
   PALETTE / TOKENS
========================= */
:root{
  --navy: #1B2A49;
  --navy-2:#2A3F5F;
  --cream:#F0E8D8;
  --paper:#F6F0E6;
  --beige:#D9CBB6;
  --beige-2:#E8DFD0;
  --gold:#C5A880;
  --gold-2:#B89870;

  --text: rgba(27,42,73,.86);
  --muted: rgba(27,42,73,.56);

  --white:#ffffff;
  --shadow-sm: 0 1px 3px rgba(27,42,73,.08);
  --shadow-md: 0 10px 30px rgba(27,42,73,.10);
  --shadow-lg: 0 18px 50px rgba(27,42,73,.14);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  letter-spacing: .01em;
}

/* texture ultra subtle */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 14px, var(--navy) 14px, var(--navy) 15px),
    repeating-linear-gradient(-45deg, transparent, transparent 14px, var(--navy) 14px, var(--navy) 15px);
}
body::after{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .015;
  background-image: radial-gradient(circle at 2px 2px, var(--gold) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* =========================
   NAVBAR
========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(246,240,230,.92), rgba(246,240,230,.72));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27,42,73,.08);
}

.nav-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: var(--navy);
  letter-spacing: .22em;
  font-size: .72rem;
  text-transform: uppercase;
}
.brand-dot{
  width: 7px; height:7px;
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(197,168,128,.18);
}
.brand-name{opacity:.9;}

.nav-links{
  display:flex;
  align-items:center;
  gap: 22px;
}
.nav-link{
  color: rgba(27,42,73,.72);
  text-decoration:none;
  font-size: .85rem;
  letter-spacing: .04em;
  transition: color .2s ease;
}
.nav-link:hover{ color: var(--navy); }

.nav-actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

.nav-burger{
  display:none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(27,42,73,.14);
  background: rgba(255,255,255,.35);
  cursor:pointer;
  padding: 8px;
}
.nav-burger span{
  display:block;
  height: 2px;
  background: rgba(27,42,73,.70);
  margin: 5px 0;
  border-radius: 10px;
}

/* mobile nav panel */
.mobile-nav{
  display:none;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 22px 18px;
  border-top: 1px solid rgba(27,42,73,.08);
}
.mobile-nav a{
  display:block;
  padding: 12px 6px;
  text-decoration:none;
  color: rgba(27,42,73,.82);
  font-size: .95rem;
}
.mobile-nav.is-open{ display:block; }

/* =========================
   HERO
========================= */
.home-hero{
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 44px 22px 70px;
  position: relative;
  z-index: 1;
}
.hero-shell{
  width: 100%;
  max-width: 980px;
  text-align:center;
  padding-top: 10px;
}

.logo-container{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 10px;
  margin: 0 auto;
}

.logo-container:hover img{
  filter: drop-shadow(0 6px 18px rgba(27,42,73,.25));
}


.logo{ width: 120px; height:auto; }
.logo-nicodogtips{ width: 280px; height:auto; margin-top: 5px; }

.tagline{
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: rgba(27,42,73,.60);
  font-size: 1.15rem;
  margin-top: 20px;
  letter-spacing: .06em;
}

.hero-divider{
  width: 56px;
  height: 1px;
  margin: 26px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .95;
}

.hero-headline{
  font-family: "Playfair Display", serif;
  font-weight: 500;
  color: var(--navy);
  font-size: 3.15rem;
  line-height: 1.15;
  margin: 40px auto 0;
  max-width: 900px;
}

.hero-problems{
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(27, 42, 73, 0.72);
    letter-spacing: 0.08em;
    line-height: 1.9;
    max-width: 940px;
    margin: 22px auto 0;
    text-transform: none;
}

.hero-actions{
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn-hero-primary,
.btn-hero-secondary{
  border-radius: 14px;
  padding: 18px 44px;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary{
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-hero-primary:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%);
}

.btn-hero-secondary{
  background: rgba(255,255,255,.45);
  color: var(--navy);
  border: 1px solid rgba(27,42,73,.14);
}
.btn-hero-secondary:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197,168,128,.55);
}

/* =========================
   SECTION SHELL (common)
========================= */
.approche-section,
.programmes-section,
.seances-section,
.contact-section{
  position: relative;
  z-index: 1;
  width: 100%;
  display:flex;
  justify-content:center;
}

.approche-inner,
.programmes-inner,
.contact-inner{
  width: 100%;
  max-width: 1180px;
  padding: 90px 22px;
  margin: 0 auto;
  text-align:center;
}

.approche-top-divider,
.programmes-top-divider,
.contact-top-divider{
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 52px;
}

/* =========================
   APPROCHE (tabs + panels)
========================= */
.approche-title{
  font-family:"Playfair Display", serif;
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 18px;
}
.approche-subtitle{
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 42px;
  font-family:"Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.25rem;
}

.approche-tabs{
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.approche-tab{
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(27,42,73,.14);
  background: rgba(255,255,255,.35);
  color: rgba(27,42,73,.75);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.approche-tab:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(197,168,128,.55);
}
.approche-tab.is-active{
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  border-color: transparent;
}

 .approche-panels {
    background: radial-gradient(circle at top, rgba(246, 240, 230, .9), rgba(232, 223, 208, .55));
    border: 1px solid rgba(27, 42, 73, .08);
    border-radius: var(--r-lg);
    padding: 44px 36px 30px 36px;
    box-shadow: var(--shadow-md);
    height: 640px;
    display: flex;
 }

.approche-panel{
  display:none;
  text-align:left;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
.approche-panel.is-active{
  display:flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
}

#panel-presentation.approche-panel.is-active{
  min-height: 0;
}

#panel-presentation .panel-signature-block{
  display:block;
}

.panel-title{
  font-family:"Cormorant Garamond", serif;
  font-size: 1.9rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 14px;
}
.approche-panel p{
  color: rgba(27,42,73,.82);
  line-height: 1.8;
}

.panel-signature-block{
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(27,42,73,.08);
  text-align:center;
}
.panel-signature{
  font-family:"Cormorant Garamond", serif;
  font-style: italic;
  color: rgba(27,42,73,.62);
  font-size: 1.2rem;
  line-height: 1.6;
}
/* methode blocks */
.methode-blocks{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.methode-block{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(27,42,73,.08);
  border-radius: var(--r-md);
  padding: 24px 22px;
  box-shadow: 0 10px 26px rgba(27,42,73,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.methode-block:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197,168,128,.40);
}
.methode-block-header{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.methode-block-num{
  width: 34px; height: 34px;
  border-radius: 999px;
  background: rgba(197,168,128,.18);
  color: var(--navy);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 600;
  font-size: .85rem;
}
.methode-block-title{
  font-family:"Cormorant Garamond", serif;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.1;
}
.methode-block-text{
  color: rgba(27,42,73,.68);
  font-size: .98rem;
  line-height: 1.75;
  margin-top: 10px;
  max-width: 760px;
}

.methode-block-text-light {
  font-size: .9rem;
}

.methode-block-text-bis {
  margin: 2em auto 1em;
  text-align: center;
  max-width: 770px;
}
/* =========================
   PROGRAMMES (pricing)
========================= */
.programmes-title{
  font-family:"Playfair Display", serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
}
.programmes-subtitle{
  color: var(--muted);
  font-family:"Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.25rem;
  margin-bottom: 34px;
}

.programmes-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 10px;
  align-items: stretch;
}

.programmes-grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 10px;
  align-items: stretch;
}

.programme-card{
  display:grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  text-align:left;
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(27,42,73,.08);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  min-height: 450px;
  box-shadow: 0 16px 44px rgba(27,42,73,.08);
  transition: all .25s ease;
  height: 100%;
  position: relative;
  --programme-scale: 1;
  transform: translateY(0) scale(var(--programme-scale));
  transform-origin: center;
}

.programmes-grid-3 .programme-card {
  min-height: 280px;
}

.programme-card-litle {
  height: 48%;
  min-height: 175px;
}

.programme-card:hover{
  transform: translateY(-6px) scale(var(--programme-scale));
  box-shadow: 0 20px 50px rgba(27,42,73,.14);
  border-color: rgba(197,168,128,.45);
}
.programme-card--featured{
  --programme-scale: 1.05;
  border-color: var(--gold);
  box-shadow: 0 25px 60px rgba(27,42,73,.14);
  z-index: 2;
}
.programme-card--featured:hover{
  transform: translateY(-8px) scale(var(--programme-scale));
  box-shadow: 0 30px 68px rgba(27,42,73,.16);
}

.programme-badge{
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(27,42,73,.10);
}

.programme-card-header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.programme-label{
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(27,42,73,.70);
}
.programme-price{
  font-family:"Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--navy);
}
.programme-desc{
  color: rgba(27,42,73,.68);
  margin-top: 8px;
}
.programme-desc-offer {
  color: var(--gold);
  font-weight: bold;
  font-size: 0.9rem;
  text-align: center;
}
.programme-sep{
  height: 1px;
  background: rgba(27,42,73,.08);
  margin: 16px 0 14px;
}
.programme-includes{
  list-style:none;
  padding:0;
  font-size: 0.9rem;
}
.programme-includes li{
  padding-left: 26px;
  position: relative;
  margin: 10px 0;
  color: rgba(27,42,73,.74);
}
.programme-includes li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color: var(--gold);
  font-weight: 700;
}

.adoption-offer {
  text-align: center;
  font-weight: bold;
  color: var(--gold);
  opacity: 0.8;
  font-size: 0.8rem;
  border-top: 1px solid rgba(27,42,73,.08);
  padding-top: 10px;
}

.btn-programmes-cta{
  border: none;
  cursor:pointer;
  padding: 18px 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .74rem;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-programmes-cta:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%);
}
/* =========================
   CONTACT
========================= */
.contact-title{
  font-family:"Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 18px;
}
.contact-subtitle{
  font-family:"Cormorant Garamond", serif;
  font-style: italic;
  color: var(--muted);
  font-size: 1.2rem;
  margin-bottom: 36px;
}

.contact-blocks{
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  background: radial-gradient(circle at top, rgba(246,240,230,.9), rgba(232,223,208,.55));
  border: 1px solid rgba(27,42,73,.08);
  box-shadow: var(--shadow-md);
  display:flex;
  align-items: stretch;
  justify-content: space-between;
  overflow:hidden;
}
.contact-block{
  flex:1;
  padding: 28px 22px;
  text-align:center;
}
.contact-block-sep{
  width: 1px;
  background: rgba(27,42,73,.08);
}
.contact-block-icon{
  font-size: 1.6rem;
  opacity: .85;
}
.contact-block-label{
  margin-top: 10px;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(27,42,73,.62);
}
.contact-block-value{
  display:inline-block;
  margin-top: 10px;
  color: var(--navy);
  text-decoration:none;
  font-family:"Cormorant Garamond", serif;
  font-size: 1.2rem;
}
.contact-block-value:hover{ color: var(--gold-2); }

.contact-block-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .68rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-block-button:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%);
}

.contact-form-wrapper{
  display:block;
  max-width: 720px;
  margin: 26px auto 0;
  padding: 30px 24px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(27,42,73,.08);
  box-shadow: var(--shadow-md);
}

.contact-form{ text-align:left; width:100%; }
.contact-form-group{ margin-bottom: 26px; }
.contact-form-label{
  display:block;
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}
.contact-form-optional{
  font-family:"Cormorant Garamond", serif;
  font-style: italic;
  text-transform:none;
  letter-spacing: 0;
  color: rgba(27,42,73,.52);
  font-weight: 400;
}
.contact-form-input,
.contact-form-textarea{
  width:100%;
  border:none;
  border-bottom: 1px solid rgba(197,168,128,.9);
  background: transparent;
  padding: 10px 0;
  font-family:"Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--navy);
  outline:none;
}
.contact-form-input:focus,
.contact-form-textarea:focus{
  border-bottom-color: rgba(27,42,73,.9);
}
.contact-form-textarea{ resize: vertical; min-height: 120px; }

.contact-form-actions{ text-align:center; margin-top: 14px; }
.btn-contact-submit{
  border:none;
  cursor:pointer;
  padding: 16px 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .72rem;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-contact-submit:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%);
}

.contact-form-confirm{
  display:none;
  text-align:center;
  margin-top: 18px;
  padding: 16px 14px;
  border-radius: 14px;
  background: rgba(107,142,111,.12);
  color: rgba(27,42,73,.75);
  font-family:"Cormorant Garamond", serif;
  font-style: italic;
}
.contact-form-confirm.is-visible{ display:block; }

/* =========================
   ARTICLES
========================= */
.articles-carousel{
  --articles-per-view: 1;
  --articles-gap: 18px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
}

.articles-carousel-viewport{
  width: 100%;
  overflow: hidden;
}

.articles-carousel-track{
  display: flex;
  gap: var(--articles-gap);
  transition: transform .45s ease;
  will-change: transform;
}

.article-slide{
  flex: 0 0 calc((100% - (var(--articles-gap) * (var(--articles-per-view) - 1))) / var(--articles-per-view));
}

.article-card{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 260px 1fr;
  min-height: 100%;
  text-decoration: none;
  text-align: left;
  color: inherit;
  background:
    linear-gradient(140deg, rgba(255,255,255,.72), rgba(240,232,216,.86)),
    radial-gradient(circle at top left, rgba(197,168,128,.22), transparent 48%);
  border: 1px solid rgba(27,42,73,.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.article-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(197,168,128,.45);
}

.article-card-media{
  position: relative;
  height: 260px;
  background: linear-gradient(180deg, rgba(27,42,73,.06), rgba(27,42,73,.14));
}

.article-card-media::after{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27,42,73,.04), transparent 45%);
}

.article-card-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-card-body{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 42px 38px;
}

.article-card-kicker{
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(27,42,73,.06);
  color: rgba(27,42,73,.72);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
}

.article-card-title{
  margin-top: 18px;
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  line-height: 1.18;
  color: var(--navy);
  min-height: 3.7rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-text{
  margin-top: 18px;
  color: rgba(27,42,73,.72);
  font-size: .95rem;
  line-height: 1.8;
  min-height: 5.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-link{
  margin-top: auto;
  padding-top: 28px;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.article-card-link::after{
  content: "\2192";
  font-size: 1rem;
}

.articles-carousel-btn{
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border: 1px solid rgba(27,42,73,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.52);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, opacity .2s ease;
}

.articles-carousel-btn:hover:not(:disabled){
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197,168,128,.55);
}

.articles-carousel-btn:disabled{
  opacity: .45;
  cursor: default;
}

.articles-carousel-dots{
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.articles-carousel-dot{
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(27,42,73,.18);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.articles-carousel-dot.is-active{
  background: var(--gold);
  transform: scale(1.15);
  box-shadow: 0 0 0 5px rgba(197,168,128,.18);
}

.btn-hero-primary,
.btn-programmes-cta{
  transition: all .25s ease;
}

.btn-hero-primary:hover,
.btn-programmes-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(27,42,73,.15);
}

/* =========================
   FOOTER
========================= */
.site-footer{
  background: var(--navy);
  padding: 46px 22px;
}
.site-footer-inner{
  max-width: 980px;
  margin: 0 auto;
  text-align:center;
}
.site-footer-links{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}
.site-footer-link{
  color: rgba(255,255,255,.86);
  text-decoration:none;
  font-size: .92rem;
}
.site-footer-link:hover{ color: rgba(197,168,128,.95); }
.site-footer-sep{ color: rgba(255,255,255,.35); }
.site-footer-copy{
  margin-top: 14px;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  letter-spacing: .06em;
}

/* =========================
   ARTICLES LIST PAGE
========================= */
.articles-page {
  min-height: 100vh;
}

.articles-main {
  position: relative;
  z-index: 1;
  padding: 42px 22px 90px;
}

.articles-list-section,
.articles-cta {
  max-width: 1180px;
  margin: 0 auto;
}

.articles-list-section,
.articles-cta {
  border: 1px solid rgba(27,42,73,.08);
  border-radius: var(--r-lg);
  background: radial-gradient(circle at top, rgba(246,240,230,.92), rgba(232,223,208,.58));
  box-shadow: var(--shadow-md);
}

.articles-list-section {
  margin-top: 28px;
  padding: 34px;
}

.articles-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 250px));
  justify-content: start;
  gap: 16px;
}

.article-list-card {
  min-height: 100%;
}

.article-list-link {
  position: relative;
  display: block;
  min-height: 100%;
  text-decoration: none;
  color: var(--white);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(27,42,73,.18);
  border: 1px solid rgba(27,42,73,.08);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.article-list-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197,168,128,.48);
}

.article-list-media {
  aspect-ratio: 4 / 5;
  background: rgba(27,42,73,.08);
}

.article-list-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-list-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,25,43,.08) 0%, rgba(16,25,43,.28) 42%, rgba(16,25,43,.84) 100%);
  pointer-events: none;
}

.article-list-body {
  position: absolute;
  inset: auto 0 12px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 16px 12px;
}

.article-list-body h3 {
  margin-top: 0;
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1.15;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0,0,0,.28);
}

.article-list-body p {
  margin-top: 4px;
  color: rgba(255,255,255,.86);
  line-height: 1.55;
  font-size: .9rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.22);
}

.article-list-cta {
  margin-top: auto;
  padding-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.96);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
}

.article-list-cta::after {
  content: "\2192";
  font-size: 1rem;
}

.articles-cta {
  margin-top: 28px;
  padding: 42px 34px;
  text-align: center;
}

.articles-cta h2 {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 2.2rem;
  font-weight: 500;
}

.articles-cta p {
  max-width: 720px;
  margin: 16px auto 0;
  color: rgba(27,42,73,.7);
}

.articles-cta-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.articles-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(27,42,73,.18);
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.articles-cta-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(197,168,128,.55);
}

/* =========================
   ARTICLE DETAIL PAGE
========================= */
.article-page {
  min-height: 100vh;
}

.article-main {
  position: relative;
  z-index: 1;
  padding: 40px 22px 90px;
}

.article-hero {
  max-width: 920px;
  margin: 0 auto;
  padding: 56px 38px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(27, 42, 73, 0.08);
  background: radial-gradient(circle at top, rgba(246, 240, 230, 0.92), rgba(232, 223, 208, 0.58));
  box-shadow: var(--shadow-md);
  text-align: center;
}

.article-hero h1 {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 2.75rem;
  line-height: 1.2;
  font-weight: 500;
}

.article-subtitle {
  margin: 18px auto 0;
  max-width: 720px;
  color: rgba(27, 42, 73, 0.72);
  font-size: 1.06rem;
}

.article-meta {
  margin-top: 20px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(27, 42, 73, 0.56);
}

.article-cover {
  margin: 40px auto 60px;
  max-width: 580px;
}

.article-cover img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.article-layout {
  max-width: 720px;
  margin: 42px auto 0;
  padding: 0 2px;
}

.article-content {
  line-height: 1.9;
  font-size: 1.02rem;
  color: rgba(27, 42, 73, 0.84);
}

.article-content h2 {
  margin: 38px 0 14px;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--navy);
  font-weight: 500;
}

.article-content h3 {
  margin: 28px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--navy);
  font-weight: 600;
}

.article-content p,
.article-content ul,
.article-content blockquote {
  margin-top: 14px;
}

.article-content ul {
  padding-left: 22px;
}

.article-content li {
  margin: 8px 0;
}

.article-content blockquote {
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-sm);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(27, 42, 73, 0.74);
}

.tip-box {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: var(--r-md);
  border: 1px solid rgba(27, 42, 73, 0.1);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-md);
}

.tip-box-title {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(197, 168, 128, 0.16);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tip-box p {
  margin: 0;
  color: rgba(27, 42, 73, 0.82);
}

.article-cta {
  margin: 54px auto 0;
  max-width: 920px;
  padding: 40px 34px;
  border-radius: var(--r-lg);
  text-align: center;
  border: 1px solid rgba(27, 42, 73, 0.08);
  background: radial-gradient(circle at top, rgba(246, 240, 230, 0.9), rgba(232, 223, 208, 0.55));
  box-shadow: var(--shadow-md);
}

.article-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--navy);
  font-weight: 500;
}

.article-cta p {
  margin: 14px auto 0;
  max-width: 650px;
  color: rgba(27, 42, 73, 0.7);
}

.article-cta .btn-programmes-cta {
  margin-top: 24px;
  display: inline-block;
  text-decoration: none;
}

.article-local {
  font-size: 12px;
  font-weight: bold;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px){
  .nav-links{ display:none; }
  .nav-burger{ display:inline-block; }
  .hero-headline{ font-size: 2.35rem; }
  .methode-blocks{ grid-template-columns: 1fr; }
  .approche-panels{ height: auto; min-height: 0; }
  .programmes-grid{ grid-template-columns: 1fr; }
  .programme-card--featured{ --programme-scale: 1; }
  .contact-blocks{ flex-direction: column; }
  .contact-block-sep{ width:100%; height:1px; }
  .articles-list-grid{ grid-template-columns: repeat(2, minmax(0, 240px)); }
  .article-hero{ padding: 42px 24px; }
  .article-hero h1{ font-size: 2.15rem; }
  .articles-carousel{
    --articles-gap: 14px;
    gap: 12px;
  }
  .article-card-body{ padding: 34px 28px; }
}
@media (max-width: 680px){
  .articles-list-grid{ grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 520px){
  .logo{ width: 96px; }
  .logo-nicodogtips{ width: 230px; }
  .hero-headline{ font-size: 1.9rem; }
  .btn-hero-primary, .btn-hero-secondary{ width: 100%; }
  .approche-panels{ padding: 30px 18px; }
  .articles-main{ padding-top: 24px; }
  .articles-list-section,
  .articles-cta{ padding: 34px 20px; }
  .article-list-body{ padding: 16px 16px 14px; }
  .article-list-body h3{ font-size: 1.2rem; }
  .article-list-body p{ font-size: .88rem; }
  .article-main{ padding-top: 24px; }
  .article-hero h1{ font-size: 1.85rem; }
  .article-content h2{ font-size: 1.65rem; }
  .article-cta{ padding: 34px 20px; }
  .articles-carousel{
    gap: 0;
    justify-content: center;
  }
  .articles-carousel-btn{
    position: absolute;
    top: 100px;
    z-index: 2;
    width: 44px;
    height: 44px;
    background: rgba(246,240,230,.9);
  }
  .articles-carousel-btn--prev{ left: -4px; }
  .articles-carousel-btn--next{ right: -4px; }
  .article-card{ grid-template-rows: 220px 1fr; }
  .article-card-media{ height: 220px; }
  .article-card-title{ font-size: 1.42rem; }
  .article-card-text{ font-size: .92rem; line-height: 1.75; }
  .article-card-body{ padding: 28px 22px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; transition: none !important; }
  .fade-in{ opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 768px){
    .hero-problems{
        font-size: 0.72rem;
        max-width: 88%;
        line-height: 1.8;
        margin-top: 18px;
    }
}

@media (max-width: 480px){
    .hero-problems{
        font-size: 0.68rem;
        letter-spacing: 0.05em;
        line-height: 1.7;
        max-width: 92%;
    }
}

.panel-intro-card{
  margin-top: 18px;
}

.fade-in{
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp .6s ease forwards;
}

.fade-in--1{ animation-delay: .05s; }
.fade-in--2{ animation-delay: .12s; }
.fade-in--3{ animation-delay: .18s; }
.fade-in--4{ animation-delay: .24s; }

@keyframes fadeInUp{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

