/* ═══ FONTS ═══ */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&display=swap');

/* ═══ VARIABLES ═══ */
:root, .he-site {
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dim: rgba(201,169,110,0.18);
  --dark: #0a0a0a;
  --dark2: #111;
  --dark3: #1a1a1a;
  --text-dim: rgba(255,255,255,0.62);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Heebo', sans-serif;
}

/* ═══ RESET ═══ */
.he-site * { box-sizing: border-box; margin: 0; padding: 0; }
.he-site {
  font-family: var(--sans);
  direction: rtl;
  text-align: right;
  background: #fff;
  color: #1a1a1a;
}

/* ═══ NAV ═══ */
.he-nav {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 100;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.1);
  transition: background 0.3s;
}
.he-nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.he-nav-logo em { font-style: italic; color: var(--gold-light); }
.he-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.he-nav-links a {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}
.he-nav-links a:hover, .he-nav-links a.active { color: var(--gold); }
.he-nav-cta {
  font-size: 12px !important;
  color: var(--gold) !important;
  border: 1px solid rgba(201,169,110,0.4) !important;
  padding: 8px 20px !important;
  letter-spacing: 0.15em !important;
  transition: all 0.3s !important;
}
.he-nav-cta:hover { background: var(--gold) !important; color: var(--dark) !important; }
.he-nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.he-nav-burger span { display: block; width: 24px; height: 1px; background: rgba(255,255,255,0.7); }

/* ═══ NAV DROPDOWN ═══ */
.he-nav-item { position: relative; }
.he-nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 200px;
  background: rgba(10,10,10,0.97);
  border: 1px solid rgba(201,169,110,0.2);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 200;
}
.he-nav-item:hover .he-nav-dropdown,
.he-nav-item:focus-within .he-nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.he-nav-dropdown a {
  display: block !important;
  padding: 13px 20px !important;
  font-size: 13px !important;
  letter-spacing: 0.1em !important;
  color: rgba(255,255,255,0.65) !important;
  text-decoration: none !important;
  text-transform: none !important;
  border-bottom: 1px solid rgba(201,169,110,0.08) !important;
  transition: background 0.2s, color 0.2s !important;
  font-family: var(--sans) !important;
  font-weight: 400 !important;
}
.he-nav-dropdown a:last-child { border-bottom: none !important; }
.he-nav-dropdown a:hover { background: rgba(201,169,110,0.08) !important; color: var(--gold) !important; }
.he-nav-dropdown-arrow {
  display: inline-block;
  margin-right: 4px;
  font-size: 9px;
  opacity: 0.5;
  transition: transform 0.25s;
  vertical-align: middle;
}
.he-nav-item:hover .he-nav-dropdown-arrow { transform: rotate(180deg); }

/* ═══ MOBILE MENU ═══ */
.he-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  z-index: 101;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.he-mobile-menu.open { display: flex; }
.he-mobile-menu a {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.he-mobile-menu a:hover { color: var(--gold); }
.he-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 28px;
  cursor: pointer;
  z-index: 110;
  padding: 8px;
}

/* ═══ BUTTONS ═══ */
.he-btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  padding: 16px 36px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.he-btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.he-btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: var(--sans);
  font-size: 14px;
  padding: 15px 36px;
  text-decoration: none;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.3s;
  cursor: pointer;
}
.he-btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.he-btn-dark {
  display: inline-block;
  background: var(--dark);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  padding: 16px 40px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
.he-btn-dark:hover { background: #222; transform: translateY(-2px); }

/* ═══ SECTION HEADERS ═══ */
.he-section-tag {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.he-section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
}
.he-section-title em { font-style: italic; color: var(--gold); }
.he-section-head { text-align: center; margin-bottom: 60px; }

/* ═══ HERO ═══ */
.he-hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
}
.he-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.0); } }
.he-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.65) 100%);
}
.he-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 800px;
  margin: 0 auto;
}
.he-hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.35);
  padding: 7px 22px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.he-hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 9vw, 90px);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.he-hero h1 em { font-style: italic; color: var(--gold-light); }
.he-hero-sub {
  font-family: var(--serif);
  font-size: clamp(17px, 2.5vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.62);
  margin-bottom: 44px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}
.he-hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}
.he-hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}
.he-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}
.he-hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.he-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2s ease-in-out infinite;
}

/* ═══ TRUST STRIP ═══ */
.he-trust {
  background: var(--dark2);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  padding: 28px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.he-trust-item {
  flex: 1;
  min-width: 120px;
  max-width: 200px;
  text-align: center;
  padding: 8px 20px;
  position: relative;
}
.he-trust-item + .he-trust-item::before {
  content: '';
  position: absolute;
  right: 0; top: 15%; height: 70%;
  width: 1px;
  background: rgba(201,169,110,0.15);
}
.he-trust-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.he-trust-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ═══ SERVICES ═══ */
.he-services { padding: 100px 24px; background: #faf9f7; }
.he-services-inner { max-width: 1100px; margin: 0 auto; }
.he-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
}
.he-service-card {
  position: relative;
  overflow: hidden;
  background: var(--dark3);
  aspect-ratio: 3/4;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.he-service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transition: opacity 0.5s ease, transform 0.6s ease;
}
.he-service-card:hover .he-service-card-bg { opacity: 0.65; transform: scale(1.04); }
.he-service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 55%);
}
.he-service-card-content {
  position: absolute;
  bottom: 0; right: 0; left: 0;
  padding: 32px 28px;
  z-index: 2;
}
.he-service-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}
.he-service-card p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 18px;
}
.he-service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s;
}
.he-service-card:hover .he-service-arrow { opacity: 1; transform: translateY(0); }

/* ═══ FEATURES ═══ */
.he-feats { padding: 80px 24px; background: #faf9f7; }
.he-feats-inner { max-width: 1000px; margin: 0 auto; }
.he-feats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.he-feat {
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border: 1px solid rgba(201,169,110,0.12);
}
.he-feat-icon { font-size: 32px; margin-bottom: 16px; }
.he-feat-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: #0a0a0a;
  margin-bottom: 10px;
}
.he-feat-text { font-size: 14px; font-weight: 300; line-height: 1.75; color: #555; }

/* ═══ VIDEOS ═══ */
.he-videos { padding: 90px 24px; background: var(--dark); }
.he-videos-inner { max-width: 1100px; margin: 0 auto; }
.he-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.he-video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--dark3);
  border: 1px solid var(--gold-dim);
}
.he-video-embed iframe {
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 100%;
  border: none;
}
.he-video-label {
  padding: 14px 0 0;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ═══ TESTIMONIALS ═══ */
.he-testimonials { padding: 90px 24px; background: #fff; }
.he-testimonials-inner { max-width: 1000px; margin: 0 auto; }
.he-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.he-testimonial {
  background: #faf9f7;
  border: 1px solid rgba(201,169,110,0.15);
  padding: 36px 32px;
  position: relative;
}
.he-testimonial::before {
  content: '״';
  font-family: var(--serif);
  font-size: 72px;
  color: var(--gold);
  opacity: 0.22;
  position: absolute;
  top: 12px; right: 24px;
  line-height: 1;
}
.he-testimonial-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #2a2a2a;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.he-testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.he-testimonial-stars span { color: var(--gold); font-size: 14px; }
.he-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(201,169,110,0.12);
  padding-top: 18px;
}
.he-testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.he-testimonial-name { font-size: 14px; font-weight: 500; color: #1a1a1a; margin-bottom: 2px; }
.he-testimonial-event { font-size: 12px; color: #999; }
.he-testimonials-cta { text-align: center; margin-top: 48px; }
.he-testimonials-cta a {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  padding-bottom: 3px;
  transition: border-color 0.3s;
}
.he-testimonials-cta a:hover { border-color: var(--gold); }

/* ═══ ABOUT ═══ */
.he-about-strip { background: var(--dark2); padding: 90px 24px; }
.he-about-strip-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}
.he-about-photo-wrap {
  flex-shrink: 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(201,169,110,0.1), 0 0 0 16px rgba(201,169,110,0.05);
}
.he-about-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
.he-about-body { flex: 1; min-width: 260px; }
.he-about-body h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
}
.he-about-body h2 em { font-style: italic; color: var(--gold-light); }
.he-about-body p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-dim);
  margin-bottom: 32px;
}

/* ═══ CONTACT ═══ */
.he-contact { padding: 100px 24px; background: var(--dark); }
.he-contact-inner { max-width: 900px; margin: 0 auto; }
.he-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}
.he-contact-info h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
}
.he-contact-info p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 36px;
}
.he-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.25);
  transition: box-shadow 0.3s, transform 0.2s;
}
.he-whatsapp-btn:hover { box-shadow: 0 8px 32px rgba(37,211,102,0.4); transform: translateY(-3px); }
.he-whatsapp-icon { width: 20px; height: 20px; flex-shrink: 0; }
.he-contact-form-wrap h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 24px;
}
.he-contact-form-wrap input,
.he-contact-form-wrap textarea,
.he-contact-form-wrap select {
  background: var(--dark3) !important;
  border: 1px solid rgba(201,169,110,0.2) !important;
  border-radius: 0 !important;
  color: #fff !important;
  font-family: var(--sans) !important;
  font-size: 14px !important;
  padding: 12px 14px !important;
  text-align: right !important;
  transition: border-color 0.3s !important;
}
.he-contact-form-wrap input:focus,
.he-contact-form-wrap textarea:focus {
  border-color: var(--gold) !important;
  outline: none !important;
  box-shadow: none !important;
}
.he-contact-form-wrap input::placeholder,
.he-contact-form-wrap textarea::placeholder { color: rgba(255,255,255,0.25) !important; }
.he-contact-form-wrap .ff-el-input--label label {
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.45) !important;
  background: transparent !important;
  border: none !important;
  padding: 0 0 8px !important;
}
.he-contact-form-wrap .ff-btn-submit,
.he-contact-form-wrap button[type=submit] {
  background: var(--gold) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  width: 100% !important;
  padding: 16px !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  font-family: var(--sans) !important;
  transition: background 0.3s !important;
}
.he-contact-form-wrap .ff-btn-submit:hover { background: var(--gold-light) !important; }

/* ═══ CTA BAND ═══ */
.he-cta-band { background: var(--gold); padding: 80px 24px; text-align: center; }
.he-cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.he-cta-band h2 em { font-style: italic; }
.he-cta-band p {
  font-size: 16px;
  color: rgba(10,10,10,0.65);
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══ FOOTER ═══ */
.he-footer {
  background: #050505;
  border-top: 1px solid rgba(201,169,110,0.08);
  padding: 40px 24px 32px;
  text-align: center;
}
.he-footer-logo {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.he-footer-logo em { font-style: italic; color: rgba(201,169,110,0.6); }
.he-footer-tagline {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 24px;
}
.he-footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.he-footer-links a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.3s;
}
.he-footer-links a:hover { color: var(--gold); }
.he-footer-copy { font-size: 12px; color: rgba(255,255,255,0.15); }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .he-nav { padding: 0 20px; }
  .he-nav-links { display: none; }
  .he-nav-burger { display: flex; }
  .he-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .he-about-strip-inner { flex-direction: column; align-items: flex-start; gap: 36px; }
  .he-services-grid { grid-template-columns: 1fr; }
  .he-service-card { aspect-ratio: 4/3; }
}
@media (max-width: 480px) {
  .he-hero-btns { flex-direction: column; align-items: center; }
  .he-btn-primary, .he-btn-ghost { width: 100%; max-width: 280px; text-align: center; }
}