/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #23572c;
  --green-mid:    #7f9d1e;
  --green-sage:   #b6c983;
  --green-light:  #d0dab3;
  --white:        #fefefe;
  --off-white:    #f7f9f3;
  --charcoal:     #1c1c1c;
  --gray:         #6a6a6a;
  --gray-light:   #e8e8e8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 72px;
  border-bottom: 1px solid var(--green-light);
}

.nav-logo img { height: 52px; width: auto; display: block; object-fit: contain; }

.nav-right { display: flex; align-items: center; gap: 2rem; }

.nav-link {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--green-dark); }

.btn-nav {
  background: var(--green-dark);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-nav:hover { background: var(--green-mid); transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('Image/סטודיו.jpeg');
  background-size: cover;
  background-position: center 25%;
  transform: scale(1.04);
  animation: kenBurns 16s ease-out forwards;
}

@keyframes kenBurns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    175deg,
    rgba(20, 48, 24, 0.25) 0%,
    rgba(20, 48, 24, 0.72) 55%,
    rgba(10, 32, 14, 0.97) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  padding: 0 6% 10vh;
  animation: heroIn 1.1s cubic-bezier(.22,.68,0,1.2) both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-sage);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.hero-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--green-sage);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.4rem;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--green-sage);
}

.hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 2.6rem;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.05rem 2.4rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.22s;
}
.btn-primary:hover { background: #6a8419; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(127,157,30,0.3); }

.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.05rem 2rem;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.22s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }

.btn-dark {
  background: var(--green-dark);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.05rem 2.4rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.22s;
}
.btn-dark:hover { background: var(--green-mid); transform: translateY(-2px); }

.btn-full {
  width: 100%;
  display: block;
  background: var(--green-mid);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.1rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.22s;
}
.btn-full:hover { background: #6a8419; transform: translateY(-1px); }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--green-dark);
  padding: 0 6%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 2.6rem 0;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.03); }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-num span { color: var(--green-sage); }

.stat-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ===== TICKER ===== */
.ticker {
  background: var(--green-mid);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  animation: tickerMove 26s linear infinite;
  white-space: nowrap;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0 2.5rem;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ticker-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  flex-shrink: 0;
}

/* ===== SHARED SECTION ELEMENTS ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-mid);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--green-mid);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-desc {
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.95;
  max-width: 480px;
  margin-bottom: 2rem;
}

/* ===== OFFER SECTION ===== */
.offer-section {
  background: var(--off-white);
  padding: 100px 6%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10%;
  align-items: center;
}

.offer-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-mid);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.offer-label::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--green-mid);
}

.offer-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

.offer-text h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--green-mid);
}

.offer-text p {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 2.2rem;
  max-width: 440px;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--green-light);
  border-radius: 3px;
  padding: 3rem 2.4rem;
  text-align: center;
  box-shadow: 0 4px 40px rgba(35,87,44,0.08);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-mid));
}

.offer-price-wrap { margin-bottom: 0.3rem; }

.offer-currency {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--green-dark);
  vertical-align: top;
  margin-top: 0.8rem;
  display: inline-block;
}

.offer-price {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.offer-duration {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 2rem;
}

.offer-divider {
  border: none;
  border-top: 1px solid var(--green-light);
  margin: 1.6rem 0;
}

.offer-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.offer-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.83rem;
  font-weight: 400;
  color: var(--gray);
}

.offer-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-sage);
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--white);
  padding: 100px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: center;
}

.about-mosaic {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 280px 200px;
  gap: 8px;
}

.about-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-mosaic .img-tall { grid-row: 1 / -1; }

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  background: transparent;
  border: 1px solid var(--green-sage);
  color: var(--green-dark);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.42rem 0.95rem;
  border-radius: 100px;
}

/* ===== CLASSES ===== */
.classes-section {
  background: var(--off-white);
  padding: 100px 6%;
}

.classes-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4%;
  align-items: end;
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--green-light);
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--green-light);
}

.class-card {
  background: var(--white);
  padding: 2.4rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: default;
}
.class-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.class-card:hover { background: var(--off-white); }
.class-card:hover::after { transform: scaleX(1); }

.class-index {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 1.2rem;
  transition: color 0.25s;
}
.class-card:hover .class-index { color: var(--green-sage); }

.class-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.7rem;
  line-height: 1.35;
}

.class-desc {
  color: var(--gray);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.85;
}

.class-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--green-dark);
  padding: 100px 6%;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header .section-label { justify-content: center; }
.testimonials-header .section-label::before { display: none; }
.testimonials-header .section-title { color: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}

.t-card {
  padding: 2.2rem;
  border: 1px solid rgba(208,218,179,0.12);
  position: relative;
  transition: border-color 0.25s, background 0.25s;
}
.t-card:hover {
  border-color: rgba(182,201,131,0.28);
  background: rgba(255,255,255,0.03);
}

.t-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(127,157,30,0.25);
  margin-bottom: -0.8rem;
  display: block;
}

.t-stars {
  color: var(--green-sage);
  font-size: 0.75rem;
  letter-spacing: 4px;
  margin-bottom: 1rem;
}

.t-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(254,254,254,0.78);
  line-height: 1.85;
  margin-bottom: 1.6rem;
}

.t-author {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-sage);
}

/* ===== PHOTO STRIP ===== */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 320px;
  gap: 3px;
  overflow: hidden;
}

.photo-strip-item {
  overflow: hidden;
  position: relative;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8) saturate(0.85);
  transition: filter 0.4s, transform 0.5s;
}
.photo-strip-item:hover img {
  filter: brightness(1) saturate(1.05);
  transform: scale(1.06);
}

/* ===== LEAD FORM ===== */
.form-section {
  background: var(--off-white);
  padding: 100px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  align-items: start;
}

.form-text .section-desc { margin-bottom: 2.4rem; }

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
}

.check-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-dot svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--green-light);
  border-radius: 3px;
  padding: 3rem 2.6rem;
  box-shadow: 0 8px 60px rgba(35,87,44,0.08);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-mid));
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
  line-height: 1.25;
}

.form-subtitle {
  color: var(--gray);
  font-size: 0.82rem;
  font-weight: 300;
  margin-bottom: 2.2rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field { margin-bottom: 1.1rem; }

.field label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.field input,
.field select {
  width: 100%;
  padding: 0.82rem 0;
  border: none;
  border-bottom: 1.5px solid var(--green-light);
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: var(--charcoal);
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.field input:focus,
.field select:focus { border-color: var(--green-dark); }
.field input::placeholder { color: #C4C4C4; }

.btn-submit {
  width: 100%;
  background: var(--green-mid);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.15rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 1.6rem;
  transition: all 0.22s;
}
.btn-submit:hover { background: #6a8419; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(127,157,30,0.28); }

.form-note {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 300;
  color: #C0C0C0;
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--green-dark);
  padding: 5rem 6% 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5%;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  color: rgba(254,254,254,0.45);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.9;
  max-width: 280px;
  margin-top: 1.2rem;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 1.4rem;
}

.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.footer-nav a {
  color: rgba(254,254,254,0.45);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-contact p {
  color: rgba(254,254,254,0.45);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 2;
}

.footer-bottom {
  padding-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(254,254,254,0.2);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.footer-bottom a { color: rgba(254,254,254,0.2); text-decoration: none; }
.footer-bottom a:hover { color: var(--green-sage); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .offer-section { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-section { grid-template-columns: 1fr; gap: 3rem; }
  .about-mosaic { order: -1; }
  .classes-header { grid-template-columns: 1fr; gap: 1rem; }
  .classes-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .photo-strip { grid-template-columns: repeat(3, 1fr); }
  .photo-strip-item:nth-child(4),
  .photo-strip-item:nth-child(5) { display: none; }
  .form-section { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .nav-link { display: none; }
}

@media (max-width: 600px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .classes-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; height: 260px; }
  .photo-strip-item:nth-child(3) { display: none; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
