/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal-dark:   #0096ce;
  --dark-blue:   #0b3a5c;
  --teal-mid:    #73cb98;
  --teal-light:  #d9f1ff;
  --teal-pale:   #c0e8ff;
  --text-body:   #2f3f55;
  --text-muted:  #6b7b91;
  --bg:          #f8fcff;
  --bg-alt:      #ffffff;
  --surface-light: #edf6ff;
  --white:       #ffffff;
  --rule:        rgba(0,150,206,0.12);
  --danger:      #bf3c38;
  --nav-h:       92px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

p { margin-bottom: 30px; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-svg {
  height: 56px;
  width: auto;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--teal-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.nav-links a:hover { color: var(--teal-dark); }
.nav-links a:hover::after { transform: scaleX(1); }


/* ── HERO ── */
#home {
  height: calc(100vh + 80px);
  min-height: 900px;
  display: grid;
  align-items: center;
  padding: 0 5%;
  position: relative;
  overflow: visible;
  background: var(--bg-alt);
}


.hero-inner {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--dark-blue);
  line-height: 1.0;
  letter-spacing: -0.04em;
}
.hero-headline b {
  font-weight: 800;
}

.hero-headline em {
  font-style: normal;
  font-weight: 800;
  color: var(--teal-mid);
}
.hero-headline i {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 300;
}
.hero-text {
  margin: 0;
  position: sticky;
  top: 0;
  z-index: 1;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  max-width: 620px;
}

.hero-graphic {
  display: flex;
  justify-content: flex-end;
  align-self: start;
  position: sticky;
  top: calc(var(--nav-h) + 140px);
  max-width: 100%;
}

.hero-graphic img {
  width: 100%;
  height: auto;
  max-width: 860px;
}

.hero-connected-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 860px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(.4,0,.2,1);
}
.hero-graphic {
  position: relative;
}

.hero-lead {
  font-size: 2rem;
  font-weight: 400;
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.2;
  max-width: 480px;
  margin-bottom: 44px;
}

.hero-cta {
  display: inline-block;
  padding: 14px 36px;
  margin-top: 20px;
  background: var(--teal-dark);
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: background 0.2s, transform 0.15s;
}

.hero-cta:hover { background: var(--teal-mid); transform: translateY(-1px); }

/* CTA visibility states controlled by JS during hero reveal */
.hero-cta.hidden {
  opacity: 0 !important;
  transform: translateY(8px) !important;
  pointer-events: none !important;
  transition: opacity 0.25s ease, transform 0.25s ease;
  /* stop any CSS animation from forcing visibility */
  animation: none !important;
}
.hero-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Sequential word reveal for headline */
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.reveal-word.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-graphic {
  overflow: visible;
}

.hero-graphic svg,
.hero-graphic img {
  width: 100%;
  height: auto;
  max-width: 860px;
}
.hero-logo-image {
  max-width: 420px;
}

/* ── WAVEFORM — scroll-driven via JS, no CSS animations ── */
/* transform-origins defined here so JS only sets transform values */
.wave-p1 { transform-origin: 48px  149px; }
.wave-p2 { transform-origin: 130px 149px; }
.wave-p3 { transform-origin: 42px  149px; }
.wave-p4 { transform-origin: 127px 149px; }
.wave-p5 { transform-origin: 70px  149px; }
.wave-p6 { transform-origin: 104px 149px; }
.wave-p7 { transform-origin: 180px 149px; }

/* ── SECTION SHARED ── */
section {
  padding: 100px 5% 100px;
  position: relative;
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}


/* ── ABOUT ── */
#about {
  background: var(--bg);
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.about-quote {
  font-family: "Bodoni Moda", serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.2;
  padding-left: 40px;
  border-left: 1px solid var(--teal-dark);
  margin: 32px 0;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.stat {
  background: var(--bg-alt);
  padding: 20px 20px 22px;
  border-radius: 40px;
}

.stat-num {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(4rem, 9vw, 6rem);
  font-style: italic;
  font-weight: 600;
  color: var(--teal-dark);
  line-height: 0.9;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  text-align: center;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--teal-dark);
  line-height: 1.4;
  text-align: center;
}

.about-photo {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 0 0 40px;
  border-radius: 60px;
}

.about-body { font-size: 1.4rem; color: var(--text-body); line-height: 1.4; }
.about-body em { font-weight: 600; }

/* ── IMAGE GALLERY SLIDESHOW ── */
#image-gallery-slider {
  background: var(--bg);
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.gallery-slider-wrap {
  overflow: hidden;
  width: 100%;
}

.gallery-slider-track {
  display: flex;
  width: max-content;
  gap: 0;
  padding: 0;
  will-change: transform;
}

.gallery-slide {
  width: clamp(280px, 34vw, 480px);
  height: 400px;
  flex: 0 0 auto;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.gallery-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

@keyframes gallery-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SERVICES ── */
#services {
  background: var(--bg);
}

.services-intro {
  max-width: 700px;
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.section-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--white);
  color: var(--teal-dark);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.section-cta:hover {
  background: var(--teal-light);
  color: var(--text-body);
  transform: translateY(-1px);
}

.service-card {
  background: var(--white);
  border-radius: 60px;
  padding: 36px 28px;
  border: 0px solid var(--rule);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.service-card--training {
  grid-column: 1 / -1;
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.service-card-intro {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.service-card-intro .service-icon-wrap {
  margin-bottom: 0;
  flex-shrink: 0;
}

.service-card-intro .service-title {
  margin: 0;
}

.service-card-cta {
  flex-shrink: 0;
  padding: 14px 40px;
  background: var(--teal-dark);
  color: var(--white);
  font-weight: 600;
  border-radius: 50vh;
}

.service-card-cta:hover {
  background: var(--teal-mid);
  color: var(--white);
}

.workshops-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.workshop-frame {
  background: var(--bg);
  border: 0px;
  border-radius: 30px;
  padding: 30px 30px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.workshop-frame:hover {
  box-shadow: 0 12px 40px rgba(87, 118, 158, 0.12);
  transform: translateY(-4px);
}

.workshop-icon-wrap {
  display: inline-flex;
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  color: var(--teal-mid);
}

.workshop-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.workshop-title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-blue);
  margin-bottom: 15px;
}

.workshop-frame .service-body {
  font-size: 0.88rem;
  line-height: 1.65;
}

.workshop-details,
.service-details {
  margin-top: 12px;
}

.workshop-details summary,
.service-details summary {
  cursor: pointer;
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 400;
  font-size: 0.8rem;
  color: transparent;
  list-style: none;
  text-decoration: none;
  border: 1px solid var(--teal-pale);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.workshop-details summary::after,
.service-details summary::after {
  content: 'Read more';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
}

.workshop-details[open] summary::after,
.service-details[open] summary::after {
  content: 'Read less';
}

.workshop-details summary:hover,
.service-details summary:hover {
  border: 1px solid var(--teal-dark);
}

.workshop-details summary::-webkit-details-marker,
.service-details summary::-webkit-details-marker {
  display: none;
}

.workshop-details p,
.service-details p {
  margin: 0.75rem 0 0;
}

.workshop-frame .service-topics {
  margin-top: 10px;
  font-size: 0.84rem;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(87, 118, 158, 0.12);
  transform: translateY(-4px);
}

.service-icon {
  width: 40px; height: 40px;
  margin-bottom: 20px;
  color: var(--teal-mid);
}

.service-icon-wrap {
  display: inline-flex;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  color: var(--teal-mid);
}

.service-icon-wrap svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.service-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.service-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-top: 10px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.service-body {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.8;
}

.service-topics {
  margin-top: 16px;
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-body);
}

.service-topics li {
  padding: 3px 0;
  padding-left: 30px;
  position: relative;
}

.service-topics li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--teal-dark);
  font-size: 0.9rem;
}

/* ── EXPERTISE ── */
#expertise {
  background: var(--teal-dark);
  color: var(--white);
  padding: 100px 3% 250px 3%;
  margin-top: -100px;
}
#expertise .section-inner {
  max-width: 1500px;
}
#expertise .section-label { color: var(--teal-pale); }
#expertise .section-heading { color: var(--white); }
#expertise .rule { background: var(--teal-pale); }
#expertise .section-label,
#expertise .section-heading { text-align: center; }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 0;
}

.expertise-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 40px;
  padding: 0 0 24px;
  overflow: hidden;
  transition: background 0.2s;
}

.expertise-card:hover { background: rgba(255,255,255,0.12); }

.expertise-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin-bottom: 14px;
  filter: sepia(0%) saturate(10%) hue-rotate(130deg) brightness(1);
  transition: filter 0.25s ease;
}

.expertise-card:hover .expertise-image {
  filter: none;
}

.expertise-card p {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255,255,255,0.85);
  text-align: center;
  margin: 20px;
}

.expertise-tagline {
  max-width: 720px;
  margin: 0 auto 56px;
  font-family: "Bodoni Moda", serif;
  font-size: 1.7rem;
  font-style: italic;
  line-height: 1.28;
  color: rgba(255,255,255,0.9);
  text-align: center;
}

.expertise-cta-wrap {
  margin-top: 72px;
  text-align: center;
}

.expertise-cta {
  background: var(--bg-alt);
}

/* ── BIO ── */
#bio { 
    background: var(--white);
    padding-top: 0;
    padding-bottom: 0;
 }

.bio-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}

.bio-body { font-size: 0.97rem; color: var(--text-body); line-height: 1.88; }
.bio-body p + p { margin-top: 18px; }

.bio-left{
  padding-top: 100px;
  padding-bottom: 100px;
}
.bio-timeline {
  list-style: none;
}

.bio-timeline li,
.bio-timeline > div {
  padding: 16px 0 16px 28px;
  border-left: 1px solid var(--teal-dark);
  position: relative;
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.6;
}
.bio-timeline div{
  height: 100px;
}

.bio-timeline li::before {
  content: '';
  position: absolute;
  left: -9px; top: 30px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--teal-dark);
}

.bio-timeline strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}

.milestone-logo {
  display: block;
  height: 45px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 10px 0;
  opacity: 0.5;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.milestone-logo:hover,
.bio-timeline li:hover .milestone-logo {
  opacity: 1;
}

.milestone-content {
  display: block;
}

/* ── CONTACT ── */
#contact { background: var(--bg-alt); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-lead {
  font-family: "Bodoni Moda", serif;
  font-size: 1.7rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.28;
  margin-bottom: 24px;
}

.contact-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--teal-pale);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-link:hover { color: var(--teal-mid); border-color: var(--teal-mid); }

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  margin-top: 14px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--rule);
  background: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--text-body);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--teal-mid);
}
.form-input{
    border-radius: 50vh;
}
.form-textarea { 
    resize: vertical; min-height: 120px; 
    border-radius: 20px;
}

.form-submit {
  display: inline-block;
  padding: 14px 40px;
  background: var(--teal-dark);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50vh;
  transition: background 0.2s, transform 0.15s;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0 18px;
}

.form-consent-checkbox {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--teal-dark);
  flex-shrink: 0;
}

.form-consent-label {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.form-consent-label a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-consent-label a:hover {
  color: var(--teal-mid);
}

.form-submit:hover { background: var(--teal-mid); transform: translateY(-1px); }

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-form-status {
  margin-top: 14px;
  min-height: 1.4em;
  font-size: 0.86rem;
  font-weight: 500;
}

.contact-form-status.is-success {
  color: var(--teal-dark);
}

.contact-form-status.is-error {
  color: var(--danger);
}

/* ── PRIVACY PAGE ── */
.privacy-page {
  background: var(--white);
  padding-top: calc(var(--nav-h) + 70px);
  padding-bottom: 120px;
}

.privacy-wrap {
  max-width: 900px;
}

.privacy-content {
  color: var(--text-body);
}

.privacy-content h2,
.privacy-content h3,
.privacy-content h4 {
  color: var(--text-body);
  margin: 30px 0 10px;
}

.privacy-content p,
.privacy-content li {
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.privacy-content ul,
.privacy-content ol {
  margin: 0 0 14px 22px;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--bg);
  overflow: hidden;
}

#testimonials .section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  text-align: center;
}

.testimonials-track-wrap {
  overflow: visible;
  width: 100%;
  cursor: grab;
  user-select: none;
  padding-top: 40px;
}

.testimonials-track-wrap:active { cursor: grabbing; }

.testimonials-track {
  display: flex;
  gap: 80px;
  padding: 8px 5% 0px;
  width: max-content;
  will-change: transform;
}

@keyframes scroll-testimonials {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  width: 480px;
  gap: 24px;
}

.testimonial-quote {
  font-family: "Bodoni Moda", serif;
  font-size: 1.55rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.25;
  flex: 1;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 12rem;
  line-height: 0;
  display: block;
  margin: -10px 0 -10px -15px;
  color: var(--teal-mid);
  font-style: normal;
}

.testimonial-author {
  padding-top: 0;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-body);
  letter-spacing: 0.02em;
  margin-bottom: 3px;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ── FOOTER ── */
footer {
  background-color: var(--white);
  background-image: url('hero_footer.svg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  color: var(--text-muted);
  text-align: center;
  padding: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  min-height: 360px;
  position: relative;
}

.footer-text {
  position: absolute;
  width: 100%;
  left: auto;
  right: auto;
  top: 0;
  z-index: 1;
}

footer strong {
  font-weight: 700;
}

.footer-name-shira {
  color: var(--teal-mid);
}

.footer-name-taba {
  color: var(--teal-dark);
}

footer a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

footer a:hover {
  color: var(--teal-mid);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.7s 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) {
  .hero-inner,
  .about-grid,
  .bio-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .workshops-grid { grid-template-columns: 1fr 1fr; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }

  .hero-graphic { display: none; }

  .service-card-header,
  .service-card-intro {
    align-items: flex-start;
  }

  .service-card-header {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .workshops-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }

  .gallery-slide,
  .gallery-slide img {
    height: 400px;
  }
}
