/*
Theme Name:   ByLau Child
Theme URI:    https://bylau.be
Description:  Thème enfant ByLau — Les Ateliers de ByLau · Grez-Doiceau · Belgique
Author:       Lau — Les Ateliers de ByLau
Author URI:   https://bylau.be
Template:     kadence
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  bylau-child
Tags:         editorial, art-floral, bien-etre, belgique
*/

/* ═══════════════════════════════════════════
   PALETTE BYLAU · FUSION FINALE
═══════════════════════════════════════════ */
:root {
  --bylau-creme:  #F0EBE0;
  --bylau-kaki:   #4E5240;
  --bylau-bord:   #6B2040;
  --bylau-beurre: #E8D88A;
  --bylau-choc:   #4A3828;
  --bylau-lav:    #B8C4D4;
  --bylau-texte:  #2A2018;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--bylau-creme);
  color: var(--bylau-texte);
  overflow-x: hidden;
  margin: 0;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHIE
═══════════════════════════════════════════ */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 0.9;
}

h4, h5, h6, p, a, span, li {
  font-family: 'Jost', sans-serif;
}

/* Suppression styles Kadence par défaut */
.wp-site-blocks > * { margin-block-start: 0; margin-block-end: 0; }
.entry-content { max-width: 100%; padding: 0; }
.site-container { max-width: 100%; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
#main-header,
.site-header {
  background: transparent !important;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 20px 40px;
  mix-blend-mode: multiply;
  border: none !important;
  box-shadow: none !important;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}

/* Logo */
.site-branding .site-title,
.site-branding .site-title a {
  font-family: 'Jost', sans-serif !important;
  font-weight: 200 !important;
  font-size: 13px !important;
  letter-spacing: 8px !important;
  color: var(--bylau-texte) !important;
  text-decoration: none !important;
  text-transform: uppercase;
}

/* Nav links */
.primary-navigation ul li a {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bylau-texte);
  opacity: 0.6;
  text-decoration: none;
  transition: opacity 0.2s;
}
.primary-navigation ul li a:hover { opacity: 1; }
.primary-navigation ul li { list-style: none; }
.primary-navigation ul { display: flex; gap: 32px; margin: 0; padding: 0; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.bylau-hero {
  min-height: 100vh;
  padding: 0 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--bylau-creme);
}

.bylau-hero__photo {
  position: absolute;
  top: 12%; right: 0;
  width: 42%; height: 72vh;
  overflow: hidden;
  z-index: 1;
}

.bylau-hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.bylau-hero__vertical {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 8px; letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(74,56,40,0.35);
  white-space: nowrap;
  z-index: 3;
}

.bylau-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 16vw, 220px);
  font-weight: 900;
  color: var(--bylau-bord);
  line-height: 0.85;
  letter-spacing: -2px;
  position: relative;
  z-index: 2;
  margin: 0;
}

.bylau-hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

.bylau-hero__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--bylau-texte);
  max-width: 360px;
  line-height: 1.4;
}

.bylau-hero__cta {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bylau-bord);
  border-bottom: 1px solid var(--bylau-bord);
  padding-bottom: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.bylau-hero__cta:hover { opacity: 0.6; }

/* ═══════════════════════════════════════════
   TICKER
═══════════════════════════════════════════ */
.bylau-ticker {
  background: var(--bylau-bord);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.bylau-ticker__inner {
  display: inline-flex;
  animation: bylau-ticker 24s linear infinite;
}

.bylau-ticker__item {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(240,235,224,0.7);
  padding: 0 40px;
}

.bylau-ticker__dot { color: var(--bylau-beurre); }

@keyframes bylau-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   SECTIONS GÉNÉRIQUES
═══════════════════════════════════════════ */
.bylau-section { padding: 100px 40px; position: relative; }

.bylau-section--dark {
  background: var(--bylau-texte);
  color: var(--bylau-creme);
}

.bylau-section--kaki {
  background: var(--bylau-kaki);
  color: var(--bylau-creme);
}

/* ═══════════════════════════════════════════
   TROUVER VOTRE ATELIER
═══════════════════════════════════════════ */
.bylau-decouvrir {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 80vh;
  align-items: center;
}

.bylau-decouvrir__left { padding-right: 60px; }

.bylau-decouvrir__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 900;
  font-style: italic;
  color: var(--bylau-texte);
  line-height: 0.88;
  margin-bottom: 40px;
  letter-spacing: -1px;
}
.bylau-decouvrir__title span { color: var(--bylau-bord); }

.bylau-decouvrir__intro {
  font-size: 14px;
  font-weight: 300;
  color: rgba(74,56,40,0.6);
  line-height: 1.9;
  max-width: 340px;
  margin-bottom: 36px;
}

.bylau-decouvrir__link {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bylau-bord);
  border-bottom: 1px solid var(--bylau-bord);
  padding-bottom: 2px;
  text-decoration: none;
}

.bylau-decouvrir__photo {
  height: 70vh;
  overflow: hidden;
}
.bylau-decouvrir__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════
   LISTE DE SERVICES
═══════════════════════════════════════════ */
.bylau-services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.bylau-services__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  color: var(--bylau-texte);
  line-height: 0.88;
  letter-spacing: -1px;
}
.bylau-services__title em { font-style: italic; color: var(--bylau-kaki); }

.bylau-services__count {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(74,56,40,0.3);
  align-self: flex-start;
  margin-top: 10px;
}

.bylau-services__list { border-top: 0.5px solid rgba(74,56,40,0.15); }

.bylau-service-row {
  display: grid;
  grid-template-columns: 60px 1fr 1fr auto;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 0.5px solid rgba(74,56,40,0.15);
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  color: inherit;
}
.bylau-service-row:hover { background: rgba(74,56,40,0.02); }

.bylau-service-row__num {
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(74,56,40,0.25);
}

.bylau-service-row__name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--bylau-texte);
  letter-spacing: -0.5px;
  transition: color 0.2s;
}
.bylau-service-row:hover .bylau-service-row__name { color: var(--bylau-bord); }

.bylau-service-row__desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(74,56,40,0.5);
  line-height: 1.75;
}

.bylau-service-row__arrow {
  font-size: 18px;
  color: var(--bylau-bord);
  transform: rotate(-45deg);
  transition: transform 0.3s;
}
.bylau-service-row:hover .bylau-service-row__arrow { transform: rotate(0deg); }

/* ═══════════════════════════════════════════
   GRANDE PHOTO
═══════════════════════════════════════════ */
.bylau-full-photo {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  position: relative;
}
.bylau-full-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.bylau-full-photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,32,24,0.7) 0%, transparent 50%);
}
.bylau-full-photo__text {
  position: absolute;
  bottom: 40px; left: 40px; right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.bylau-full-photo__quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  font-style: italic;
  color: var(--bylau-creme);
  line-height: 1.2;
  max-width: 500px;
}
.bylau-full-photo__quote span { color: var(--bylau-beurre); }
.bylau-full-photo__credit {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(240,235,224,0.35);
  text-align: right;
}

/* ═══════════════════════════════════════════
   DÉMARCHE
═══════════════════════════════════════════ */
.bylau-demarche {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  align-items: stretch;
}

.bylau-demarche__left {
  background: var(--bylau-kaki);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.bylau-demarche__left-deco {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(107,32,64,0.06);
  top: -100px; right: -100px;
}
.bylau-demarche__bg-text {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 300px;
  font-weight: 900;
  color: rgba(240,235,224,0.04);
  bottom: -60px; left: 30px;
  line-height: 1;
  letter-spacing: -10px;
  pointer-events: none;
}
.bylau-demarche__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--bylau-creme);
  line-height: 1;
  margin-bottom: 8px;
  position: relative; z-index: 1;
}
.bylau-demarche__title em { font-style: italic; color: var(--bylau-beurre); }

.bylau-demarche__text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(240,235,224,0.55);
  line-height: 1.9;
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.bylau-demarche__sig { position: relative; z-index: 1; }
.bylau-demarche__sig-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--bylau-creme);
  margin-bottom: 4px;
}
.bylau-demarche__sig-role {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bylau-beurre);
}

.bylau-demarche__right {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  background: var(--bylau-creme);
}

.bylau-parcours { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.bylau-parcours__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 0.5px solid rgba(74,56,40,0.1);
}
.bylau-parcours__item:last-child { border-bottom: none; }
.bylau-parcours__year {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  color: rgba(74,56,40,0.12);
  line-height: 1;
}
.bylau-parcours__title { font-size: 14px; font-weight: 400; color: var(--bylau-texte); margin-bottom: 4px; }
.bylau-parcours__desc  { font-size: 12px; font-weight: 300; color: rgba(74,56,40,0.5); line-height: 1.75; }

/* ═══════════════════════════════════════════
   PROGRAMME
═══════════════════════════════════════════ */
.bylau-programme {
  background: var(--bylau-texte);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.bylau-programme__deco {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 300px;
  font-weight: 900;
  color: rgba(240,235,224,0.03);
  top: -60px; right: -40px;
  line-height: 1;
  pointer-events: none;
}
.bylau-programme__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.bylau-programme__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  color: var(--bylau-creme);
  line-height: 0.88;
}
.bylau-programme__title em { font-style: italic; color: var(--bylau-beurre); }
.bylau-programme__sub {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(240,235,224,0.25);
  text-align: right;
}

.bylau-programme__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(240,235,224,0.08);
}
.bylau-programme__month {
  background: var(--bylau-texte);
  padding: 28px 24px;
  transition: background 0.3s;
}
.bylau-programme__month:hover { background: rgba(74,56,40,0.5); }
.bylau-programme__month-name {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  color: var(--bylau-creme);
  line-height: 1;
  margin-bottom: 20px;
}
.bylau-programme__atelier {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.bylau-programme__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.bylau-programme__atelier-name {
  font-size: 11px;
  font-weight: 300;
  color: rgba(240,235,224,0.6);
  line-height: 1.65;
}
.bylau-programme__dates {
  font-size: 10px;
  color: rgba(240,235,224,0.3);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   CTA
═══════════════════════════════════════════ */
.bylau-cta {
  padding: 120px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bylau-creme);
  position: relative;
  overflow: hidden;
}
.bylau-cta__bg {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 280px;
  font-weight: 900;
  color: rgba(74,56,40,0.04);
  bottom: -60px; left: -30px;
  line-height: 1;
  pointer-events: none;
}
.bylau-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 10vw, 140px);
  font-weight: 900;
  color: var(--bylau-texte);
  line-height: 0.88;
  letter-spacing: -2px;
  margin-bottom: 40px;
  position: relative; z-index: 1;
}
.bylau-cta__title em { font-style: italic; color: var(--bylau-bord); display: block; }
.bylau-cta__sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(74,56,40,0.55);
  line-height: 1.88;
  max-width: 480px;
  margin-bottom: 48px;
  position: relative; z-index: 1;
}
.bylau-cta__btn {
  display: inline-block;
  background: var(--bylau-bord);
  color: var(--bylau-creme);
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 16px 40px;
  text-decoration: none;
  transition: background 0.2s;
  position: relative; z-index: 1;
}
.bylau-cta__btn:hover { background: var(--bylau-choc); color: var(--bylau-creme); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer, #colophon {
  background: var(--bylau-kaki) !important;
  padding: 48px 40px 24px !important;
  color: var(--bylau-creme);
}

.bylau-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.bylau-footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--bylau-creme);
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.bylau-footer__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--bylau-beurre);
  margin-bottom: 20px;
}
.bylau-footer__info {
  font-size: 11px;
  font-weight: 300;
  color: rgba(240,235,224,0.35);
  line-height: 2;
}
.bylau-footer__nav-title {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bylau-beurre);
  opacity: 0.6;
  margin-bottom: 16px;
}
.bylau-footer__nav-links { list-style: none; padding: 0; margin: 0; }
.bylau-footer__nav-links li { margin-bottom: 10px; }
.bylau-footer__nav-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(240,235,224,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.bylau-footer__nav-links a:hover { color: var(--bylau-creme); }
.bylau-footer__bottom {
  border-top: 0.5px solid rgba(240,235,224,0.07);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bylau-footer__copy {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240,235,224,0.18);
}

/* ═══════════════════════════════════════════
   RESPONSIVE MOBILE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .bylau-section { padding: 60px 20px; }
  #main-header, .site-header { padding: 16px 20px; }

  .bylau-hero { padding: 0 20px 40px; }
  .bylau-hero__photo { width: 55%; height: 50vh; }
  .bylau-hero__title { font-size: clamp(60px, 18vw, 100px); }

  .bylau-decouvrir { grid-template-columns: 1fr; }
  .bylau-decouvrir__left { padding-right: 0; padding-bottom: 40px; }
  .bylau-decouvrir__photo { height: 50vh; }

  .bylau-services__header { flex-direction: column; gap: 8px; }
  .bylau-service-row { grid-template-columns: 40px 1fr; gap: 16px; }
  .bylau-service-row__desc,
  .bylau-service-row__arrow { display: none; }

  .bylau-demarche { grid-template-columns: 1fr; }
  .bylau-demarche__left,
  .bylau-demarche__right { padding: 48px 24px; }

  .bylau-programme__grid { grid-template-columns: 1fr 1fr; }

  .bylau-footer__grid { grid-template-columns: 1fr; gap: 28px; }
}
