*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #F5F0EB;
  --cream-dark: #EDE5DB;
  --rose:       #B8826A;
  --rose-light: #D4A090;
  --rose-pale:  #F0E0D8;
  --text:       #3C3530;
  --text-mid:   #6B5F59;
  --text-light: #9A8E88;
  --white:      #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  line-height: 1.75;
}

/* ── DECORATIVE ELEMENTS ── */
.leaf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--rose-light);
  font-size: 1rem;
  letter-spacing: 0.3em;
}
.leaf-divider::before,
.leaf-divider::after {
  content: '';
  flex: 0 0 60px;
  height: 1px;
  background: var(--rose-light);
  opacity: 0.6;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.6rem;
  font-weight: 400;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 3rem;
  background: rgba(245, 240, 235, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184,130,106,0.15);
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}

.nav-links a:hover { color: var(--rose); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40vh 2rem 5rem;
  background: linear-gradient(175deg, var(--cream) 55%, var(--rose-pale) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('michal-logo.png') center top / auto 38% no-repeat;
  opacity: 0.45;
  pointer-events: none;
}

.hero-botanical {
  position: absolute;
  top: 80px; right: -20px;
  width: 260px;
  opacity: 0.18;
  pointer-events: none;
}

.hero-botanical-left {
  position: absolute;
  bottom: 60px; left: -20px;
  width: 200px;
  opacity: 0.12;
  pointer-events: none;
  transform: scaleX(-1) rotate(20deg);
}

.hero-logo {
  width: 220px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 440px;
  margin: 0 auto 2.5rem;
  letter-spacing: 0.04em;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.8rem;
  background: var(--rose);
  color: var(--white);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--text);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.8rem;
  background: transparent;
  color: var(--rose);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid var(--rose);
  cursor: pointer;
  transition: all 0.25s;
}

.btn-outline:hover {
  background: var(--rose);
  color: var(--white);
}

.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(--text-light);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--rose-light), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ── ABOUT ── */
.about {
  padding: 8rem 2rem;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 50%;
  overflow: hidden;
}

.about-image-placeholder {
  aspect-ratio: 3/4;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 80px; height: 80px;
  border-top: 1px solid var(--rose-light);
  border-left: 1px solid var(--rose-light);
  pointer-events: none;
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 80px; height: 80px;
  border-bottom: 1px solid var(--rose-light);
  border-right: 1px solid var(--rose-light);
  pointer-events: none;
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.about-text p {
  color: var(--text-mid);
  font-size: 0.92rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--cream-dark);
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  letter-spacing: 0.04em;
}

.credential::before {
  content: '✦';
  color: var(--rose-light);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ── SERVICES ── */
.services {
  background: var(--text);
  color: var(--cream);
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rose-light), transparent);
}

.services .section-label { color: var(--rose-light); }

.services h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.services-subtitle {
  color: rgba(245,240,235,0.5);
  font-size: 0.88rem;
  margin-bottom: 4rem;
  letter-spacing: 0.05em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(184,130,106,0.15);
}

.service-card {
  background: var(--text);
  padding: 2.8rem 2.2rem;
  text-align: start;
  transition: background 0.3s;
  position: relative;
}

.service-card:hover { background: #2E2520; }

.service-icon {
  width: 36px; height: 36px;
  margin-bottom: 1.2rem;
  opacity: 0.7;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.service-card p {
  font-size: 0.82rem;
  color: rgba(245,240,235,0.5);
  line-height: 1.75;
}

.service-rose-line {
  width: 24px; height: 1px;
  background: var(--rose-light);
  margin-bottom: 1.2rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 8rem 2rem;
  background: var(--cream);
  text-align: center;
  position: relative;
}

.testimonials h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 3rem;
}

.testimonials-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-track { flex: 1; }

.testimonial-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  background: var(--rose-pale);
  padding: 3rem 3.5rem 2.5rem;
  border-radius: 6px;
}

.testimonial-slide.active { display: flex; }

.test-tag {
  display: inline-block;
  background: var(--white);
  color: var(--text-mid);
  font-size: 0.78rem;
  padding: 0.35rem 1.4rem;
  border-radius: 20px;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  max-width: 580px;
}

.testimonial-name {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--rose);
  text-transform: uppercase;
  font-weight: 400;
}

.slider-arrow {
  background: none;
  border: 1px solid var(--rose-light);
  color: var(--text-mid);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.slider-arrow:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose-light);
  opacity: 0.35;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  padding: 0;
}

.slider-dot.active {
  opacity: 1;
  transform: scale(1.3);
  background: var(--rose);
}

/* ── CONTACT ── */
.contact {
  background: var(--cream-dark);
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-botanical {
  position: absolute;
  bottom: -20px; right: -30px;
  width: 220px;
  opacity: 0.1;
  pointer-events: none;
  transform: rotate(-15deg);
}

.contact h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.contact > p {
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.form-wrap {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-wrap input,
.form-wrap textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--white);
  border: 1px solid rgba(184,130,106,0.2);
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  letter-spacing: 0.03em;
}

.form-wrap input::placeholder,
.form-wrap textarea::placeholder { color: var(--text-light); }

.form-wrap input:focus,
.form-wrap textarea:focus { border-color: var(--rose); }

.form-wrap textarea { height: 110px; resize: none; }

.form-wrap .btn-primary { width: 100%; font-size: 0.78rem; }

/* ── FOOTER ── */
footer {
  background: var(--text);
  color: rgba(245,240,235,0.4);
  padding: 3rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo img {
  height: 44px;
  width: auto;
  opacity: 0.85;
}

.footer-social {
  display: flex;
  gap: 1.8rem;
}

.footer-social a {
  color: rgba(245,240,235,0.4);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
  font-weight: 400;
}

.footer-social a:hover { color: var(--rose-light); }

footer p { font-size: 0.72rem; letter-spacing: 0.05em; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .hero-botanical, .hero-botanical-left { display: none; }
  .about { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 200;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(0,0,0,0.28);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ── LANG TOGGLE ── */
.lang-toggle {
  background: none;
  border: 1px solid var(--rose-light);
  color: var(--text-mid);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 400;
}
.lang-toggle:hover { border-color: var(--rose); color: var(--rose); }

/* ── RTL / HEBREW OVERRIDES ── */
[lang="he"] body { font-family: 'Heebo', sans-serif; }
[lang="he"] h1, [lang="he"] h2, [lang="he"] h3 {
  font-family: 'Heebo', sans-serif;
  font-weight: 300;
}
[lang="he"] .hero h1 em { font-style: normal; }
[lang="he"] .section-label,
[lang="he"] .nav-links a,
[lang="he"] .btn-primary,
[lang="he"] .btn-outline,
[lang="he"] .lang-toggle,
[lang="he"] .hero-scroll,
[lang="he"] .credential,
[lang="he"] .footer-social a,
[lang="he"] footer p { letter-spacing: 0; text-transform: none; }

[lang="he"] .form-wrap input,
[lang="he"] .form-wrap textarea {
  direction: rtl;
  text-align: right;
}
