/*
Theme Name: Kizen Hypnose
Theme URI: https://kizen.ch
Author: Kizen
Author URI: https://kizen.ch
Description: Thème WordPress sur mesure pour Kizen, hypnothérapeute à Zürich. Ambiance naturelle, organique et apaisante.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kizen-hypnose
Tags: one-page, custom-colors, custom-menu, featured-images, full-width-template, therapist, hypnosis
*/

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --moss: #3B5C2E;
  --moss-light: #5A7A4A;
  --sage: #8FAF7A;
  --sage-pale: #C8D9B8;
  --cream: #F4EFE4;
  --linen: #EAE3D2;
  --bark: #7C5C3A;
  --sand: #C4A97A;
  --charcoal: #2C2C28;
  --warm-gray: #6B6660;
  --white: #FDFAF5;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

/* ── NAV ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 5vw;
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(143,175,122,0.2);
}

.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--moss);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.main-navigation ul {
  display: flex; gap: 2rem; list-style: none;
}

.main-navigation a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--warm-gray);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.main-navigation a:hover { color: var(--moss); }

.nav-cta {
  background: var(--moss) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 40px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--moss-light) !important; }

/* ── SECTIONS ── */
section { padding: 6rem 5vw; }

.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bark);
  font-weight: 500;
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}

.section-title em { font-style: italic; color: var(--moss); }

.divider {
  width: 48px; height: 2px;
  background: linear-gradient(to right, var(--sage), var(--sand));
  border-radius: 4px;
  margin-bottom: 2rem;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 5vw 4rem;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg-circle { position: absolute; border-radius: 50%; pointer-events: none; }
.hbc1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(90,122,74,0.12) 0%, transparent 70%); top: -100px; right: -100px; }
.hbc2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(196,169,122,0.15) 0%, transparent 70%); bottom: -50px; left: 10%; }

.hero-leaf { position: absolute; right: 8vw; top: 50%; transform: translateY(-50%); opacity: 0.08; pointer-events: none; }

.hero-content { max-width: 640px; position: relative; z-index: 2; }

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bark);
  border: 1px solid var(--sand);
  padding: 0.3rem 0.9rem;
  border-radius: 40px;
  margin-bottom: 1.8rem;
  font-weight: 500;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.hero-title em { font-style: italic; color: var(--moss); }

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--moss);
  line-height: 1.5;
  max-width: 480px;
  margin-bottom: 1.2rem;
  font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.btn-primary {
  background: var(--moss);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--moss-light); transform: translateY(-1px); }

.btn-ghost {
  color: var(--moss);
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--sage);
  transition: all 0.2s;
  display: inline-block;
}
.btn-ghost:hover { background: var(--sage-pale); }

.hero-body {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--warm-gray); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
}

.scroll-line {
  width: 1px; height: 40px; background: var(--sage);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* ── ABOUT ── */
#about {
  background: var(--linen);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrapper {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
  overflow: hidden;
}

.about-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.about-badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--bark);
  color: var(--cream);
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.about-badge span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 400;
  margin-top: 0.3rem;
}

.about-text p {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.about-values { display: flex; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }

.about-value { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--moss); font-weight: 500; }

.value-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }

/* ── SERVICES ── */
#services { background: var(--white); }

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(143,175,122,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--sage), var(--sand));
}

.service-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(59,92,46,0.1); }

.service-icon {
  width: 44px; height: 44px;
  background: var(--sage-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}

.service-icon svg { width: 22px; height: 22px; }

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.service-desc { font-size: 0.88rem; color: var(--warm-gray); line-height: 1.75; font-weight: 300; }

.service-price { margin-top: 1.2rem; display: flex; justify-content: space-between; align-items: center; }

.price-tag { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--moss); }

.price-duration {
  font-size: 0.78rem; color: var(--warm-gray);
  background: var(--linen); padding: 0.25rem 0.7rem;
  border-radius: 40px; font-weight: 400;
}

/* ── CABINET GALLERY ── */
#cabinet { background: var(--linen); }

.cabinet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.cabinet-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.cabinet-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.cabinet-img img:hover { transform: scale(1.03); }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--moss); color: var(--white); position: relative; overflow: hidden; }

.testi-bg {
  position: absolute; pointer-events: none;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  top: -100px; right: -100px; border-radius: 50%;
}

#testimonials .section-title { color: var(--cream); }
#testimonials .section-tag { color: var(--sage-pale); }
#testimonials .divider { background: linear-gradient(to right, rgba(255,255,255,0.3), rgba(196,169,122,0.4)); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testi-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem;
}

.testi-quote { font-family: 'Cormorant Garamond', serif; font-size: 4rem; line-height: 1; color: var(--sage); margin-bottom: 0.5rem; opacity: 0.5; font-style: italic; }

.testi-text { font-size: 0.95rem; line-height: 1.8; color: rgba(244,239,228,0.85); font-weight: 300; margin-bottom: 1.5rem; }

.testi-author { display: flex; align-items: center; gap: 0.8rem; }

.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bark);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: var(--cream); font-weight: 600; flex-shrink: 0;
}

.testi-name { font-size: 0.88rem; font-weight: 500; color: var(--cream); }
.testi-role { font-size: 0.78rem; color: var(--sage-pale); font-weight: 300; }
.stars { color: var(--sand); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.5rem; }

/* ── FAQ ── */
#faq { background: var(--linen); }

.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }

.faq-item { border-bottom: 1px solid rgba(143,175,122,0.25); padding: 1.3rem 0; cursor: pointer; }

.faq-question { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }

.faq-q-text { font-size: 0.95rem; font-weight: 500; color: var(--charcoal); line-height: 1.5; }

.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  color: var(--moss); font-size: 1.1rem; font-weight: 300; line-height: 1;
}

.faq-item.open .faq-toggle { background: var(--moss); color: var(--white); transform: rotate(45deg); }

.faq-answer {
  font-size: 0.88rem; color: var(--warm-gray); line-height: 1.8;
  font-weight: 300; max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; padding-top: 0.8rem; }

/* ── CONTACT ── */
#contact { background: var(--white); }

.contact-top { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; margin-bottom: 3rem; }

.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.8rem; }

.contact-icon {
  width: 40px; height: 40px; background: var(--sage-pale);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.contact-icon svg { width: 18px; height: 18px; }

.contact-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--warm-gray); margin-bottom: 0.2rem; font-weight: 400; }

.contact-value { font-size: 0.92rem; color: var(--charcoal); font-weight: 500; }

.contact-form {
  background: var(--cream); padding: 2.5rem;
  border-radius: var(--radius); border: 1px solid rgba(143,175,122,0.2);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }

.form-group label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--warm-gray); font-weight: 500; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(143,175,122,0.3);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); }

.form-submit {
  width: 100%; background: var(--moss); color: var(--white);
  border: none; padding: 0.95rem; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.03em; margin-top: 0.5rem;
}

.form-submit:hover { background: var(--moss-light); transform: translateY(-1px); }

/* ── MAP ── */
.map-wrapper { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(143,175,122,0.2); height: 340px; }

.map-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }

.map-label { font-size: 0.78rem; color: var(--warm-gray); margin-top: 0.6rem; text-align: center; font-weight: 300; }

.map-label a { color: var(--moss); font-weight: 500; }

/* ── FOOTER ── */
.site-footer {
  background: var(--charcoal); color: var(--cream);
  padding: 3rem 5vw;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}

.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--sage-pale); }

.footer-links { display: flex; gap: 2rem; list-style: none; }

.footer-links a { font-size: 0.8rem; color: rgba(200,217,184,0.6); text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s; }

.footer-links a:hover { color: var(--sage-pale); }

.footer-copy { font-size: 0.75rem; color: rgba(200,217,184,0.4); }

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  #about, .services-intro, .faq-layout, .contact-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { order: -1; max-width: 300px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .main-navigation { display: none; }
  .site-footer { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .cabinet-grid { grid-template-columns: 1fr; }
}
