/* ============================================================
   סולי — be happy · coach   |   shared stylesheet
   Palette: terracotta / navy / sun / olive / cream
   Fonts: Frank Ruhl Libre (headings) + Heebo (body)
   ============================================================ */
:root {
  --terracotta: #E07A5F;
  --terracotta-dark: #C25A40;
  --navy: #264653;
  --navy-light: #3D5A6C;
  --sun: #F4C95D;
  --olive: #7A8C5B;
  --cream: #FAF6F1;
  --cream-dark: #F2EDE3;
  --ink: #2B2D2F;
  --muted: #6F7376;
  --line: #E8E2D6;
  --radius: 20px;
  --shadow: 0 18px 40px rgba(38,70,83,0.10);
  --container: 1200px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  font-family: 'Heebo', 'Segoe UI', Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.serif { font-family: 'Frank Ruhl Libre', serif; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.visually-hidden {
  position:absolute!important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 2px; border-radius: 4px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 700; text-decoration: none; font-size: 15px;
  transition: transform .15s ease, background .15s ease; cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--terracotta); color: #fff; }
.btn-primary:hover { background: var(--terracotta-dark); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: 12px 26px; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-sun { background: var(--sun); color: var(--navy); }
.btn-sun:hover { background: #eab945; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1eb457; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,246,241,0.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; padding-bottom: 12px; gap: 16px;
}
.site-header .logo { display: flex; align-items: center; text-decoration: none; }
.site-header .logo img { height: 46px; width: auto; }
.site-header nav { display: flex; gap: 26px; align-items: center; }
.site-header nav a {
  color: var(--navy); text-decoration: none; font-weight: 500; font-size: 15px;
  padding: 6px 2px; border-bottom: 2px solid transparent;
}
.site-header nav a:hover, .site-header nav a.active { color: var(--terracotta); border-color: var(--terracotta); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .cta {
  background: var(--terracotta); color: #fff !important; padding: 10px 20px;
  border-radius: 999px; font-weight: 700; font-size: 14px; text-decoration: none;
}
.header-cta .cta:hover { background: var(--terracotta-dark); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 8px; color: var(--navy);
}
.nav-toggle svg { width: 100%; height: 100%; }

/* ============ HERO ============ */
.hero { background: var(--cream); padding: 68px 0 80px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 4px;
  color: var(--olive); text-transform: uppercase; margin-bottom: 16px;
}
.hero-copy h1 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(42px, 6vw, 80px); line-height: 1.05;
  color: var(--navy); font-weight: 900; letter-spacing: -1px; margin-bottom: 20px;
}
.hero-copy h1 .accent { color: var(--terracotta); }
.hero-copy p.lead { font-size: 19px; color: var(--navy-light); margin-bottom: 8px; max-width: 520px; }
ul.identities {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px 12px;
  margin: 24px 0 32px; font-size: 15px;
}
ul.identities li {
  background: #fff; padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--line); font-weight: 600;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo { position: relative; border-radius: 24px; overflow: hidden; box-shadow: -20px 20px 0 var(--sun); }
.hero-photo img { width: 100%; height: 540px; object-fit: cover; object-position: center 30%; }

/* ============ STATS ============ */
.stats { background: var(--navy); color: #fff; padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat strong { display: block; font-size: 42px; font-weight: 900; color: var(--sun); font-family: 'Frank Ruhl Libre', serif; }
.stat span { font-size: 14px; opacity: .9; letter-spacing: 1px; }

/* ============ SECTIONS ============ */
.section { padding: 90px 0; }
.section.alt { background: var(--cream-dark); }
.section-title { text-align: center; margin-bottom: 52px; }
.section-title .kicker { color: var(--terracotta); margin-bottom: 12px; }
.section-title h2 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(32px, 4vw, 50px); color: var(--navy); line-height: 1.1;
  font-weight: 900; max-width: 820px; margin: 0 auto;
}
.section-title p { font-size: 17px; color: var(--muted); max-width: 640px; margin: 16px auto 0; }

/* ============ VERTICALS (5 cards) ============ */
.verticals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.vertical-card {
  background: #fff; border-radius: var(--radius); padding: 34px 30px;
  border: 1px solid var(--line); position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.vertical-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.vertical-card .icon {
  width: 64px; height: 64px; border-radius: 16px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-dark); font-size: 30px; margin-bottom: 20px;
}
.vertical-card[data-v="lang"]  .icon { background: #FCE9C2; }
.vertical-card[data-v="work"]  .icon { background: #F8D9CD; }
.vertical-card[data-v="org"]   .icon { background: #DBE5D0; }
.vertical-card[data-v="tours"] .icon { background: #CDDFEA; }
.vertical-card[data-v="bday"]  .icon { background: #F6D6E0; }
.vertical-card h3 { font-family: 'Frank Ruhl Libre', serif; font-size: 25px; color: var(--navy); margin-bottom: 10px; font-weight: 900; }
.vertical-card p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.vertical-card .more {
  color: var(--terracotta); font-weight: 700; text-decoration: none; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px; margin-top: auto;
}
.vertical-card .more::after { content: '←'; transition: transform .15s; }
.vertical-card:hover .more::after { transform: translateX(-4px); }

/* ============ FEATURED ============ */
.featured { background: var(--navy); color: #fff; padding: 96px 0; }
.featured-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.featured .kicker { color: var(--sun); margin-bottom: 14px; }
.featured h2 { font-family: 'Frank Ruhl Libre', serif; font-size: clamp(30px,3.4vw,44px); line-height: 1.15; font-weight: 900; margin-bottom: 18px; }
.featured p { font-size: 17px; opacity: .9; margin-bottom: 26px; max-width: 480px; }
.featured-img { border-radius: 24px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 20px 20px 0 var(--terracotta); }
.featured-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============ ABOUT ============ */
.about { padding: 96px 0; background: var(--cream-dark); }
.about-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 70px; align-items: center; }
.about-photo { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 20px 20px 0 var(--terracotta); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-copy .kicker { color: var(--terracotta); }
.about-copy h2 { font-family: 'Frank Ruhl Libre', serif; font-size: clamp(30px,3.4vw,44px); color: var(--navy); line-height: 1.15; font-weight: 900; margin-bottom: 22px; }
.about-copy p { font-size: 17px; color: var(--ink); margin-bottom: 16px; line-height: 1.75; }
.credentials { display: flex; flex-wrap: wrap; gap: 10px 12px; margin: 26px 0; font-size: 14px; color: var(--navy); }
.credentials span { background: #fff; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); font-weight: 600; }

/* ============ TESTIMONIALS ============ */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-card { background: #fff; border-radius: var(--radius); padding: 32px 30px; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 18px; }
.quote-card .stars { color: var(--sun); font-size: 18px; letter-spacing: 2px; }
.quote-card p { color: var(--ink); font-size: 16px; line-height: 1.75; }
.quote-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.quote-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--navy); }
.quote-card .name strong { display: block; color: var(--navy); font-size: 15px; }
.quote-card .name small { color: var(--muted); font-size: 12px; }

/* ============ CONTACT CTA ============ */
.contact-cta {
  background: var(--terracotta); color: #fff; padding: 96px 0; text-align: center;
  background-image: radial-gradient(circle at top right, rgba(244,201,93,0.22), transparent 50%),
                    radial-gradient(circle at bottom left, rgba(38,70,83,0.15), transparent 50%);
}
.contact-cta h2 { font-family: 'Frank Ruhl Libre', serif; font-size: clamp(32px,5vw,54px); font-weight: 900; margin-bottom: 16px; line-height: 1.1; }
.contact-cta p { font-size: 18px; opacity: .95; max-width: 540px; margin: 0 auto 32px; }
.contact-cta .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact-cta .btn-primary { background: var(--navy); }
.contact-cta .btn-primary:hover { background: var(--ink); }

/* ============ INNER PAGE HERO ============ */
.page-hero { background: var(--navy); color: #fff; padding: 64px 0; }
.page-hero .kicker { color: var(--sun); }
.page-hero h1 { font-family: 'Frank Ruhl Libre', serif; font-size: clamp(34px,5vw,58px); font-weight: 900; line-height: 1.1; margin-bottom: 14px; }
.page-hero p { font-size: 18px; opacity: .9; max-width: 640px; }
.breadcrumbs { font-size: 13px; opacity: .8; margin-bottom: 18px; }
.breadcrumbs a { color: var(--sun); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* ============ CONTENT / PROSE ============ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: 'Frank Ruhl Libre', serif; font-size: clamp(26px,3vw,38px); color: var(--navy); font-weight: 900; margin: 40px 0 16px; line-height: 1.2; }
.prose h3 { font-family: 'Frank Ruhl Libre', serif; font-size: 23px; color: var(--navy); font-weight: 800; margin: 28px 0 12px; }
.prose p { font-size: 17px; color: var(--ink); margin-bottom: 16px; line-height: 1.8; }
.prose ul { margin: 0 0 20px; padding-inline-start: 22px; }
.prose li { font-size: 17px; margin-bottom: 8px; line-height: 1.7; }
.prose img { border-radius: var(--radius); margin: 24px 0; }

/* service detail rows */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin: 0 0 40px; }
.svc-row.rev { direction: ltr; }
.svc-row.rev > * { direction: rtl; }
.svc-row img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%; box-shadow: var(--shadow); }
.svc-row h3 { font-family: 'Frank Ruhl Libre', serif; font-size: 26px; color: var(--navy); font-weight: 900; margin-bottom: 12px; }
.svc-row p { color: var(--ink); font-size: 16px; line-height: 1.75; }

/* contact cards */
.contact-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; text-align: center; text-decoration: none; color: var(--navy); transition: transform .2s, box-shadow .2s; display: block; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-card .ic { font-size: 34px; margin-bottom: 12px; }
.contact-card strong { display: block; font-size: 18px; margin-bottom: 4px; }
.contact-card span { color: var(--muted); font-size: 14px; }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 4px 22px; margin-bottom: 12px; }
.faq summary { font-weight: 700; color: var(--navy); font-size: 17px; padding: 16px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--terracotta); font-size: 24px; font-weight: 700; }
.faq details[open] summary::after { content: '−'; }
.faq details p { color: var(--ink); padding: 0 0 18px; line-height: 1.75; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.85); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; margin-bottom: 40px; }
.footer-grid img.flogo { height: 52px; margin-bottom: 14px; }
.footer-grid p.tag { font-size: 14px; opacity: .75; max-width: 280px; }
.footer-grid h5 { color: #fff; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.footer-grid a { color: rgba(255,255,255,0.75); text-decoration: none; display: block; padding: 4px 0; font-size: 14px; }
.footer-grid a:hover { color: var(--sun); }
.footer-social { display: flex; gap: 12px; margin-top: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: center; font-size: 18px; padding: 0; }
.footer-social a:hover { background: var(--sun); color: var(--navy); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 13px; opacity: .7; }

/* ============ FLOATING WHATSAPP ============ */
.wa-float {
  position: fixed; bottom: 22px; left: 22px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45); color: #fff;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }

/* ============ MOBILE ============ */
@media (max-width: 900px) {
  .container { padding: 0 18px; }
  .nav-toggle { display: block; }
  .site-header nav {
    position: absolute; top: 100%; right: 0; left: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 8px 18px 18px; display: none;
  }
  .site-header nav.open { display: flex; }
  .site-header nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .header-cta .cta { display: none; }
  .hero { padding: 44px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { box-shadow: -12px 12px 0 var(--sun); }
  .hero-photo img { height: 360px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .verticals-grid { grid-template-columns: 1fr; gap: 16px; }
  .featured-grid, .about-grid, .svc-row { grid-template-columns: 1fr; gap: 30px; }
  .about-photo { aspect-ratio: 16/12; box-shadow: 10px 10px 0 var(--terracotta); }
  .tgrid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .featured, .about { padding: 58px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 44px; }
}
