/* ============================================================
   INDEX PAGE — index.css (Reference-site Match)
   ============================================================ */

/* ── HERO — split layout: photo LEFT, text RIGHT ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 50% 50%;
  direction: ltr;   /* force visual LTR so photo is LEFT, text is RIGHT */
  overflow: hidden;
  position: relative;   /* contain absolutely-positioned deco-orb children */
  padding-top: 0;   /* navbar is fixed, hero starts at top */
  max-width: 100%;
}

/* LEFT: photo panel */
.hero-photo-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 2rem 0.5rem 2rem 1rem;
}

/* Inner image wrapper — fills most of panel, rounded corners */
.hero-photo-inner {
  position: relative;
  width: 97%;
  max-width: 680px;
}
.hero-photo-inner > img {
  width: 100%;
  height: 82vh;
  max-height: 720px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  display: block;
  box-shadow: 0 24px 70px rgba(0,0,0,0.16);
}

/* Sticker — protrudes off the right edge of the photo */
.hero-photo-inner { position: relative; }
.hero-sticker {
  position: absolute;
  bottom: 2.5rem;
  right: -2.2rem;
  background: var(--white);
  border-radius: 50px;
  padding: 0.85rem 1rem 0.85rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Heebo', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 8px 32px rgba(30,22,10,0.22);
  border: 1px solid rgba(215,137,81,0.18);
  animation: float 5s ease-in-out infinite;
  direction: rtl;
  z-index: 10;
}
.hero-sticker img {
  height: 46px;
  width: 46px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--cream-alt);
  flex-shrink: 0;
}

/* RIGHT: text panel on cream background */
.hero-text-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 2rem 5rem 2rem;
  background: var(--cream);
  direction: rtl;
  text-align: right;
}

.hero-eyebrow {
  font-family: var(--ff-ui);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 1.4rem;
  display: block;
}

.hero-name {
  font-family: var(--ff-heading);
  font-size: clamp(2.4rem, 5.5vw, 52px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.12;
  margin-bottom: 1.5rem;
}

.hero-quote {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

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

/* OLD classes — kept for compatibility if referenced in JS */
.hero-bg, .hero-overlay, .hero-particles, .hero-stones,
.hero-tagline, .hero-content { display:none !important; }
.hero-scroll { display:none; }

/* ── RIBBON ── */
.ribbon { background:#F0E8DC; padding:1rem 0; overflow:hidden; white-space:nowrap; direction:ltr; position:relative; max-width:100%; border-top:1px solid rgba(215,137,81,0.2); border-bottom:1px solid rgba(215,137,81,0.2); }
.ribbon-track { display:flex; align-items:center; width:max-content; direction:ltr; will-change:transform; }
.ribbon-set { display:inline-flex; align-items:center; gap:2rem; padding-right:2rem; }
.ribbon-set > span {
  display:inline-flex; align-items:center; gap:0.55rem;
  font-family:'Heebo',sans-serif; font-size:0.82rem; font-weight:500;
  letter-spacing:0.1em; color:var(--brand-orange); white-space:nowrap;
}
.ribbon-set > span i { color:var(--green); font-size:0.85rem; }
.ribbon-set .sep { color:rgba(215,137,81,0.35); font-size:0.6rem; }

/* ── HERO GLITTERS ── */
@keyframes glitter {
  0%, 100% { opacity:0; transform:scale(0) rotate(0deg); }
  40%, 60%  { opacity:1; transform:scale(1) rotate(45deg); }
}
.hero-glitter {
  position:absolute;
  width:var(--sz, 10px);
  height:var(--sz, 10px);
  pointer-events:none;
  z-index:2;
  animation:glitter var(--dur, 2s) ease-in-out var(--dl, 0s) infinite;
  filter:drop-shadow(0 0 5px rgba(255,255,255,0.95)) drop-shadow(0 0 10px rgba(255,215,100,0.5));
}
.hero-glitter::before,
.hero-glitter::after {
  content:'';
  position:absolute;
  top:50%; left:50%;
  background:#fdfaf4;
  border-radius:2px;
}
.hero-glitter::before {
  width:2px; height:100%;
  transform:translate(-50%, -50%);
}
.hero-glitter::after {
  width:100%; height:2px;
  transform:translate(-50%, -50%);
}

/* ── ABOUT ── */
.about {
  padding:9rem 0;
  position:relative;
  overflow:hidden;
  background: #FBF5EE;   /* חום בהיר מאוד, כמעט לבן */
}

/* Decorative background elements – subtle warm tint */
.about-deco-bg {
  position:absolute; inset:0; pointer-events:none; z-index:0;
}
.about-deco-bg::before {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(215,137,81,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215,137,81,0.04) 1px, transparent 1px);
  background-size:60px 60px;
}
.about-deco-bg::after {
  content:'✦'; position:absolute;
  font-size:8rem; color:rgba(215,137,81,0.06);
  top:10%; left:5%; line-height:1;
  pointer-events:none; user-select:none;
}
.about .container { position:relative; z-index:1; }

/* subtle warm orbs */
.about::before {
  content:''; position:absolute; border-radius:50%; pointer-events:none; z-index:0;
  filter:blur(90px);
  width:350px; height:350px; background:rgba(215,137,81,0.08);
  top:-60px; right:-80px; animation:orbFloat 14s ease-in-out infinite;
}
.about::after {
  content:''; position:absolute; border-radius:50%; pointer-events:none; z-index:0;
  filter:blur(90px);
  width:280px; height:280px; background:rgba(68,93,68,0.07);
  bottom:-60px; left:-60px; animation:orbFloat 18s ease-in-out infinite; animation-delay:-7s;
}

.about-grid { display:grid; grid-template-columns:420px 1fr; gap:6rem; align-items:center; }
.about-photo-col { position:relative; }
.about-photo-wrap { position:relative; }
.about-photo-wrap img {
  width:100%; aspect-ratio:3/4;
  object-fit:cover; object-position:75% 8%;
  border-radius:40% 60% 55% 45% / 50% 45% 55% 50%;
  box-shadow:0 25px 60px rgba(0,0,0,0.5), 0 0 0 3px rgba(215,137,81,0.35), 0 0 0 14px rgba(215,137,81,0.12);
  animation:morphShape 12s ease-in-out infinite;
}
@keyframes morphShape {
  0%  { border-radius:40% 60% 55% 45%/50% 45% 55% 50%; }
  25% { border-radius:55% 45% 40% 60%/45% 55% 45% 55%; }
  50% { border-radius:35% 65% 60% 40%/55% 40% 60% 45%; }
  75% { border-radius:50% 50% 35% 65%/40% 60% 50% 50%; }
  100%{ border-radius:40% 60% 55% 45%/50% 45% 55% 50%; }
}
.about-photo-badge { display:none; }
.about-text-col .section-label { display:none; }

.about-who-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 6vw, var(--fs-heading));
  font-weight: 700;
  color: var(--text-dark);   /* שחור על רקע בהיר */
  margin-bottom: 0.4rem;
  line-height: 1.05;
}

.about-para {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-mid);   /* כמעט שחור */
  line-height: 1.9;
  margin-bottom: 1.1rem;
}
.about-para strong { color: var(--text-dark); font-weight: 600; }
.about .gold-line { background:linear-gradient(90deg,var(--amber),var(--amber-light),transparent); }
.about-pills { display:flex; gap:0.6rem; flex-wrap:wrap; margin:1.8rem 0 2.2rem; }
.about-pills span {
  font-family: var(--ff-ui);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(68,93,68,0.08);
  color: var(--green-dark);
  border: 1px solid rgba(68,93,68,0.2);
}

/* ── Photo ring adapts to light bg ── */
.about-photo-wrap img {
  box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 0 0 3px rgba(215,137,81,0.35), 0 0 0 14px rgba(215,137,81,0.10);
}

/* ── CRYSTAL SCIENCE ── */
.science { position:relative; padding:9rem 0; overflow:hidden; background:#FBF5EE; }
.science-bg { position:absolute; inset:0; z-index:0; }
.science-bg img { width:100%; height:100%; object-fit:cover; filter:brightness(0.07) saturate(0.2); opacity:0.5; }
.science-overlay { position:absolute; inset:0; background:rgba(251,245,238,0.94); }
.science::before {
  content:''; position:absolute; border-radius:50%; pointer-events:none; z-index:0;
  filter:blur(90px); animation:orbFloat linear infinite;
  width:350px; height:350px; background:rgba(215,137,81,0.09); top:-80px; right:-100px; animation-duration:14s;
}
.science::after {
  content:''; position:absolute; border-radius:50%; pointer-events:none; z-index:0;
  filter:blur(90px); animation:orbFloat linear infinite;
  width:280px; height:280px; background:rgba(68,93,68,0.07); bottom:-60px; left:-80px; animation-duration:18s; animation-delay:-7s;
}
.science-content { position:relative; z-index:1; text-align:center; }
.science-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; margin:0 0 2.5rem; }
.science-card {
  background:var(--green);
  border:1px solid var(--green);
  border-radius:20px; padding:2.5rem 2rem; text-align:center;
  transition:all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.science-card:hover { border-color:var(--green-dark); transform:translateY(-6px); box-shadow:0 12px 40px rgba(0,0,0,0.09); }
.sc-icon-wrap {
  width:64px; height:64px; border-radius:50%;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.35);
  display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; color:#fff;
  margin:0 auto 1.2rem; transition:all 0.3s;
}
.science-card:hover .sc-icon-wrap { background:rgba(255,255,255,0.2); border-color:#fff; }
.science-card h3 { font-family:var(--ff-heading); font-size:1.5rem; color:#fff; margin-bottom:0.8rem; }
.science-card p { font-family:var(--ff-body); font-size:var(--fs-body); font-weight:300; color:#fff; line-height:1.9; }
.science-quote {
  font-family: 'David Libre', var(--ff-heading);
  font-size:1.3rem; color:var(--brand-orange); margin-top:1.2rem;
  line-height:2.1; direction:rtl; text-align:center;
}
.science-quote .quote-author { display:inline; }
@media (max-width:640px) {
  .science-quote .quote-author { display:block; margin-top:0.4rem; }
}

/* ── SERVICES PREVIEW ── */
.services-preview { padding:9rem 0; background:var(--cream-alt); overflow:hidden; }
.section-head { margin-bottom:3.5rem; }
.sp-cta { text-align:center; margin-top:2.5rem; }

.sp-carousel-wrap {
  overflow:hidden; position:relative; cursor:grab; user-select:none;
  mask-image:linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image:linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.sp-carousel-wrap:active { cursor:grabbing; }
.sp-carousel-track {
  display:flex; gap:1.8rem; padding:0.5rem 2rem 1rem; will-change:transform; direction:ltr;
}
.sp-card {
  background:var(--white); border-radius:20px; overflow:hidden;
  box-shadow:0 4px 24px rgba(30,22,10,0.08); transition:all 0.35s ease;
  display:flex; flex-direction:column; color:inherit;
  border:1px solid rgba(215,137,81,0.18);
  width:300px; flex-shrink:0; direction:rtl;
}
.sp-card:hover { transform:translateY(-10px); box-shadow:0 20px 50px rgba(30,22,10,0.14); }
.sp-card-img { position:relative; height:210px; overflow:hidden; }
.sp-card-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.sp-card:hover .sp-card-img img { transform:scale(1.08); }
.sp-card-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(30,22,10,0.6) 0%,transparent 60%); }
.sp-card-body { padding:1.6rem; display:flex; flex-direction:column; flex:1; text-align:right; }
.sp-icon { width:44px; height:44px; border-radius:50%; background:var(--green-pale); display:flex; align-items:center; justify-content:center; font-size:1.1rem; color:var(--green); margin-bottom:0.9rem; transition:all 0.3s; }
.sp-card:hover .sp-icon { background:var(--green); color:var(--white); }
.sp-card-body h3 { font-family:var(--ff-heading); font-size:1.3rem; color:var(--text-dark); margin-bottom:0.6rem; }
.sp-card-body p { font-size:0.85rem; color:var(--text-mid); line-height:1.7; flex:1; margin-bottom:1.2rem; }
.sp-link { font-size:0.8rem; font-weight:600; color:#D78951; letter-spacing:0.04em; transition:color 0.3s; display:flex; align-items:center; gap:0.3rem; }
.sp-card:hover .sp-link { color:#b8712f; }
.sp-grid { display:none; }

/* ── HOW IT WORKS ── */
.hiw { position:relative; padding:9rem 0; overflow:hidden; }
.hiw-bg {
  position:absolute; inset:0; z-index:0;
  background:linear-gradient(155deg, #FBF5EE 0%, #F5EDE4 60%, #F0E8DC 100%);
}
.hiw-bg::before {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(215,137,81,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215,137,81,0.04) 1px, transparent 1px);
  background-size:60px 60px;
  animation:gridShift 20s linear infinite;
}
@keyframes gridShift { from { background-position:0 0; } to { background-position:60px 60px; } }
.hiw-bg::after {
  content:''; position:absolute;
  width:400px; height:400px; border-radius:50%;
  background:radial-gradient(circle, rgba(215,137,81,0.08) 0%, transparent 70%);
  top:50%; left:50%; transform:translate(-50%,-50%);
  animation:orbFloat 16s ease-in-out infinite;
}
.hiw-content { position:relative; z-index:1; text-align:center; }
.hiw-content .section-title { color:var(--text-dark); }
.hiw-content .gold-line { display:block; margin-left:auto; margin-right:auto; }

.hiw-body { position:relative; margin-top:3rem; }
.hiw-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}
.hiw-timeline::before { display: none; }
html.lang-en .hiw-timeline::before { display: none; }
.hiw-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 2.2rem;
  background: #fdfaf4;
  border-radius: 18px;
  box-shadow: 0 6px 28px rgba(68,93,68,0.13), 0 1px 4px rgba(68,93,68,0.06);
  position: relative; z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: right;
}
.hiw-item:hover { transform: translateX(-6px); box-shadow: 0 14px 40px rgba(68,93,68,0.2), 0 2px 8px rgba(68,93,68,0.08); }
html.lang-en .hiw-item:hover { transform: translateX(6px); }
.hiw-item-dot {
  width:80px; height:80px; border-radius:50%;
  background: var(--green);
  border: none;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:0.1rem; flex-shrink:0; position:relative; z-index:1; transition:all 0.4s ease;
  box-shadow: 0 4px 16px rgba(68,93,68,0.28);
}
.hiw-item:hover .hiw-item-dot { background: var(--green-dark); box-shadow:0 8px 24px rgba(68,93,68,0.4); transform:scale(1.08); }
.hiw-item-dot i { font-size:1.1rem; color:rgba(255,255,255,0.7); }
.hiw-item-dot span {
  font-family:var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 1;
}
.hiw-item-body { flex:1; padding-top:0; text-align:right; }
html.lang-en .hiw-item-body { text-align:left; }
.hiw-item-body h3 { font-family:var(--ff-heading); font-size:1.55rem; color:var(--text-dark); margin-bottom:0.4rem; line-height:1.2; }
.hiw-item-body p { font-family:var(--ff-body); font-size:1.05rem; font-weight:300; color:var(--text-mid); line-height:1.8; }

/* ── TESTIMONIALS ── */
.testimonials { padding:9rem 0; background:var(--cream); overflow:hidden; }
.testimonials .container { margin-bottom:3rem; }
.t-carousel-wrap {
  overflow:hidden; position:relative; cursor:grab; user-select:none;
  mask-image:linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image:linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.t-carousel-wrap:active { cursor:grabbing; }
.t-carousel-track { display:flex; align-items:flex-start; gap:1.8rem; padding:0.5rem 2rem 1.5rem; will-change:transform; direction:ltr; }
.t-card {
  background:var(--white); border-radius:16px; padding:2.2rem;
  box-shadow:0 4px 24px rgba(30,22,10,0.07);
  border:1px solid rgba(215,137,81,0.2);
  position:relative; width:400px; flex-shrink:0; direction:rtl;
}
.t-card.t-card-ltr { direction:ltr; text-align:left; }
.t-card::before {
  content:'"'; position:absolute; top:1rem; right:1.5rem;
  font-family:var(--ff-heading); font-size:5rem;
  line-height:1; color:rgba(215,137,81,0.2); pointer-events:none;
}
.t-card.t-card-ltr::before { right:auto; left:1.5rem; }
.t-stars { color:var(--amber); font-size:0.95rem; letter-spacing:0.1em; margin-bottom:1rem; }
.t-text { font-family:var(--ff-body); font-size:var(--fs-body); font-weight:300; color:var(--text-mid); line-height:1.9; font-style:italic; margin-bottom:1.5rem; }
.t-author { display:flex; align-items:center; gap:0.8rem; }
.t-avatar { width:42px; height:42px; border-radius:50%; background:linear-gradient(135deg,var(--amber),var(--btn-green)); display:flex; align-items:center; justify-content:center; color:var(--white); font-weight:600; font-size:1rem; flex-shrink:0; }
.t-author strong { display:block; font-family:var(--ff-ui); font-size:var(--fs-small); color:var(--text-dark); font-weight:600; }
.t-author span { font-family:var(--ff-ui); font-size:var(--fs-small); color:var(--text-muted); }

/* ── CTA BANNER ── */
.cta-banner { background: var(--cream); padding: 6rem 0; border: none; overflow: visible; position: static; }
.cta-banner::before, .cta-banner::after { display: none; }

/* Green card */
.cta-card {
  background: var(--green);
  border-radius: 24px;
  padding: 5rem 4rem;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-card-label {
  display: block;
  font-family: var(--ff-ui);
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.2rem;
}
.cta-card-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta-card-sub {
  font-family: var(--ff-body);
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
  line-height: 1.7;
}
.cta-banner-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-top:2.5rem; }

/* White button for green card */
.btn-white {
  background: #fdfaf4;
  color: var(--green);
  font-weight: 500;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.btn-white:hover { background: var(--cream-alt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }

/* ── CONTACT ── */
.contact { padding:9rem 0; background:var(--cream); }
.contact .section-title { font-size:clamp(2.1rem, 5vw, 3.1rem); }
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:6rem; align-items:start; }
.contact-intro { font-size:1.15rem; color:var(--text-mid); line-height:1.85; margin-bottom:2rem; }
.contact-items { display:flex; flex-direction:column; gap:1.1rem; margin-bottom:2.5rem; }
.contact-item { display:flex; align-items:center; gap:1rem; padding:1rem 1.2rem; border-radius:14px; border:1px solid rgba(215,137,81,0.25); background:var(--cream-alt); transition:all 0.3s; color:inherit; }
.contact-item:hover { border-color:var(--green); background:var(--green-pale); transform:translateX(-4px); }
html.lang-en .contact-item:hover { transform:translateX(4px); }
.ci-icon { width:46px; height:46px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem; flex-shrink:0; }
.ci-whatsapp { background:#e8f5e9; color:#25d366; }
.ci-phone    { background:var(--amber-pale); color:var(--amber); }
.ci-email    { background:#fff3e0; color:#e8830a; }
.contact-item strong { display:block; font-size:0.9rem; text-transform:uppercase; letter-spacing:0.1em; color:var(--text-muted); margin-bottom:0.1rem; }
.contact-item span { font-size:1.1rem; color:var(--text-dark); font-weight:500; direction:ltr; unicode-bidi:isolate; }
.contact-photo { border-radius:14px; overflow:hidden; box-shadow:0 8px 30px rgba(30,22,10,0.1); max-width:300px; }
.contact-photo img { width:100%; }

.contact-form-wrap { background:var(--white); border-radius:24px; padding:3rem; box-shadow:0 8px 50px rgba(30,22,10,0.08); border:1px solid rgba(215,137,81,0.2); }
.contact-form h3 { font-family:var(--ff-heading); font-size:2.1rem; color:var(--text-dark); margin-bottom:1.8rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { display:flex; flex-direction:column; gap:0.4rem; margin-bottom:1.2rem; }
.form-group label { font-size:0.9rem; font-weight:600; text-transform:uppercase; letter-spacing:0.1em; color:var(--text-muted); }
.form-group input,.form-group textarea,.form-group select {
  width:100%; padding:0.85rem 1.1rem;
  font-family:'Heebo',sans-serif; font-size:1.1rem; color:var(--text-dark);
  background:var(--cream-alt); border:1.5px solid rgba(215,137,81,0.3);
  border-radius:12px; outline:none; transition:all 0.25s; direction:inherit;
}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus {
  border-color:var(--green); background:var(--white);
  box-shadow:0 0 0 3px rgba(59,105,64,0.1);
}
.form-group textarea { resize:vertical; }

/* ── RESPONSIVE ── */
@media (max-width:1100px) {
  .about-grid { grid-template-columns:300px 1fr; gap:4rem; }
  .science-grid { grid-template-columns:1fr; }
  .hero { grid-template-columns:50% 50%; }
}
@media (max-width:860px) {
  .hero { grid-template-columns:1fr; grid-template-rows:60vh auto; direction:rtl; }
  .hero-photo-panel { order:1; padding: 1.5rem 1rem; }
  .hero-photo-inner { width: 94%; max-width: 480px; }
  .hero-photo-inner > img { height: 52vh; max-height: 420px; }
  .hero-text-panel { order:2; padding:4rem 2rem; }
  .hero-name { font-size:2.8rem; }
  .about-grid { grid-template-columns:1fr; }
  .about-photo-col { max-width:320px; margin:0 auto; }
  .hiw-timeline::before { display:none; }
  .contact-grid { grid-template-columns:1fr; gap:3rem; }
  .form-row { grid-template-columns:1fr; }
}
@media (max-width:600px) {
  .about,.science,.services-preview,.hiw,.testimonials,.cta-banner,.contact { padding:5.5rem 0; }
  .t-card { width:calc(100vw - 3rem); }
  .t-carousel-track { padding:0.5rem 1.5rem 1.5rem; gap:1rem; }
  .hero-photo-panel { padding: 1.5rem 1rem; }
  .hero-photo-inner { width: 88%; }
  .hero-photo-inner > img { height: 40vh; max-height: 300px; }
  .hero-sticker { right: -0.8rem; bottom: 1.5rem; font-size: 0.8rem; padding: 0.7rem 0.85rem 0.7rem 1.3rem; }
  .hero-sticker img { height: 38px; width: 38px; }
  .hero-text-panel { padding:3rem 1.5rem; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .contact-form-wrap { padding:2rem 1.5rem; }
  .hiw-item-dot { width:60px; height:60px; }
  .hiw-item-dot span { font-size:1.2rem; }
  .hiw-item { gap:1.2rem; padding:1.4rem 1.5rem; }
}
