/* ===== Design tokens ===== */
:root {
  --bg: #faf6f2;
  --bg-alt: #f2e8e0;
  --cream: #f4ece4;
  --ink: #2c2420;
  --muted: #8a7d73;
  --line: #e4d8cd;
  --accent: #bd8069;      /* rose gold */
  --accent-deep: #a2624b;
  --gold: #c9a27a;
  --white: #ffffff;
  --shadow: 0 20px 50px -20px rgba(80, 55, 40, 0.35);
  --radius: 18px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", -apple-system, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.btn--primary {
  background: var(--ink);
  color: var(--cream);
}
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--nav { padding: 11px 24px; background: var(--ink); color: var(--cream); }
.btn--nav:hover { background: var(--accent-deep); }
.btn--block { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: default; transform: none; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 20px 0;
  background: rgba(250, 246, 242, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav.scrolled {
  padding: 12px 0;
  box-shadow: 0 6px 24px -12px rgba(80, 55, 40, 0.3);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
}
.nav__logo img {
  height: 48px;
  width: auto;
  transition: height 0.4s ease;
}
.nav.scrolled .nav__logo img { height: 40px; }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav__burger span { width: 26px; height: 2px; background: var(--ink); transition: 0.3s; }

/* Language switch + nav right group */
.nav__right { display: flex; align-items: center; gap: 18px; }
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 100px;
  overflow: hidden;
  background: var(--white);
}
.lang-switch button {
  border: none;
  background: transparent;
  padding: 7px 12px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.lang-switch button.active {
  background: var(--ink);
  color: var(--cream);
}
.lang-switch button:not(.active):hover { color: var(--ink); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 22%, rgba(217, 181, 150, 0.28), transparent 42%),
    radial-gradient(circle at 10% 90%, rgba(189, 128, 105, 0.14), transparent 50%),
    linear-gradient(160deg, #fffdfb 0%, #fbf4ee 55%, #f6ece3 100%);
}
.hero__bg::after {
  content: "";
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 46vw;
  height: 46vw;
  max-width: 620px;
  max-height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(255,255,255,0.9), rgba(224, 197, 172, 0.55));
  opacity: 0.55;
  filter: blur(6px);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 28px 60px;
  width: 100%;
}
.hero__logo {
  height: 160px;
  width: auto;
  margin-bottom: 6px;
  margin-left: -6px;
  filter: drop-shadow(0 16px 30px rgba(140, 95, 65, 0.22));
}
.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
  max-width: 14ch;
  color: var(--ink);
}
.hero__title em { font-style: italic; color: var(--accent-deep); }
.hero__text {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 44ch;
  margin-bottom: 38px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__meta {
  margin-top: 44px;
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ===== Marquee ===== */
.marquee {
  background: linear-gradient(90deg, #bd8069, #d9b596, #bd8069);
  color: #2a1d16;
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 26px;
  animation: marquee 26s linear infinite;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: 0.02em;
}
.marquee__track span:nth-child(even) { opacity: 0.55; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ===== Section head ===== */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-head__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
}

/* ===== Services ===== */
.services { max-width: 1200px; margin: 0 auto; padding: 110px 28px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 34px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.service-card p { color: var(--muted); margin-bottom: 22px; }
.service-card ul { list-style: none; border-top: 1px solid var(--line); padding-top: 18px; }
.service-card li {
  padding: 7px 0;
  color: var(--ink);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card li::before { content: "—"; color: var(--accent); }

/* ===== About ===== */
.about {
  background: linear-gradient(180deg, var(--bg), #f0e4d9);
  padding: 110px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 0;
}
.about__media { position: relative; }
.about__photo {
  aspect-ratio: 4 / 5;
  border-radius: 200px 200px 24px 24px;
  background-image:
    url("profile.jpg"),
    linear-gradient(160deg, #d9b596, #a97a5c);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #cdaa8b;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.about__content p { color: var(--muted); margin-bottom: 18px; font-size: 1.05rem; }
.about__content .section-head__eyebrow,
.about__content .section-head__title { text-align: left; }
.about__content .section-head__title { margin-bottom: 24px; }
.about__stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.about__stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--ink);
}
.about__stats span { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; }

/* ===== Gallery ===== */
.gallery { max-width: 1200px; margin: 0 auto; padding: 110px 28px; }
.gallery__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.gallery__item {
  flex: 0 1 calc((100% - 36px) / 3);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}
.gallery__item:nth-child(1) { background: linear-gradient(135deg,#c9a27a,#8a6247); }
.gallery__item:nth-child(2) { background-image: url("works/work-1.jpg"), linear-gradient(135deg,#d9b596,#b6876a); }
.gallery__item:nth-child(3) { background-image: url("works/work-2.jpg"), linear-gradient(135deg,#e2c4a8,#a97a5c); }
.gallery__item:nth-child(4) { background-image: url("works/work-3.jpg"), linear-gradient(135deg,#bd9270,#7d5539); }
.gallery__item:nth-child(5) { background-image: url("works/work-4.jpg"), linear-gradient(135deg,#e7d0ba,#c09a76); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.gallery__item--video::before { z-index: 2; }
.gallery__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,36,32,0.4), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery__item:hover::before { opacity: 1; }
.gallery__item:hover { transform: scale(0.99); }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(28, 22, 18, 0.9);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__content {
  max-width: min(92vw, 700px);
  max-height: 88vh;
  display: flex;
  transform: scale(0.96);
  transition: transform 0.3s ease;
}
.lightbox.open .lightbox__content { transform: scale(1); }
.lightbox__content img,
.lightbox__content video {
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.6);
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 26px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.28); }
[dir="rtl"] .lightbox__close { right: auto; left: 26px; }

/* ===== Prices ===== */
.prices {
  background: var(--ink);
  color: var(--cream);
  padding: 110px 28px;
}
.prices .section-head__title { color: var(--cream); }
.prices__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: transform 0.4s ease, background 0.4s ease;
}
.price-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.07); }
.price-card--featured {
  background: linear-gradient(160deg, var(--accent), var(--accent-deep));
  border-color: transparent;
}
.price-card__tag {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 600;
}
.price-card h3 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.price-list { list-style: none; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
  font-size: 0.98rem;
}
.price-list li:last-child { border-bottom: none; }
.price-list em {
  font-family: var(--serif);
  font-style: normal;
  font-size: 1.25rem;
  font-weight: 600;
}
.prices__note {
  text-align: center;
  margin-top: 34px;
  font-size: 0.85rem;
  color: rgba(244,236,228,0.6);
}

/* ===== Contact ===== */
.contact { max-width: 1200px; margin: 0 auto; padding: 110px 28px; }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact__text .section-head__eyebrow,
.contact__text .section-head__title { text-align: left; }
.contact__text .section-head__title { margin-bottom: 20px; }
.contact__text > p { color: var(--muted); margin-bottom: 30px; max-width: 42ch; }
.contact__info { list-style: none; }
.contact__info li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.contact__info a { color: var(--accent-deep); border-bottom: 1px solid transparent; }
.contact__info a:hover { border-color: var(--accent-deep); }
/* WhatsApp CTA in contact section */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 13px 26px;
  border-radius: 100px;
  background: #25d366;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px -10px rgba(37, 211, 102, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -10px rgba(37, 211, 102, 0.8);
}
.btn-whatsapp svg { flex-shrink: 0; }

/* Floating WhatsApp button */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 26px -6px rgba(37, 211, 102, 0.75);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: waPulse 2.6s ease-out infinite;
}
.whatsapp-fab:hover { transform: scale(1.08); }
[dir="rtl"] .whatsapp-fab { right: auto; left: 24px; }
@keyframes waPulse {
  0% { box-shadow: 0 10px 26px -6px rgba(37, 211, 102, 0.75), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 10px 26px -6px rgba(37, 211, 102, 0.75), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 26px -6px rgba(37, 211, 102, 0.75), 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab { animation: none; }
}
@media (max-width: 680px) {
  .whatsapp-fab { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  [dir="rtl"] .whatsapp-fab { left: 16px; }
}
.contact__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(182,135,106,0.15);
}
.field textarea { resize: vertical; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-status {
  margin-top: 14px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--accent-deep);
  min-height: 20px;
}

/* ===== Footer ===== */
.footer {
  background: #201a16;
  color: var(--cream);
  padding: 54px 28px;
  text-align: center;
}
.footer__inner { max-width: 1200px; margin: 0 auto; }
.footer__logo { display: inline-flex; }
.footer__logo img {
  height: 130px;
  width: auto;
}
.footer p { color: rgba(244,236,228,0.65); margin-top: 14px; font-size: 0.9rem; letter-spacing: 0.04em; }
.footer__copy { margin-top: 20px !important; font-size: 0.8rem !important; opacity: 0.5; }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .services__grid,
  .prices__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .about,
  .contact__inner { grid-template-columns: 1fr; }
  .about__photo { max-width: 380px; margin: 0 auto; }
  .gallery__item { flex-basis: calc((100% - 18px) / 2); }
}

@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__logo { margin-inline-end: auto; }   /* push switch + burger to the right */
  .nav__right { gap: 10px; }
  .lang-switch button { padding: 8px 10px; font-size: 0.75rem; letter-spacing: 0.04em; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    padding: 24px 28px;
    gap: 18px;
    box-shadow: var(--shadow);
  }
  .btn--nav { display: none; }
  .hero__logo { height: 110px; }
  .hero__meta { flex-wrap: wrap; }
  .gallery__grid { max-width: 380px; margin: 0 auto; }
  .gallery__item { flex-basis: 100%; }
  .contact__form { padding: 28px; }
}

/* ===== Hebrew fonts (applied when lang=he) ===== */
html[lang="he"] {
  --serif: "Frank Ruhl Libre", "Cormorant Garamond", serif;
  --sans: "Heebo", "Jost", sans-serif;
}
html[lang="he"] .hero__title { letter-spacing: 0; line-height: 1.15; }
html[lang="he"] .marquee__track { font-style: normal; }

/* ===== RTL adjustments ===== */
[dir="rtl"] .service-card li::before { content: "—"; }
[dir="rtl"] .service-card li { flex-direction: row; }
[dir="rtl"] .about__content .section-head__eyebrow,
[dir="rtl"] .about__content .section-head__title,
[dir="rtl"] .contact__text .section-head__eyebrow,
[dir="rtl"] .contact__text .section-head__title { text-align: right; }
[dir="rtl"] .hero__logo { margin-left: 0; margin-right: -6px; }
[dir="rtl"] .field label { text-align: right; }
[dir="rtl"] .lang-switch { direction: ltr; }
