/* ── Pino Couleurs · Service Page Shared CSS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:      #FFFFFF;
  --off:        #F5F5F3;
  --anth:       #1A1A1A;
  --anth2:      #2E2E2E;
  --anth3:      #555555;
  --gold:       #C4973A;
  --gold-light: #DFBA72;
  --line:       #E2E2E0;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--anth);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Logo ── */
.logo-svg text {
  font-family: 'Chakra Petch', monospace;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2.5px;
}
.logo-dark  text { fill: #1A1A1A; }
.logo-light text { fill: #FFFFFF; }

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--anth3);
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.lang-toggle { display: flex; gap: 3px; }
.lang-btn {
  background: none;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 4px 10px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  cursor: pointer;
  color: var(--anth3);
  transition: all .2s;
}
.lang-btn.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ── Hero Banner ── */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 72px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,.88) 0%, rgba(20,20,20,.3) 60%, transparent 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 5vw;
  width: 100%;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,.25); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  max-width: 720px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.2rem;
  padding: .4rem 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── Content Sections ── */
.section { padding: 5rem 5vw; }
.section-alt { background: var(--off); }
.section-narrow { max-width: 820px; margin: 0 auto; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

h2.block-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.4rem;
  letter-spacing: -.02em;
}
h2.block-title em { font-style: italic; color: var(--gold); }

.lead-text {
  font-size: 1.05rem;
  color: var(--anth3);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 2rem;
}

/* ── Two column ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.two-col img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

/* ── Process Steps ── */
.steps { display: flex; flex-direction: column; gap: 0; margin: 2.5rem 0; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--line);
  line-height: 1;
  padding-top: .2rem;
}
.step h4 {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .4rem;
  color: var(--anth);
}
.step p {
  font-size: .88rem;
  color: var(--anth3);
  line-height: 1.7;
}

/* ── Info Cards ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5px;
  background: var(--line);
  margin: 2.5rem 0;
}
.info-card {
  background: var(--white);
  padding: 2rem;
}
.info-card-icon { font-size: 1.6rem; margin-bottom: .8rem; display: block; }
.info-card h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.info-card p { font-size: .85rem; color: var(--anth3); line-height: 1.65; }

/* ── Material Table ── */
.material-list { margin: 1.5rem 0; }
.material-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .88rem;
}
.material-row:last-child { border-bottom: none; }
.material-name { font-weight: 600; color: var(--anth); }
.material-desc { color: var(--anth3); line-height: 1.6; }

/* ── FAQ ── */
.faq-list { margin-top: 2rem; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 600;
  color: var(--anth);
  transition: color .2s;
}
.faq-btn:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--anth3);
  transition: all .25s;
}
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 1.2rem;
  font-size: .88rem;
  color: var(--anth3);
  line-height: 1.75;
  max-width: 680px;
}
.faq-item.open .faq-answer { display: block; }

/* ── Gallery strip ── */
.img-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3px;
  margin-top: 3rem;
}
.img-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform .4s;
}
.img-strip img:hover { transform: scale(1.02); }

/* ── CTA Block ── */
.cta-block {
  background: var(--anth);
  padding: 5rem 5vw;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.cta-block h2 em { font-style: italic; color: var(--gold-light); }
.cta-block p {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  margin-top: .6rem;
  max-width: 480px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  background: var(--gold);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.btn-primary:hover { background: #b08630; }

/* ── Footer ── */
footer {
  background: var(--anth);
  padding: 2rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid #2a2a2a;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-copy a { color: rgba(255,255,255,.3); text-decoration: none; }
.footer-copy a:hover { color: var(--gold); }

/* ── Fullscreen Slider ── */
.fs-slider {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #000;
  flex-direction: column;
}
.fs-slider.open { display: flex; }
.fs-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: linear-gradient(to bottom, rgba(0,0,0,.7), transparent);
}
.fs-counter { font-size: .8rem; font-weight: 600; letter-spacing: .12em; color: rgba(255,255,255,.6); }
.fs-close {
  background: none;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.7);
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.fs-close:hover { background: rgba(255,255,255,.15); color: #fff; }
.fs-track-wrap { flex: 1; position: relative; overflow: hidden; }
.fs-track { display: flex; height: 100%; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.fs-slide {
  flex-shrink: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fs-slide img { max-width: 96vw; max-height: 88vh; object-fit: contain; user-select: none; }
.fs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.fs-arrow:hover { background: rgba(255,255,255,.22); color: #fff; }
.fs-prev { left: 1.5rem; }
.fs-next { right: 1.5rem; }
.fs-thumbs {
  display: flex;
  gap: 6px;
  padding: .8rem 1.5rem;
  background: rgba(0,0,0,.8);
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
}
.fs-thumbs::-webkit-scrollbar { display: none; }
.fs-thumb {
  flex-shrink: 0;
  width: 64px; height: 42px;
  object-fit: cover;
  cursor: pointer;
  opacity: .4;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: all .2s;
}
.fs-thumb.active { opacity: 1; border-color: var(--gold); }
.fs-thumb:hover { opacity: .75; }

/* ── Lang ── */
[data-lang] { display: none; }
.lang-de [data-lang="de"], .lang-fr [data-lang="fr"] { display: block; }
span[data-lang] { display: none; }
.lang-de span[data-lang="de"], .lang-fr span[data-lang="fr"] { display: inline; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col img { height: 280px; }
  .cta-block { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
