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

:root {
  --cream: #F7F3EE;
  --warm-white: #FDFAF6;
  --dark: #1C1714;
  --brown: #3D2B1F;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --sage: #8A9E8C;
  --text: #2E2420;
  --text-muted: #7A6A60;
  --border: rgba(201,169,110,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 60px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(253,250,246,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; letter-spacing: 0.12em;
  color: var(--brown);
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 38px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 400; letter-spacing: 0.06em;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--dark); color: var(--cream);
  border: none; padding: 11px 28px; border-radius: 2px;
  font-family: 'Heebo', sans-serif; font-size: 13px;
  letter-spacing: 0.08em; cursor: pointer; transition: background 0.2s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--gold); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 50%, rgba(201,169,110,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 600px 800px at 80% 30%, rgba(138,158,140,0.08) 0%, transparent 60%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
}
.hero-line {
  position: absolute; top: 0; bottom: 0;
  left: 55%; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.3), transparent);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 120px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
}
.hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 5.5vw, 78px);
  font-weight: 300; line-height: 1.1;
  color: var(--cream); margin-bottom: 28px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: rgba(247,243,238,0.6); max-width: 440px; margin-bottom: 52px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold); color: var(--dark);
  padding: 15px 38px; border: none; border-radius: 2px;
  font-family: 'Heebo', sans-serif; font-size: 14px;
  font-weight: 500; letter-spacing: 0.06em; cursor: pointer;
  text-decoration: none; transition: all 0.25s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--cream);
  padding: 14px 36px; border: 1px solid rgba(247,243,238,0.25); border-radius: 2px;
  font-family: 'Heebo', sans-serif; font-size: 14px;
  font-weight: 300; letter-spacing: 0.06em; cursor: pointer;
  text-decoration: none; transition: all 0.25s; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Photo */
.hero-photo-wrap { position: relative; display: flex; justify-content: center; }
.hero-photo-frame { width: 380px; height: 480px; position: relative; }
.hero-photo-frame::before {
  content: ''; position: absolute;
  top: -16px; right: -16px;
  width: 100%; height: 100%;
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 2px;
}
.hero-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 2px;
  filter: grayscale(8%) contrast(1.04);
}

/* ── SECTIONS ── */
.section-tag {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.section-tag::after { content: ''; flex: 0 0 40px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300; line-height: 1.2; color: var(--brown);
  margin-bottom: 20px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-lead {
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: var(--text-muted); max-width: 560px;
}
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* ── ABOUT ── */
#about-section {
  background: var(--cream);
  padding: 110px 0;
  position: relative;
}
#about-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}
.about-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start;
}
.about-text p { font-size: 16px; line-height: 1.9; color: var(--text-muted); margin-bottom: 20px; }
.about-text p strong { color: var(--brown); font-weight: 500; }
.about-creds {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border); border-radius: 2px; overflow: hidden;
  margin-top: 40px;
}
.cred-item {
  padding: 20px 28px; border-bottom: 1px solid var(--border);
  display: flex; gap: 16px; align-items: flex-start;
}
.cred-item:last-child { border-bottom: none; }
.cred-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 8px; }
.cred-text { font-size: 14px; line-height: 1.6; color: var(--text-muted); }
.cred-text strong { color: var(--brown); font-weight: 500; display: block; font-size: 13px; letter-spacing: 0.04em; margin-bottom: 3px; }
.issues-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--brown); margin-bottom: 24px; }
.issues-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.issue-chip {
  padding: 14px 20px; border: 1px solid var(--border); border-radius: 2px;
  font-size: 14px; color: var(--text-muted); transition: all 0.2s;
  display: flex; align-items: center; gap: 10px;
}
.issue-chip:hover { border-color: var(--gold); color: var(--brown); background: rgba(201,169,110,0.06); }
.issue-chip::before { content: '↗'; font-size: 12px; color: var(--gold); }

/* ── SERVICES ── */
#services-section { background: var(--warm-white); padding: 110px 0; }
.services-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  margin-top: 60px; border: 1px solid var(--border);
}
.service-card {
  padding: 56px 48px;
  border-left: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.service-card:hover { background: rgba(201,169,110,0.04); }
.service-card:nth-child(odd) { border-left: none; }
.service-num { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; color: rgba(201,169,110,0.15); line-height: 1; margin-bottom: 24px; }
.service-name { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 400; color: var(--brown); margin-bottom: 8px; }
.service-format { font-size: 12px; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; }
.service-desc { font-size: 15px; line-height: 1.85; color: var(--text-muted); margin-bottom: 32px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-list li { font-size: 14px; color: var(--text-muted); padding-right: 18px; position: relative; line-height: 1.6; }
.service-list li::before { content: '—'; position: absolute; right: 0; color: var(--gold); }

/* ── PROCESS ── */
#process-section { background: var(--dark); padding: 110px 0; position: relative; }
#process-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 500px at 50% 50%, rgba(201,169,110,0.08) 0%, transparent 65%);
}
.process-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.process-inner .section-title { color: var(--cream); }
.process-inner .section-lead { color: rgba(247,243,238,0.5); }
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  margin-top: 64px; background: rgba(201,169,110,0.15);
}
.process-step { background: var(--dark); padding: 48px 40px; }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300; color: rgba(201,169,110,0.2); line-height: 1; margin-bottom: 28px; }
.step-title { font-size: 17px; font-weight: 500; color: var(--cream); margin-bottom: 14px; }
.step-text { font-size: 14px; line-height: 1.8; color: rgba(247,243,238,0.45); }

/* ── REVIEWS ── */
#reviews-section { background: var(--cream); padding: 110px 0; }
.reviews-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 60px; }
.review-card {
  background: var(--warm-white);
  border: 1px solid var(--border); border-radius: 2px;
  padding: 44px 40px; position: relative;
}
.review-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px; line-height: 0.7;
  color: rgba(201,169,110,0.2);
  position: absolute; top: 28px; left: 32px;
}
.review-text { font-size: 15px; line-height: 1.9; color: var(--text-muted); margin-bottom: 28px; position: relative; z-index: 1; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--dark);
}
.review-name { font-size: 14px; font-weight: 500; color: var(--brown); }
.review-stars { font-size: 12px; color: var(--gold); letter-spacing: 2px; margin-top: 2px; }

/* ── CONTACT ── */
#contact-section { background: var(--dark); padding: 110px 0; position: relative; overflow: hidden; }
#contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 30% 50%, rgba(201,169,110,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 600px 800px at 80% 60%, rgba(138,158,140,0.06) 0%, transparent 60%);
}
.contact-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
.contact-inner .section-title { color: var(--cream); }
.contact-inner .section-lead { color: rgba(247,243,238,0.5); margin-bottom: 48px; }
.contact-links { display: flex; flex-direction: column; gap: 16px; }
.contact-link {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 28px; border: 1px solid rgba(201,169,110,0.2); border-radius: 2px;
  text-decoration: none; color: var(--cream); font-size: 15px;
  transition: all 0.25s;
}
.contact-link:hover { border-color: var(--gold); background: rgba(201,169,110,0.06); }
.contact-link-icon { font-size: 20px; }
.contact-link-label { font-size: 11px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.contact-link-val { font-size: 16px; color: var(--cream); margin-top: 2px; }

.cta-box { background: var(--gold); padding: 60px 52px; border-radius: 2px; position: relative; z-index: 1; }
.cta-box-title { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 300; color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.cta-box-text { font-size: 15px; color: rgba(28,23,20,0.7); line-height: 1.7; margin-bottom: 36px; }
.cta-box-btn {
  display: inline-block; background: var(--dark); color: var(--cream);
  padding: 16px 40px; border-radius: 2px; text-decoration: none;
  font-size: 14px; letter-spacing: 0.08em; font-weight: 500; transition: all 0.25s;
}
.cta-box-btn:hover { background: var(--brown); transform: translateY(-2px); }
.cta-free-note { margin-top: 14px; font-size: 12px; color: rgba(28,23,20,0.5); }

/* ── FOOTER ── */
footer {
  background: #111; padding: 40px 60px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(201,169,110,0.15);
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300; color: rgba(247,243,238,0.4); letter-spacing: 0.12em; }
.footer-copy { font-size: 12px; color: rgba(247,243,238,0.2); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp 0.8s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .hero-content { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 50px; }
  .hero-photo-frame { width: 100%; height: 360px; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 50px; padding: 0 24px; }
  .services-grid, .reviews-grid, .process-steps { grid-template-columns: 1fr; }
  #about-section, #services-section, #process-section, #reviews-section, #contact-section { padding: 70px 0; }
  .services-inner, .process-inner, .reviews-inner { padding: 0 24px; }
  footer { flex-direction: column; gap: 12px; padding: 28px 24px; text-align: center; }
}
