/* ============================================================
   יעל חזקיהו — Design tokens
   Palette pulled from Yael's real brand (Wix site + logo):
   cream / sand / tan neutrals, navy ink, slate secondary text,
   peach + sky as the two disciplined accents.
   Type: Frank Ruhl Libre (display, Hebrew serif) + Heebo (body/UI)
   Signature: the infinity mark from her logo, used as a recurring
   line-art motif (dividers, list marks, the hero load-in trace).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@400;500;600;700&family=Gveret+Levin&family=Heebo:wght@300;400;500;600;700&display=swap');

:root{
  --cream:  #FDFBF7;
  --sand:   #F5EFE6;
  --tan:    #E8DFD3;
  --tan-deep: #EEDDCC;
  --navy:   #2D3E4E;
  --slate:  #5A6D7E;
  --peach:  #E3A57E;
  --peach-deep: #D98F63;
  --rust:   #964B2D;
  --sky:    #A3C1D4;
  --sky-pale: #D7E5EC;

  --font-display: 'Gveret Levin', 'Frank Ruhl Libre', 'Times New Roman', serif;
  --font-body: 'Gveret Levin', 'Heebo', 'Arial Hebrew', Arial, sans-serif;

  --container: 1340px;
  --section-pad: clamp(4rem, 8vw, 7.5rem);

  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body{
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }

a{ color: inherit; }

h1, h2, h3, h4{
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0;
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p{ margin: 0; }

ul{ margin: 0; padding: 0; list-style: none; }

button{ font-family: inherit; cursor: pointer; }

.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 2.5rem);
}

/* focus states — visible everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible{
  outline: 2.5px solid var(--rust);
  outline-offset: 3px;
  border-radius: 4px;
}

/* skip-to-content link — hidden until focused */
.skip-link{
  position: fixed;
  top: .75rem;
  inset-inline-start: 50%;
  transform: translateX(50%) translateY(-160%);
  z-index: 300;
  background: var(--navy);
  color: var(--cream);
  padding: .7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px -12px rgba(45,62,78,.6);
  transition: transform .25s var(--ease);
}
.skip-link:focus{
  transform: translateX(50%) translateY(0);
  outline: 2.5px solid var(--peach);
  outline-offset: 3px;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--rust);
  text-transform: none;
}
.eyebrow .infinity-mark{ width: 38px; height: 18px; flex: none; }

.section-label{
  font-size: .82rem;
  font-weight: 700;
  color: var(--rust);
  margin-bottom: .7rem;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  letter-spacing: .08em;
}
.section-label::before{
  content: "";
  width: 26px;
  height: 2px;
  background: var(--peach);
  flex: none;
}
/* centered section headers get the rule on both sides */
.pillars-intro .section-label,
.testimonials-head .section-label{
  justify-content: center;
}
.pillars-intro .section-label::after,
.testimonials-head .section-label::after{
  content: "";
  width: 26px;
  height: 2px;
  background: var(--peach);
  flex: none;
}

/* ---------- organic section dividers ---------- */
.sdiv{
  display: block;
  width: 100%;
  height: clamp(38px, 5vw, 62px);
  line-height: 0;
  overflow: hidden;
  pointer-events: none;
  /* overlap neighbours by 1px so no hairline seam shows at the joins */
  margin-block: -1px;
}
.sdiv svg{
  display: block;
  width: 100%;
  height: 100%;
}
.sdiv--flip svg{ transform: scaleX(-1); }

/* ---------- reveal-on-scroll ---------- */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible{
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ opacity: 1; transform: none; transition: none; }
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ============================== HEADER ============================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,251,247,.9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--tan);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled{
  box-shadow: 0 8px 28px -18px rgba(45,62,78,.5);
  border-bottom-color: transparent;
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .85rem;
  gap: 1.5rem;
}
.brand{
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  flex: none;
}
.brand img{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-name{
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
}
.brand-tag{
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: .02em;
}

.main-nav{
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.main-nav a{
  text-decoration: none;
  font-size: .98rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding-block: .3rem;
}
.main-nav a:not(.nav-cta)::after{
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: var(--peach-deep);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .3s var(--ease);
}
.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta):focus-visible::after,
.main-nav a.is-active:not(.nav-cta)::after{ transform: scaleX(1); }
.main-nav a.is-active{ color: var(--rust); }

.nav-cta{
  flex: none;
  display: inline-flex;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.85rem;
  border-radius: 999px;
  font-size: .98rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
  min-height: 44px;
}
.btn-primary{
  background: var(--peach);
  color: var(--navy);
}
.btn-primary:hover{
  background: var(--peach-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(217,143,99,.6);
}
.btn-ghost{
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
  padding: .78rem 1.7rem;
}
.btn-ghost:hover{
  background: var(--navy);
  color: var(--cream);
}
.btn-small{ padding: .65rem 1.4rem; font-size: .92rem; }

.nav-toggle{
  display: none;
  flex: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after{
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle span::before{ position: absolute; transform: translateY(-8px); }
.nav-toggle span::after{ position: absolute; transform: translateY(8px); }
.nav-toggle[aria-expanded="true"] span{ background: transparent; }
.nav-toggle[aria-expanded="true"] span::before{ transform: translateY(0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after{ transform: translateY(0) rotate(-45deg); }

/* ============================== HERO ============================== */
.hero{
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
/* ambient signature — the logo's infinity, drawn once on load */
.hero-glyph{
  position: absolute;
  z-index: 0;
  top: 50%;
  inset-inline-start: -6%;
  transform: translateY(-50%);
  width: min(58%, 720px);
  height: auto;
  color: var(--peach);
  opacity: .14;
  pointer-events: none;
}
.hero-glyph path{ stroke-dashoffset: 0; }
.hero-glyph.draw path{
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: glyph-draw 2.6s var(--ease) .25s forwards;
}
@keyframes glyph-draw{
  to{ stroke-dashoffset: 0; }
}
.hero .container{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy{ position: relative; z-index: 2; }
.hero-copy .eyebrow{ margin-bottom: 1.15rem; }
.hero h1{
  font-size: clamp(2.35rem, 5.4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 15ch;
}
.hero-copy p{
  font-size: 1.13rem;
  line-height: 1.75;
  color: var(--slate);
  max-width: 44ch;
  margin-bottom: 2.1rem;
}
.hero-media{
  position: relative;
  justify-self: center;
  width: min(420px, 86%);
  --arch: 48% 48% 20% 20% / 42% 42% 12% 12%;
}
/* offset outline of the same arch — an editorial double-frame, peach accent */
.hero-media .blob{
  position: absolute;
  inset: 9% 9% -10% -10%;
  background: transparent;
  border: 2px solid var(--peach);
  border-radius: var(--arch);
  z-index: 0;
}
.hero-media figure{
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: var(--arch);
  overflow: hidden;
  aspect-ratio: 4 / 4.9;
  box-shadow: 0 30px 60px -30px rgba(45,62,78,.35);
}
.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ============================== ABOUT ============================== */
.about{
  padding-block: var(--section-pad);
  background: var(--sand);
}
.about .container{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}
.about-media{
  justify-self: center;
  width: min(360px, 80%);
  position: relative;
}
.about-media figure{
  margin: 0;
  border-radius: 6px 90px 6px 90px;
  overflow: hidden;
  box-shadow: 0 24px 50px -26px rgba(45,62,78,.4);
  aspect-ratio: 4 / 4.5;
}
.about-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-copy h2{
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  margin-bottom: 1.4rem;
}
.about-copy > p{
  color: var(--slate);
  margin-bottom: 1.3rem;
  font-size: 1.03rem;
}
.about-copy p strong{ color: var(--navy); }

.promise-list{
  margin: 1.6rem 0 1.8rem;
  display: grid;
  gap: .85rem;
}
.promise-list li{
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-weight: 500;
  color: var(--navy);
}
.promise-list .infinity-mark{
  width: 28px;
  height: 13px;
  margin-top: .4rem;
  flex: none;
}

/* ============================== ABOUT THE CENTER ============================== */
.about-center{
  padding-block: var(--section-pad);
  background: var(--cream);
}
.about-center .container{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}
.center-copy h2{
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  margin-bottom: 1.3rem;
}
.center-lead{
  font-family: var(--font-display);
  color: var(--rust);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  line-height: 1.5;
  margin-bottom: 1.1rem;
}
.center-copy > p:not(.center-lead){
  color: var(--slate);
  font-size: 1.03rem;
  line-height: 1.8;
}
.center-media{
  position: relative;
  justify-self: center;
  width: min(480px, 92%);
}
/* signature: an arched window into the room — top rounded like a doorway,
   with the same offset double-frame move as the hero portrait, echoed here
   in navy instead of peach to anchor the section toward the quote that follows */
.center-arch{
  position: absolute;
  inset: -8% -8% 10% 10%;
  border: 2px solid var(--navy);
  border-radius: 130px 130px 16px 16px;
  z-index: 0;
}
.center-media figure{
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 130px 130px 16px 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3.1;
  box-shadow: 0 30px 60px -30px rgba(45,62,78,.35);
}
.center-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* ============================== PULL QUOTE ============================== */
.pull-quote{
  padding-block: clamp(4.5rem, 9vw, 7rem);
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  position: relative;
}
.pull-quote .infinity-mark{
  width: 56px;
  height: 26px;
  margin: 0 auto 1.8rem;
  display: block;
}
.pull-quote .infinity-mark path{ stroke: var(--peach); }
.pull-quote blockquote{
  margin: 0 auto;
  max-width: 20ch;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.4;
  font-weight: 500;
}
.pull-quote cite{
  display: block;
  margin-top: 1.6rem;
  font-style: normal;
  font-size: .95rem;
  letter-spacing: .02em;
  color: var(--sky);
  font-weight: 600;
}

/* ============================== FOCUS BAND ============================== */
.focus-band{
  padding-block: var(--section-pad);
}
.focus-card{
  background: var(--tan-deep);
  border-radius: 40px;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.75rem, 6vw, 4rem);
  text-align: center;
}
.focus-card h2{
  font-size: clamp(1.8rem, 3.2vw, 2.3rem);
  margin-bottom: 1.4rem;
}
.focus-card p{
  max-width: 62ch;
  margin-inline: auto;
  color: var(--navy);
  opacity: .82;
  font-size: 1.05rem;
}

/* ============================== PILLARS ============================== */
.pillars{
  padding-block: var(--section-pad);
  background: var(--sand);
}
.pillars-intro{
  text-align: center;
  max-width: 50ch;
  margin: 0 auto clamp(2.75rem, 6vw, 3.75rem);
}
.pillars-intro h2{
  font-size: clamp(1.7rem, 3vw, 2.15rem);
}
.pillar-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
.pillar-card{
  background: var(--cream);
  border: 1px solid var(--tan);
  border-radius: 28px;
  padding: 2.75rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pillar-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 40px -28px rgba(45,62,78,.28);
}
.pillar-icon{
  width: 100%;
  max-width: 190px;
  aspect-ratio: 1;
  margin: 0 auto 1.6rem;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--tan);
}
.pillar-icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pillar-card h3{
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0;
}
.pillar-card p{
  color: var(--slate);
  font-size: .98rem;
}
.pillars-close{
  text-align: center;
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  color: var(--navy);
  max-width: 42ch;
  margin-inline: auto;
}

/* ============================== TESTIMONIALS ============================== */
.testimonials{
  padding-block: var(--section-pad);
}
.testimonials-head{
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}
.testimonials-head h2{ font-size: clamp(1.7rem, 3vw, 2.15rem); }
.testimonials-sub{
  margin-top: .9rem;
  color: var(--slate);
  font-size: 1.02rem;
}

/* ---- auto-rotating carousel of real message screenshots ---- */
.testi-carousel{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.5rem, 2.5vw, 1.5rem);
  max-width: 880px;
  margin-inline: auto;
  direction: ltr; /* prev arrow on the left, next arrow on the right */
}
.testi-stage{
  flex: 1 1 auto;
  /* all slides share one grid cell → the stage auto-sizes to the tallest
     card, so text of any length never overflows and the arrows stay put */
  display: grid;
  align-items: center;
  justify-items: center;
}
.testi-slide{
  grid-area: 1 / 1;
  direction: rtl; /* content is Hebrew even though the arrows row is ltr */
  width: min(100%, 560px);
  margin: 0;
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  border-radius: 22px 22px 22px 6px;
  border: 1px solid var(--tan);
  background: var(--cream);
  box-shadow: 0 18px 40px -24px rgba(45,62,78,.45);
  text-align: right;
  opacity: 0;
  visibility: hidden;
  transform: scale(.98);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility 0s linear .5s;
}
.testi-slide.is-current{
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.testi-quote{
  margin: 0;
  position: relative;
  padding-top: 1.6rem;
}
.testi-quote::before{
  content: "\201D"; /* opening quote (visual flourish) */
  position: absolute;
  top: -0.6rem;
  inset-inline-start: -0.2rem;
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--peach);
  opacity: .55;
}
.testi-quote p{
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.75;
  color: var(--navy);
}
.testi-meta{
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--tan);
}
.testi-thumb{
  flex: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--tan);
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--sand);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.testi-thumb img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.testi-thumb:hover{ transform: scale(1.05); border-color: var(--peach); }
.testi-thumb:focus-visible{ outline: 2.5px solid var(--rust); outline-offset: 3px; }
.testi-meta .testi-attr{ margin: 0; }
.testi-nav{
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--tan);
  background: var(--cream);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.testi-nav:hover{ background: var(--tan-deep); border-color: var(--peach); transform: scale(1.06); }
.testi-nav svg{ pointer-events: none; }
.testi-nav:focus-visible{ outline: 2.5px solid var(--rust); outline-offset: 3px; }

.testi-controls-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: clamp(1.4rem, 3vw, 2rem);
}
.testi-playpause{
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--tan);
  background: var(--cream);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
}
.testi-playpause:hover{ background: var(--tan-deep); border-color: var(--peach); }
.testi-playpause:focus-visible{ outline: 2.5px solid var(--rust); outline-offset: 3px; }
.testi-playpause svg{ pointer-events: none; }
.testi-playpause .icon-play{ display: none; }
.testi-playpause[aria-pressed="true"] .icon-pause{ display: none; }
.testi-playpause[aria-pressed="true"] .icon-play{ display: block; }
.testi-dots{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
  direction: ltr; /* dots run left→right so the active one advances rightward */
}
.testi-dots button{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--tan);
  padding: 0;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.testi-dots button[aria-selected="true"]{
  background: var(--rust);
  transform: scale(1.3);
}
.testi-dots button:focus-visible{ outline: 2px solid var(--rust); outline-offset: 3px; }

.testi-zoom{
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--tan);
  background: var(--cream);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
}
.testi-zoom:hover{ background: var(--tan-deep); border-color: var(--peach); }
.testi-zoom:focus-visible{ outline: 2.5px solid var(--rust); outline-offset: 3px; }
.testi-zoom svg{ pointer-events: none; }

/* ---- lightbox (enlarge a testimonial) ---- */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.5rem, 3vw, 2rem);
  padding: clamp(1rem, 5vw, 3rem);
  background: rgba(45,62,78,.82);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.lightbox[hidden]{ display: none; }
.lightbox.is-open{ opacity: 1; }
.lightbox-img{
  max-width: min(560px, 100%);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.5);
  background: var(--cream);
}
.lightbox-close,
.lightbox-nav{
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(253,251,247,.14);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover{ background: rgba(253,251,247,.28); transform: scale(1.06); }
.lightbox-close{
  position: absolute;
  top: clamp(1rem, 3vw, 1.6rem);
  inset-inline-start: clamp(1rem, 3vw, 1.6rem);
}
.lightbox-close svg,
.lightbox-nav svg{ pointer-events: none; }
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible{ outline: 2.5px solid var(--peach); outline-offset: 3px; }

/* ============================== STATS ============================== */
.stats{
  background: var(--tan);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.stats .container{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem 1rem;
  text-align: center;
}
.stat-num{
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
}
.stat-label{
  display: block;
  margin-top: .35rem;
  color: var(--rust);
  font-weight: 600;
  font-size: .95rem;
}

/* ============================== CONTACT ============================== */
.contact{
  padding-block: var(--section-pad);
  background: var(--navy);
  color: var(--cream);
}
.contact .container{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
}
.contact-copy .section-label{ color: var(--sky); }
.contact h2{
  color: var(--cream);
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  margin-bottom: 1.2rem;
}
.contact-copy p{
  color: #C9D3DB;
  font-size: 1.05rem;
  max-width: 48ch;
  margin-bottom: 1.8rem;
}
.contact-details{
  display: grid;
  gap: 1.1rem;
  margin-bottom: 2rem;
}
.contact-details a,
.contact-details span{
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  color: var(--cream);
  font-weight: 500;
}
.contact-details svg{ width: 22px; height: 22px; flex: none; color: var(--peach); }
.contact-details a:hover{ color: var(--peach); }

.contact-mark{
  display: none;
  align-items: center;
  justify-content: center;
}
.contact-mark svg{
  width: 70%;
  max-width: 320px;
  height: auto;
  color: var(--sky);
  opacity: .22;
}

/* ============================== FOOTER ============================== */
.site-footer{
  background: var(--navy);
  color: var(--cream);
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 2rem;
  border-top: 1px solid rgba(253,251,247,.12);
}
.footer-top{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  text-align: center;
}
.footer-brand{
  display: flex;
  align-items: center;
  gap: .7rem;
}
.footer-brand img{
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
.footer-brand-name{
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.footer-tag{
  font-size: .8rem;
  color: var(--sky);
  margin-top: .1rem;
}
.social-row{
  display: flex;
  gap: .8rem;
}
.social-row a{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(253,251,247,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease;
}
.social-row a:hover{ background: var(--peach); border-color: var(--peach); }
.social-row svg{ width: 17px; height: 17px; }
.footer-divider{
  width: 100%;
  max-width: var(--container);
  height: 1px;
  background: rgba(253,251,247,.12);
  margin: 2.2rem auto;
}
.footer-links{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .6rem 1.4rem;
  margin-bottom: 1rem;
}
.footer-links a + a{ position: relative; }
.footer-links a + a::before{
  content: "";
  position: absolute;
  inset-inline-start: -.72rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(253,251,247,.25);
}
.footer-links a{
  color: var(--sky);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-links a:hover{ color: var(--peach); }
.footer-bottom{
  text-align: center;
  font-size: .85rem;
  color: #9FB0BD;
}

/* ============================== LEGAL / STATEMENT PAGE ============================== */
.main-nav.main-nav--simple{ position: static; height: auto; opacity: 1; visibility: visible; transform: none; background: none; flex-direction: row; padding: 0; display: flex; }
.main-nav.main-nav--simple a{ font-size: .98rem; font-weight: 500; text-decoration: none; }
.legal{
  padding-block: clamp(2.5rem, 6vw, 4.5rem) var(--section-pad);
  background: var(--cream);
}
.legal-doc{
  max-width: 760px;
  margin-inline: auto;
}
.legal-doc h1{
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin: .4rem 0 .5rem;
}
.legal-doc h2{
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  margin: 2.2rem 0 .8rem;
}
.legal-doc p{
  color: var(--slate);
  margin-bottom: 1.1rem;
  line-height: 1.8;
}
.legal-doc strong{ color: var(--navy); }
.legal-updated{ font-size: .9rem; color: var(--rust); font-weight: 600; margin-bottom: 2rem; }
.legal-list{
  margin: 0 0 1.4rem;
  padding-inline-start: 1.3rem;
  list-style: none;
  display: grid;
  gap: .6rem;
}
.legal-list li{
  position: relative;
  color: var(--slate);
  line-height: 1.7;
  padding-inline-start: 1.4rem;
}
.legal-list li::before{
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--peach);
}
.legal-contact{
  background: var(--sand);
  border: 1px solid var(--tan);
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
  margin: 1rem 0 1.6rem;
}
.legal-contact p{ margin-bottom: .5rem; color: var(--navy); }
.legal-contact p:last-child{ margin-bottom: 0; }
.legal-note{ font-size: .92rem; font-style: italic; }
.legal-doc .btn{ margin-top: 1rem; }

/* ============================== WORKSHOPS PAGE ============================== */
/* compact page hero — same ambient glyph as the home hero */
.wshop-hero{
  padding-block: clamp(2.75rem, 6vw, 4.5rem) clamp(3rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.wshop-hero-copy{ position: relative; z-index: 1; }
.wshop-hero .eyebrow{ margin-bottom: 1.1rem; }
.wshop-hero h1{
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1.3rem;
}
.wshop-hero p{
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--slate);
  max-width: 58ch;
}

/* ---- index: six offer cards ---- */
.wshop-index{ padding-block: var(--section-pad); background: var(--sand); }
.wshop-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.wshop-card{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  background: var(--cream);
  border: 1px solid var(--tan);
  /* one squared corner — same speech-bubble gesture as the testimonial cards */
  border-radius: 26px 26px 26px 8px;
  padding: 1.9rem 1.8rem 1.6rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.wshop-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 40px -28px rgba(45,62,78,.3);
  border-color: var(--peach);
}
.wshop-card:focus-within{ border-color: var(--peach); }
.wshop-kind{
  font-size: .8rem;
  font-weight: 700;
  color: var(--rust);
  letter-spacing: .05em;
}
.wshop-card h2{
  font-size: 1.4rem;
  line-height: 1.3;
}
.wshop-card h2 a{ text-decoration: none; color: var(--navy); }
/* the whole card is the click target */
.wshop-card h2 a::after{ content: ""; position: absolute; inset: 0; }
.wshop-card > p{
  color: var(--slate);
  font-size: .98rem;
  flex-grow: 1;
}
.wshop-more{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--rust);
  font-weight: 600;
  font-size: .95rem;
}
.wshop-more svg{ width: 18px; height: 18px; transition: transform .3s var(--ease); }
.wshop-card:hover .wshop-more svg{ transform: translateX(-5px); } /* RTL: forward = left */

/* ---- detail chapters ---- */
.wshop{
  padding-block: var(--section-pad);
  scroll-margin-top: 84px; /* clear the sticky header on anchor jumps */
}
.wshop--sand{ background: var(--sand); }
.wshop .container{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.wshop-rail > .infinity-mark{
  display: block;
  width: 46px;
  height: 21px;
  color: var(--peach);
  margin-bottom: 1rem;
}
.wshop-rail .wshop-kind{ display: block; }
.wshop-rail h2{
  font-size: clamp(1.8rem, 3.2vw, 2.35rem);
  margin: .5rem 0 1rem;
}
.wshop-tagline{
  font-family: var(--font-display);
  color: var(--rust);
  font-size: 1.12rem;
  line-height: 1.65;
  max-width: 32ch;
  margin-bottom: 1.7rem;
}
.wshop-rail .btn{ margin-bottom: 1.1rem; }
.wshop-backtop{
  display: block;
  width: fit-content;
  font-size: .9rem;
  color: var(--slate);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.wshop-backtop:hover{ color: var(--rust); }

.wshop-body > p{
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 1.15rem;
}
.wshop-body p strong{ color: var(--navy); }
.wshop-sub{
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  margin: 2.1rem 0 1rem;
}
.wshop-sub .infinity-mark{
  width: 30px;
  height: 14px;
  color: var(--peach);
  flex: none;
}
.wshop-list{
  display: grid;
  gap: .7rem;
  margin-bottom: 1.4rem;
}
.wshop-list li{
  position: relative;
  padding-inline-start: 1.5rem;
  color: var(--slate);
  line-height: 1.75;
}
.wshop-list li::before{
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--peach);
}
.wshop-list li strong{ color: var(--navy); }
.wshop-callout{
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  background: var(--tan-deep);
  border-radius: 18px 18px 18px 6px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.4rem;
}
.wshop-callout .infinity-mark{
  width: 30px;
  height: 14px;
  margin-top: .45rem;
  color: var(--rust);
  flex: none;
}
.wshop-callout p{ color: var(--navy); line-height: 1.7; }
.wshop-close{
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--navy);
  margin-top: 1.9rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--tan);
}
.wshop-quotes{
  display: grid;
  gap: .9rem;
  margin-bottom: .5rem;
}
.wshop-quotes blockquote{
  margin: 0;
  padding: 1.05rem 1.35rem;
  background: var(--cream);
  border: 1px solid var(--tan);
  border-radius: 16px 16px 16px 4px;
  color: var(--navy);
  line-height: 1.7;
}

/* ---- closing CTA band ---- */
.wshop-final{
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--navy);
  color: var(--cream);
  text-align: center;
}
.wshop-final .infinity-mark{
  display: block;
  width: 56px;
  height: 26px;
  margin: 0 auto 1.6rem;
  color: var(--peach);
}
.wshop-final h2{
  color: var(--cream);
  font-size: clamp(1.8rem, 3.2vw, 2.3rem);
  margin-bottom: 1.1rem;
}
.wshop-final p{
  color: #C9D3DB;
  font-size: 1.05rem;
  max-width: 52ch;
  margin: 0 auto 2rem;
}

@media (min-width: 700px){
  .wshop-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px){
  .wshop .container{ grid-template-columns: .8fr 1.25fr; }
  .wshop-rail{
    position: sticky;
    top: 96px; /* below the sticky header */
  }
}
@media (min-width: 1080px){
  .wshop-grid{ grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   Tablet and up
   ============================================================ */
@media (min-width: 700px){
  .about .container{ grid-template-columns: .85fr 1fr; }
  .about-media{ justify-self: start; width: 100%; }
  .about-center .container{ grid-template-columns: 1fr 1.05fr; }
  .center-media{ justify-self: end; width: 100%; }
  .promise-list{ grid-template-columns: 1fr 1fr; column-gap: 1.5rem; }
  .pillar-grid{ grid-template-columns: repeat(3, 1fr); }
  .stats .container{ grid-template-columns: repeat(4, 1fr); }
  .contact .container{ grid-template-columns: 1.1fr .9fr; }
  .contact-mark{ display: flex; }
}

@media (min-width: 860px){
  .main-nav{ display: flex; }
  .nav-toggle{ display: none; }
}

@media (max-width: 859px){
  .main-nav{
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem clamp(1.5rem, 6vw, 2.5rem);
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
    overflow-y: auto;
  }
  .main-nav.is-open{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .main-nav a{ font-size: 1.15rem; }
  .nav-cta{ display: none; }
  .main-nav .nav-cta{ display: inline-flex; margin-top: .5rem; }
  .nav-toggle{ display: flex; }
}

@media (min-width: 1000px){
  .hero .container{ grid-template-columns: 1fr .85fr; }
  .hero-copy{ order: 1; }
  .hero-media{ order: 2; justify-self: start; }
  body{ --section-pad: clamp(5rem, 8vw, 8rem); }
}
