/* ===== Variables ===== */
:root {
  --bg: #f0ebe0;
  --bg-alt: #e8e0d0;
  --bg-dark: #1e1a14;
  --bg-dark-soft: #2a2018;
  --gold: #d4874a;
  --gold-hover: #b8703a;
  --gold-light: #e0a878;
  --gold-pale: #f0e4d4;
  --olive: #5a7a4e;
  --text: #1e1a14;
  --text-secondary: #6b5040;
  --border: #d0c4b0;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(30, 26, 20, 0.08);
  --shadow: 0 6px 32px rgba(30, 26, 20, 0.14);
  --shadow-lg: 0 12px 48px rgba(30, 26, 20, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --max: 1100px;
  --font-heading: 'Noto Serif Hebrew', 'Frank Ruhl Libre', Georgia, serif;
  --font-body: 'Heebo', 'Arial Hebrew', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 500; }
p { font-size: 1.05rem; color: var(--text-secondary); }

/* ===== Utility ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 146, 58, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-lg { padding: 1rem 2.6rem; font-size: 1.1rem; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 100;
  padding: 1.2rem 0;
  background: #f0ebe0;
  transition: box-shadow 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: #f0ebe0;
  box-shadow: 0 2px 12px rgba(30,26,20,0.08);
  padding: 0.75rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-circle {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e1a14;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem !important;
  font-weight: 400;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; right: 0;
  width: 0; height: 2px;
  background: var(--gold-light);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.nav-wheel-btn {
  color: #d4874a !important;
  font-weight: 700;
}
.nav-links a.nav-wheel-btn::after { background: #d4874a; }
.nav-links a.nav-wheel-btn:hover,
.nav-links a.nav-wheel-btn.active {
  color: #b8703a !important;
}
.nav-cta { margin-right: 1rem; }
.nav-cta .btn {
  padding: 0.5rem 1.3rem;
  font-size: 0.9rem;
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.nav-cta .btn:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: var(--bg-dark);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
}
.nav-mobile a {
  color: var(--white);
  font-size: 1.6rem;
  font-family: var(--font-heading);
  font-weight: 500;
}
.nav-mobile a:hover { color: var(--gold-light); }

/* Nav on light background — always dark text */
.nav-light .nav-links a { color: rgba(30,26,20,0.6) !important; }
.nav-light .nav-links a:hover,
.nav-light .nav-links a.active { color: #1e1a14 !important; }
.nav-light .nav-links a::after { background: var(--gold); }
.nav-light .nav-logo { color: #1e1a14; }
.nav-light .nav-logo span { color: var(--olive); }
.nav-light .nav-cta .btn {
  background: var(--olive);
  border-color: var(--olive);
  color: #f0ebe0;
}
.nav-light .nav-cta .btn:hover {
  background: #486640;
  border-color: #486640;
}
.nav-light .nav-toggle span { background: #1e1a14; }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 42fr 58fr;
  background: #f0ebe0;
  position: relative;
  overflow: hidden;
}

.hero-col-image {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  margin-left: 2rem;
  padding-top: 15vh;
}

.hero-col-image img {
  width: 100%;
  height: 100%;
  max-height: 85vh;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.hero-image-bar {
  display: none;
}

.hero-col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  padding: calc(80px + 3rem) 2.5rem 3rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-eyebrow-text {
  color: #5a7a4e;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  font-family: var(--font-body);
}

.hero-eyebrow-line {
  flex: 1;
  height: 1px;
  background: #5a7a4e;
  opacity: 0.45;
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.6rem;
  line-height: 1;
}

.hero-title-1 {
  font-family: 'Noto Serif Hebrew', 'Frank Ruhl Libre', Georgia, serif;
  font-size: clamp(4rem, 7vw, 6.5rem);
  font-weight: 700;
  color: #1e1a14;
  line-height: 1;
  display: block;
}

.hero-title-2 {
  font-family: 'Noto Serif Hebrew', 'Frank Ruhl Libre', Georgia, serif;
  font-size: clamp(4rem, 7vw, 6.5rem);
  font-weight: 300;
  font-style: italic;
  color: #d4874a;
  line-height: 1.1;
  display: block;
}

.hero-title-3 {
  font-family: 'Noto Serif Hebrew', 'Frank Ruhl Libre', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  color: rgba(30, 26, 20, 0.3);
  line-height: 1.4;
  display: block;
  margin-top: 0.6rem;
}

.hero-subtitle {
  color: rgba(30, 26, 20, 0.5) !important;
  font-size: 15px !important;
  margin-bottom: 2.5rem !important;
  line-height: 1.75 !important;
  max-width: none;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-btn-primary {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  background: #1e1a14;
  color: #f0ebe0;
  border-radius: 4px;
  font-size: 0.97rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
  border: 2px solid #1e1a14;
  white-space: nowrap;
}

.hero-btn-primary:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}

.hero-btn-secondary {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  background: #d4874a;
  color: #1e1a14;
  border-radius: 4px;
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
  border: 2px solid #d4874a;
  white-space: nowrap;
}

.hero-btn-secondary:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ===== Stats Strip ===== */
.stats-strip {
  background: var(--bg-dark);
  border-top: none;
  border-bottom: none;
  padding: 28px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0 3rem;
  text-align: center;
  flex: 1;
}
.stat-item strong {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: #f0ebe0;
  line-height: 1;
}
.stat-item > span {
  font-size: 0.83rem;
  color: rgba(240, 235, 224, 0.6);
  font-weight: 400;
}
.stat-item-quote { justify-content: center; }
.rotating-quote-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #f0ebe0;
  font-style: italic;
  text-align: center;
}
.quote-mark {
  font-size: 1.3rem;
  color: rgba(240, 235, 224, 0.45);
  font-style: normal;
  line-height: 1;
}
#rotatingQuote {
  transition: opacity 0.4s ease;
  opacity: 1;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(240, 235, 224, 0.18);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .stats-inner { flex-direction: column; gap: 1.2rem; }
  .stat-divider { width: 40px; height: 1px; }
  .stat-item { padding: 0; }
  .stat-item strong { font-size: 1.4rem; }
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  padding: 160px 0 80px;
  background:
    radial-gradient(ellipse at 60% 50%, rgba(212, 135, 74, 0.18) 0%, transparent 60%),
    linear-gradient(150deg, #1e1a14, #2a2018);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===== Sections ===== */
section { padding: 90px 0; }
.section-label {
  display: inline-block;
  color: var(--olive);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.75;
}
.section-head { margin-bottom: 3.5rem; }

/* ===== Problem Section ===== */
.problem-section { background: var(--bg); }
.problem-simple { text-align: center; }
.problem-lines {
  list-style: none;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.problem-lines li {
  width: 100%;
  max-width: 600px;
  background: #ffffff;
  border: 1px solid #d0c4b0;
  border-radius: 10px;
  padding: 1.1rem 1.8rem;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  color: var(--text);
  text-align: right;
}

/* ===== Method Section ===== */
.method-section { background: var(--bg-alt); }
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}
.method-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  border: 1px solid #d0c4b0;
  box-shadow: 0 1px 4px rgba(44,27,10,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  text-align: center;
}
.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(44,27,10,0.09);
  filter: brightness(1.015);
}
.method-card-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-pale), rgba(200,146,58,0.08));
  margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.method-card h3 { margin-bottom: 0.6rem; color: var(--text); }
.method-card p { font-size: 0.93rem; }

/* ===== About Teaser ===== */
.about-teaser {
  background: var(--bg);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-image-wrap {
  position: relative;
  min-height: 500px;
}
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: transparent;
  border-radius: 20px 4px 20px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-image-placeholder::after {
  content: 'אורן רמתי';
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}
.about-image-initials {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(200, 146, 58, 0.3);
  line-height: 1;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--white);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.about-badge strong { display: block; font-size: 1.6rem; font-family: var(--font-heading); }
.about-badge span { font-size: 0.78rem; opacity: 0.9; }

.about-content .section-subtitle { margin-bottom: 1.5rem; }
.about-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-stat strong {
  display: block;
  font-size: 1.8rem;
  font-family: var(--font-heading);
  color: var(--gold);
  font-weight: 700;
}
.about-stat span { font-size: 0.82rem; color: var(--text-secondary); }

/* ===== How We Work Together ===== */
.how-section { background: var(--bg-alt); }
.how-section + .how-section { background: var(--bg); }
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  max-width: 760px;
  margin: 0 auto;
}
.how-grid-4 {
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
}
.how-card {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid #d0c4b0;
  box-shadow: 0 1px 4px rgba(44,27,10,0.05);
  padding: 2.2rem 2rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}
.how-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(44,27,10,0.09);
  filter: brightness(1.015);
}
.how-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.how-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.how-card p { font-size: 0.93rem; }
@media (max-width: 640px) {
  .how-grid, .how-grid-4 { grid-template-columns: 1fr; }
}

/* ===== Testimonials ===== */
.testimonials-section { background: var(--bg-alt); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  border: 1px solid #d0c4b0;
  box-shadow: 0 1px 4px rgba(44,27,10,0.05);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(44,27,10,0.09);
  filter: brightness(1.015);
}
.testimonial-text {
  font-size: 0.97rem;
  line-height: 1.78;
  color: var(--text-secondary);
  margin: 0;
  flex: 1;
}
.testimonial-name {
  font-size: 0.83rem;
  color: #7a6e60;
  font-weight: 400;
}

/* ===== CTA Band ===== */
.cta-band {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-soft) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,146,58,0.15), transparent 65%);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; position: relative; }
.cta-band p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; font-size: 1.05rem; position: relative; }
.cta-band .btn { position: relative; }

/* ===== Minimal Footer ===== */
.footer-minimal {
  background: #f0ebe0;
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.footer-minimal-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  color: #7a6e60;
}

/* ===== Footer ===== */
footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 0.75rem; max-width: 280px; }
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
}
.footer-logo span { color: var(--gold-light); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--gold-light); }

/* ===== About Page ===== */
.about-full-section { background: var(--bg); }
.about-full-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.about-sticky { position: sticky; top: 100px; }
.about-photo-box {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  position: relative;
}
.about-photo-box::after {
  content: none;
}
.about-photo-initials {
  font-family: var(--font-heading);
  font-size: 7rem;
  font-weight: 700;
  color: rgba(200,146,58,0.25);
  line-height: 1;
}
.about-credentials {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.credentials-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}
.credentials-bar .credential-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0 2rem;
  border-left: 1px solid var(--border);
}
.credentials-bar .credential-item:last-child {
  border-left: none;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.credential-item::before {
  content: '✓';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1.3rem; font-size: 20px; }
.highlight-box {
  background: var(--bg-alt);
  border-right: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.4rem 1.6rem;
  margin: 2rem 0;
}
.highlight-box p { color: var(--text); font-size: 1.05rem; font-style: italic; }

/* ===== Method Detail Section ===== */
.method-detail { background: var(--bg-alt); }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.principle-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid #d0c4b0;
  box-shadow: 0 1px 4px rgba(44,27,10,0.05);
  display: flex;
  gap: 1.2rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}
.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44,27,10,0.09);
  filter: brightness(1.015);
}
.principle-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1;
}
.principle-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.principle-card p { font-size: 0.9rem; }

/* ===== Services Page ===== */
.services-intro { background: var(--bg); }
.service-main-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.service-main-content { padding: 3rem; }
.service-main-content h2 { margin-bottom: 1rem; }
.service-main-content p { margin-bottom: 1.2rem; }
.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.93rem;
}
.service-feature::before {
  content: '←';
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.service-main-visual {
  background: linear-gradient(160deg, var(--bg-dark) 0%, #3A2510 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.service-main-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(200,146,58,0.2), transparent 60%);
}
.service-visual-text {
  text-align: center;
  position: relative;
  z-index: 1;
}
.service-visual-text p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-top: 0.5rem;
}
.service-big-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

/* Process Section */
.process-section { background: var(--bg-alt); }
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}
.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: calc(3.2rem + 16px);
  right: 20px;
  width: 2px;
  height: calc(100% - 3.2rem);
  background: linear-gradient(to bottom, var(--gold), rgba(200,146,58,0.15));
}
.step-number {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 5px var(--bg-alt), 0 0 0 6px rgba(200,146,58,0.3);
}
.step-content h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.step-content p { font-size: 0.92rem; }

/* Packages */
.packages-section { background: var(--bg); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: end;
}
.package-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  border: 1px solid #d0c4b0;
  box-shadow: 0 1px 4px rgba(44,27,10,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  position: relative;
}
.package-card.featured {
  background: linear-gradient(160deg, var(--bg-dark), var(--bg-dark-soft));
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.package-card:not(.featured):hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(44,27,10,0.09);
  filter: brightness(1.015);
}
.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}
.package-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.package-card.featured .package-name,
.package-card.featured h3 { color: var(--white); }
.package-price {
  margin: 1rem 0;
}
.package-price span {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.package-price small {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: block;
  margin-top: -0.2rem;
}
.package-card.featured .package-price small { color: rgba(255,255,255,0.5); }
.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.package-card.featured .package-features { color: rgba(255,255,255,0.7); }
.package-features li { display: flex; align-items: center; gap: 0.5rem; }
.package-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* FAQ */
.faq-section { background: var(--bg-alt); }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 0;
  text-align: right;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question.open { color: var(--gold); }
.faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: transform var(--transition);
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner { padding: 0 0 1.3rem; font-size: 0.93rem; color: var(--text-secondary); }

/* ===== Contact Page ===== */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; }
.contact-item-text a,
.contact-item-text span { font-size: 0.95rem; color: var(--text); }
.contact-item-text a:hover { color: var(--gold); }

.contact-form-box {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid #d0c4b0;
  box-shadow: 0 1px 4px rgba(44,27,10,0.05);
}
.contact-form-box h3 { margin-bottom: 0.4rem; }
.contact-form-box > p { font-size: 0.9rem; margin-bottom: 2rem; }
.form-grid {
  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:last-child { margin-bottom: 0; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
input, textarea, select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  direction: rtl;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,146,58,0.12);
}
textarea { resize: vertical; min-height: 120px; }
input::placeholder, textarea::placeholder { color: #BBA88A; }
.form-submit { margin-top: 1.5rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success h3 { color: var(--gold); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; }

/* ===== FAQ Home Section (hover accordion) ===== */
.faq-home-section { background: var(--bg); }
.faq-home-list {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-home-item {
  background: #ffffff;
  border: 1px solid #d0c4b0;
  border-radius: 12px;
  padding: 1.3rem 1.7rem;
  cursor: default;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-home-item:hover {
  box-shadow: 0 4px 20px rgba(44, 27, 10, 0.09);
  border-color: #d4c49a;
}
.faq-home-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-home-q span {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
.faq-home-arrow {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.4s ease;
}
.faq-home-item:hover .faq-home-arrow {
  transform: rotate(180deg);
}
.faq-home-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}
.faq-home-item:hover .faq-home-answer {
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
}
.faq-home-answer-inner {
  padding-top: 0.9rem;
  margin-top: 0.8rem;
  border-top: 1px solid #e8e0d0;
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.78;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-col-image {
    min-height: 55vw;
    max-height: 480px;
  }
  .hero-col-text {
    padding: 2.5rem 1.8rem 3rem;
  }
  .problem-grid,
  .about-grid,
  .about-full-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .method-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .package-card.featured { transform: none; }
  .service-main-card { grid-template-columns: 1fr; }
  .service-main-visual { min-height: 220px; }
  .about-sticky { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-full-grid { gap: 3rem; }
  .principles-grid { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-col-image { min-height: 70vw; max-height: 380px; }
  .hero-col-text { padding: 2rem 1.4rem 2.5rem; }
  .hero-title-1, .hero-title-2 { font-size: 3.2rem; }
  .method-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; gap: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-grid { gap: 2rem; }
  .contact-form-box { padding: 1.5rem; }
  .about-grid { gap: 2rem; }
}
