:root {
    --dark-black: #1a1a1a;
    --dark-green: #798f7c;
    --light-white: #f5f2eb;
    --soft-green: #dfe7df;
    --surface-white: #fbf8f2;
    --muted-text: #5b5b55;
    --border-soft: rgba(26, 26, 26, 0.08);
    --shadow-soft: 0 24px 60px rgba(26, 26, 26, 0.08);
    --shadow-card: 0 18px 40px rgba(26, 26, 26, 0.1);
}

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

html {
    scroll-behavior: smooth;
    background: linear-gradient(180deg, #f7f4ee 0%, var(--light-white) 100%);
    overflow-x: clip;
}

body {
    margin: 0;
    color: var(--dark-black);
    background: transparent;
    font-family: "Noto Sans Hebrew", sans-serif;
    overflow-x: clip;
    -webkit-touch-callout: none;
}

html[lang="en"] body {
    font-family: "Space Grotesk", sans-serif;
}

section[id],
footer[id] {
    scroll-margin-top: 5.5rem;
}

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

body.is-protected img,
body.is-protected svg {
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

a {
    color: inherit;
}

.siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding-top: 0.65rem;
}

.siteNav {
    width: 100%;
}

.sectionShell,
.navContainer {
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
}


.navContainer {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    min-height: 76px;
    padding: 0.95rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(17, 20, 21, 0.72);
    color: var(--light-white);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(16, 19, 20, 0.18);
}

.navRail {
    display: flex;
    align-items: center;
    min-width: 0;
}


.navRail--start {
    justify-content: flex-start;
}

.navRail--end {
    justify-content: flex-end;
}

.mobileNavToggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.28rem;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--light-white);
    cursor: pointer;
}

.mobileNavToggle__bar {
    display: block;
    width: 1.2rem;
    height: 1.5px;
    margin: 0 auto;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobileNavToggle.is-open .mobileNavToggle__bar:nth-child(1) {
    transform: translateY(0.44rem) rotate(45deg);
}

.mobileNavToggle.is-open .mobileNavToggle__bar:nth-child(2) {
    opacity: 0;
}

.mobileNavToggle.is-open .mobileNavToggle__bar:nth-child(3) {
    transform: translateY(-0.44rem) rotate(-45deg);
}

.mobileNavPanel {
    display: none;
}

.mobileNavPanel__inner {
    display: grid;
    gap: 0.2rem;
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 0.25rem 0 0.5rem;
}

.mobileNavPanel__link {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--light-white);
    text-decoration: none;
    text-align: start;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobileNavPanel__link:hover,
.mobileNavPanel__link:focus-visible {
    background: rgba(121, 143, 124, 0.16);
    color: var(--dark-green);
    outline: none;
}

.mobileNavPanel__language {
    margin-top: 0.35rem;
    padding: 0.3rem 1rem 0;
}

.languageSwitcher--mobile {
    width: fit-content;
}

[data-i18n] {
    white-space: pre-line;
}

.navCenterCluster {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    min-width: 0;
}

.siteBrand {
    display: inline-flex;
    flex-direction: column;
    gap: 0.12rem;
    text-decoration: none;
    white-space: nowrap;
}

.siteBrand__mark {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.26em;
}

.siteBrand__sub {
    font-size: 0.72rem;
    color: rgba(247, 242, 235, 0.58);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.navLinksGroup {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.2rem;
}

.navLinksGroup a,
.siteFooter__nav a,
.siteFooter__backToTop {
    position: relative;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.navLinksGroup a {
    color: rgba(247, 242, 235, 0.82);
    font-size: 0.94rem;
    white-space: nowrap;
}

.navLinksGroup a:focus-visible,
.siteFooter__nav a:focus-visible,
.siteFooter__backToTop:focus-visible,
.primaryButton:focus-visible,
.languageSwitcher__trigger:focus-visible,
.languageSwitcher__option:focus-visible,
.mobileNavToggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(121, 143, 124, 0.22);
}

.navLinksGroup a:hover,
.navLinksGroup a.is-active,
.siteFooter__nav a:hover,
.siteFooter__backToTop:hover {
    color: var(--dark-green);
}

.navLinksGroup a:hover,
.siteFooter__nav a:hover,
.siteFooter__backToTop:hover {
    transform: translateY(-1px);
}

.navLinksGroup a.is-active::after {
    transform: scaleX(1);
}

.navCtaButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    padding: 0.7rem 1.35rem;
    border-radius: 999px;
    background: #798f7c;
    color: var(--dark-black);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.navCtaButton:hover {
    background: #8ca18f;
    color: var(--dark-black);
    transform: translateY(-1px);
}

.navCtaButton:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(121, 143, 124, 0.22);
}

.languageSwitcher {
    position: relative;
    display: inline-flex;
}

.languageSwitcher--nav {
    align-items: center;
    margin-inline-start: 0.15rem;
}

.languageSwitcher__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
    padding: 0.3rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--light-white);
    font: inherit;
    cursor: pointer;
    box-shadow: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.languageSwitcher__trigger:hover {
    color: var(--dark-green);
}

.languageSwitcher__trigger:focus-visible {
    box-shadow: 0 0 0 3px rgba(121, 143, 124, 0.22);
    border-radius: 8px;
}

.languageSwitcher__current {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    font-size: 0.9rem;
    line-height: 1.2;
}

.languageSwitcher__flag {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    font-size: 0.95rem;
    line-height: 1;
}

.languageSwitcher__chevron {
    width: 0.4rem;
    height: 0.4rem;
    margin-top: 0.05rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.languageSwitcher.is-open .languageSwitcher__chevron {
    transform: rotate(225deg);
}

.languageSwitcher__menu {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    display: grid;
    gap: 0.1rem;
    min-width: 8.25rem;
    padding: 0.3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(17, 20, 21, 0.95);
    box-shadow: 0 14px 28px rgba(16, 19, 20, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.2rem);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 100;
}

.languageSwitcher.is-open .languageSwitcher__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.languageSwitcher__option {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
    padding: 0.5rem 0.55rem;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--light-white);
    font: inherit;
    font-size: 0.88rem;
    text-align: start;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.languageSwitcher__option:hover,
.languageSwitcher__option:focus-visible,
.languageSwitcher__option.is-selected {
    background: rgba(121, 143, 124, 0.12);
    color: var(--dark-green);
}

.srOnly {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
}

.hover-underline-animation::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    transform: scaleX(0);
    height: 1px;
    bottom: -0.22rem;
    background: currentColor;
    transform-origin: center;
    transition: transform 0.25s ease;
}

.hover-underline-animation:hover::after,
.hover-underline-animation.is-active::after {
    transform: scaleX(1);
}


.stepsSection {
    padding-top: 2.5rem;
}

.heroSection {
    position: relative;
    height: min(100svh, 56.25rem);
    overflow: hidden;
    background: #0f1112;
    color: var(--light-white);
}

.heroSection::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 12, 13, 0.18) 0%, rgba(10, 12, 13, 0.42) 100%);
    pointer-events: none;
}

.heroSection__media,
.heroSection__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.heroSection__media img {
    object-fit: cover;
    object-position: center center;
}

.heroSection__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding-top: clamp(7rem, 10vw, 8.5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.heroSection__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.15rem;
    max-width: 48rem;
}

.heroSection__eyebrow {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(247, 242, 235, 0.7);
}

.heroSection__title {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3.2rem, 7vw, 6.4rem);
    line-height: 0.92;
    font-weight: 700;
    letter-spacing: -0.06em;
    text-wrap: balance;
    max-width: 11ch;
}

.heroSection__address {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(247, 242, 235, 0.88);
}

.heroSection__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 15rem;
    padding: 1rem 1.8rem;
    background: #798f7c;
    color: var(--dark-black);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.heroSection__cta:hover {
    background: #8ca18f;
    transform: translateY(-1px);
}

.heroSection__cta:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(121, 143, 124, 0.22);
}

.aboutSection {
    position: relative;
    padding: 4.25rem 0;
    background: #171b1c;
    color: var(--light-white);
    overflow: hidden;
}

.aboutSection::before,
.aboutSection::after {
    content: "";
    position: absolute;
    width: clamp(4.5rem, 10vw, 7.25rem);
    height: clamp(4.5rem, 10vw, 7.25rem);
    background-image: url("../assets/quotations.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.035;
    pointer-events: none;
    z-index: 0;
}

.aboutSection::before {
    top: 1rem;
    left: 1.5rem;
    transform: rotate(-12deg);
}

.aboutSection::after {
    right: 1.5rem;
    bottom: -0.5rem;
    transform: rotate(10deg);
}

.aboutSection__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    text-align: center;
}

.aboutSection__inner .sectionEyebrow {
    justify-content: center;
    margin-bottom: 1rem;
    color: rgba(245, 242, 235, 0.58);
}

.aboutSection__inner p {
    margin: 0;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.85;
    color: rgba(245, 242, 235, 0.92);
}

.methodsSection {
    position: relative;
    padding: 4.5rem 0 5rem;
    background: #171b1c;
    color: var(--light-white);
    overflow: hidden;
}

.methodsSection::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 12rem;
    background: radial-gradient(circle at center, rgba(121, 143, 124, 0.1), transparent 68%);
    pointer-events: none;
}

.methodsSection__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.methodsSection__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    max-width: 44rem;
    text-align: center;
}

.methodsSection__title {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.methodsSection__subtitle {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.6;
    color: rgba(245, 242, 235, 0.76);
}

.methodsSection__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 3vw, 2.25rem);
    width: min(980px, 100%);
    align-items: start;
}

.methodsCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 18.5rem;
    justify-self: center;
    transition: transform 0.3s ease;
}

.methodsCard:hover {
    transform: translateY(-0.35rem);
}

.methodsCard__media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: transparent;
    border: 1px solid rgba(245, 242, 235, 0.06);
    box-shadow: 0 18px 40px rgba(7, 9, 10, 0.22);
}

.methodsCard__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(23, 27, 28, 0.16) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.methodsCard:hover .methodsCard__media::after {
    opacity: 1;
}

.methodsCard__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.45s ease;
}

.methodsCard:hover .methodsCard__media img {
    transform: scale(1.03);
}

.methodsCard__label {
    position: relative;
    margin: 0;
    padding: 0;
    color: var(--light-white);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
    transition: color 0.25s ease, transform 0.25s ease;
}

.methodsCard__label::before {
    content: "";
    display: block;
    width: 2.75rem;
    height: 1px;
    margin: 0 auto 0.7rem;
    background: rgba(121, 143, 124, 0.7);
}

.methodsCard:hover .methodsCard__label {
    color: rgba(245, 242, 235, 0.92);
    transform: translateY(-0.08rem);
}

.stepsSection {
    /* margin-top: 4rem; */
    padding: 4.5rem 0;
    background: #171b1c;
    color: var(--light-white);
}

.scheduleSection .sectionShell {
    display: flex;
    justify-content: center;
}

.scheduleSection__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.65rem;
    text-align: center;
}

.scheduleSection__title {
    margin: 0;
}

.scheduleSection__button {
    min-width: 280px;
}

.sectionEyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    color: var(--dark-green);
}

.sectionIntro {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 2.75rem;
    text-align: center;
}

.sectionIntro h1,
.sectionIntro h2 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.sectionIntro h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.sectionIntro p {
    margin: 1rem 0 0;
    font-size: 1.04rem;
    line-height: 1.9;
    color: var(--muted-text);
}

.featureGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
    width: 100%;
}

.featureBlock {
    min-height: clamp(360px, 42vw, 580px);
}

.featureBlock--copy {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(2rem, 5vw, 4.75rem);
}

.featureBlock--dark {
    background: #171b1c;
    color: var(--light-white);
}

.featureBlock--light {
    background: var(--surface-white);
    color: var(--dark-black);
}

.featureBlock__media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.featureBlock__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, filter 0.55s ease;
    filter: saturate(0.97) contrast(0.98);
}

.featureBlock--media:hover .featureBlock__media img {
    transform: scale(1.018);
    filter: saturate(1) contrast(1);
}

.featureBlock__media--energy img {
    object-position: center center;
}

.featureBlock__media--strength img {
    object-position: center center;
}

.featureBlock__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 28rem;
}

.smallHeading {
    margin-bottom: 0.9rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    color: var(--dark-green);
}

.featureBlock--dark .smallHeading {
    color: rgba(245, 242, 235, 0.72);
}

.smallHeading--dark {
    color: rgba(26, 26, 26, 0.56);
}

.mainHeading {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.6rem, 4.8vw, 4.4rem);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.cardParagraph {
    max-width: 26rem;
    margin: 1.4rem 0 0;
    font-size: 0.98rem;
    line-height: 1.9;
    color: var(--muted-text);
}

.featureBlock--dark .cardParagraph {
    color: rgba(245, 242, 235, 0.8);
}

.cardParagraph--dark {
    color: var(--muted-text);
}

.stepsSection .sectionShell {
    position: relative;
}

.stepsSection .sectionEyebrow {
    color: rgba(121, 143, 124, 0.92);
}

.stepsSection .sectionIntro h2,
.stepsSection .sectionIntro p {
    color: var(--light-white);
}

.stepsSection .sectionIntro p {
    max-width: 42rem;
    margin-right: auto;
    margin-left: auto;
    color: rgba(245, 242, 235, 0.74);
}

.stepsTimeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
    margin: 0;
    padding: 1.2rem 0 0;
    list-style: none;
}

.stepsTimeline::before {
    content: "";
    position: absolute;
    top: 11.4rem;
    right: 5%;
    left: 5%;
    height: 2px;
    background: rgba(245, 242, 235, 0.34);
}

.journeyStep {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.72rem;
    padding: 0 0.5rem;
    text-align: center;
}

.journeyStep__media {
    position: relative;
    width: min(8.4rem, 100%);
    aspect-ratio: 0.74;
    overflow: hidden;
    border-radius: 22px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.journeyStep__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
    filter: saturate(0.9) contrast(0.96);
}

.journeyStep__media:hover {
    box-shadow: rgba(121, 143, 124, 0.22) 0 8px 18px;
}

.journeyStep--1 img {
    object-position: center 22%;
}

.journeyStep--2 img {
    object-position: center 70%;
}

.journeyStep--3 img {
    object-position: center 35%;
}

.journeyStep--4 img {
    object-position: center 45%;
}

.journeyStep--5 img {
    object-position: center 18%;
}

.journeyStep__node {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-top: -0.55rem;
    border-radius: 50%;
    background: #22272b;
    border: 2px solid rgba(121, 143, 124, 0.32);
    box-shadow: 0 0 0 10px #171b1c;
    transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.journeyStep__node:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
}

.journeyStep.is-active .journeyStep__node {
    background: var(--dark-green);
    border-color: var(--dark-green);
}

.journeyStep.is-current .journeyStep__node {
    box-shadow: 0 0 0 10px #171b1c, 0 10px 22px rgba(121, 143, 124, 0.18);
    transform: translateY(-1px);
}

.journeyStep:hover .journeyStep__media {
    transform: translateY(-4px);
}

.journeyStep:hover .journeyStep__media img {
    transform: scale(1.03);
    filter: saturate(1) contrast(1);
}

.journeyStep:hover .journeyStep__node,
.journeyStep:focus-within .journeyStep__node {
    background: var(--dark-green);
    border-color: var(--dark-green);
}

.stepNumber {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-white);
    letter-spacing: 0;
}

.journeyStep h3 {
    margin: 0;
    min-height: 2.4em;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark-green);
    transition: color 0.35s ease, opacity 0.35s ease;
}

.journeyStep.is-active h3 {
    color: var(--dark-green);
}

.journeyStep:not(.is-active) h3 {
    color: rgba(121, 143, 124, 0.82);
}

.journeyStep p {
    margin: 0;
    max-width: 14rem;
    color: rgba(245, 242, 235, 0.82);
    font-size: 0.98rem;
    line-height: 1.45;
}

.stepsCta {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.contactSection {
    width: min(1280px, 100%);
    margin: 3.5rem auto 0;
    padding: 0 0 0.75rem;
}

.contactSection__intro {
    margin-bottom: 2.5rem;
    padding-top: 4.5rem;
    text-align: center;
}

.contactSection__title {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--light-white);
}

.contactSection__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: stretch;
    direction: ltr;
}



.contactSection__media {
    display: flex;
    height: 100%;
    align-self: stretch;
    overflow: hidden;
    background: transparent;
}

.contactGallery {
    display: flex;
    flex: 1;
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
}

.contactGallery__slice {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    transition: flex 0.45s ease;
}

.contactGallery__slice:not(:last-child) {
    border-inline-end: 1px solid rgba(245, 242, 235, 0.08);
}

.contactGallery__slice img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: transform 0.45s ease, filter 0.3s ease;
}

.contactGallery__slice--1 img {
    object-position: 56% center;
}

.contactGallery__slice--2 img {
    object-position: center center;
}

.contactGallery__slice--3 img {
    object-position: 44% center;
}

@media (hover: hover) and (pointer: fine) {
    .contactGallery:hover .contactGallery__slice {
        flex: 0.22 1 0;
    }

    .contactGallery:hover .contactGallery__slice:hover {
        flex: 3.15 1 0;
    }

    .contactGallery:hover .contactGallery__slice:hover img {
        filter: grayscale(0);
        transform: scale(1.005);
    }
}

.contactForm {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    align-self: stretch;
}

html[lang="he"] .contactForm {
    direction: rtl;
}

html[lang="en"] .contactForm {
    direction: ltr;
}

.contactForm__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.formField {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    text-align: start;
}

.formField--full {
    grid-column: 1 / -1;
}

.formField span {
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    color: var(--light-white);
}

.formField input {
    width: 100%;
    min-height: 4rem;
    padding: 0.95rem 1.1rem;
    border: 1px solid transparent;
    border-radius: 0;
    background: #f7f4ee;
    color: var(--dark-black);
    font: inherit;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

html[lang="he"] .formField input {
    text-align: right;
}

html[lang="en"] .formField input {
    text-align: left;
}

.formField input::placeholder {
    color: rgba(26, 26, 26, 0.4);
    opacity: 1;
    text-align: right;
}

html[lang="en"] .formField input::placeholder {
    text-align: left;
}

.formField input[type="email"],
.formField input[type="tel"] {
    direction: ltr;
    text-align: left;
}

html[lang="he"] .formField input[type="email"]:placeholder-shown,
html[lang="he"] .formField input[type="tel"]:placeholder-shown {
    text-align: right;
}

.formField input:focus {
    outline: none;
    border-color: var(--dark-green);
    background: #fcfaf6;
    box-shadow: 0 0 0 4px rgba(121, 143, 124, 0.16);
}

.formField input.is-invalid {
    border-color: rgba(226, 128, 128, 0.9);
    box-shadow: 0 0 0 4px rgba(226, 128, 128, 0.12);
}

.formField input.is-valid {
    border-color: rgba(121, 143, 124, 0.82);
}

.contactForm__honeypot {
    position: absolute;
    inset-inline-start: -9999px;
}

.contactSection__cta {
    margin-top: 1.75rem;
    justify-content: stretch;
}

.contactForm .primaryButton {
    width: 100%;
    min-height: 4rem;
    border: 0;
    border-radius: 0;
    background: var(--soft-green);
    color: var(--dark-black);
    box-shadow: none;
    cursor: pointer;
}

.contactForm .primaryButton:hover {
    background: #cfdacf;
    color: var(--dark-black);
    transform: none;
}

.contactForm .primaryButton.is-loading {
    opacity: 0.9;
    pointer-events: none;
}

.contactForm .primaryButton.is-loading::after {
    content: "";
    width: 0.9rem;
    height: 0.9rem;
    margin-inline-start: 0.55rem;
    border-radius: 50%;
    border: 2px solid rgba(245, 242, 235, 0.28);
    border-top-color: var(--surface-white);
    animation: spin 0.8s linear infinite;
}

.whatsappButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.15rem;
    height: 3.15rem;
    border-radius: 999px;
    border: 1px solid rgba(121, 143, 124, 0.24);
    background: rgba(121, 143, 124, 0.1);
    color: var(--light-white);
    box-shadow: 0 10px 24px rgba(26, 26, 26, 0.16);
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.whatsappButton:hover {
    transform: translateY(-2px);
    background: rgba(121, 143, 124, 0.18);
    border-color: rgba(121, 143, 124, 0.42);
    box-shadow: 0 14px 28px rgba(121, 143, 124, 0.14);
}

.whatsappButton:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(121, 143, 124, 0.16);
}

.whatsappButton svg {
    width: 1.45rem;
    height: 1.45rem;
    fill: currentColor;
}

.siteFooter {
    padding: 2.4rem 0 1.4rem;
    background: #0f1213;
    color: var(--light-white);
    border-top: 1px solid rgba(245, 242, 235, 0.08);
}

.siteFooter__grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 0.8fr;
    gap: 2rem;
    align-items: start;
}

.siteFooter__brand .sectionEyebrow {
    margin-bottom: 0.8rem;
    color: rgba(121, 143, 124, 0.88);
}

.siteFooter__lead,
.siteFooter__meta {
    margin: 0;
}

.siteFooter__lead {
    max-width: 22rem;
    color: rgba(245, 242, 235, 0.82);
    line-height: 1.8;
}

.siteFooter__meta {
    margin-top: 0.75rem;
    color: rgba(245, 242, 235, 0.56);
    font-size: 0.95rem;
}

.siteFooter__nav {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.siteFooter__nav a,
.siteFooter__backToTop {
    color: rgba(245, 242, 235, 0.8);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.siteFooter__nav a:hover,
.siteFooter__backToTop:hover {
    color: var(--dark-green);
    transform: translateY(-1px);
}

.siteFooter__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.languageSwitcher--footer {
    align-self: center;
}

.siteFooter .languageSwitcher__trigger {
    color: var(--light-white);
}

.siteFooter .languageSwitcher__trigger:hover {
    color: var(--dark-green);
}

.siteFooter .languageSwitcher__menu {
    background: rgba(15, 18, 19, 0.98);
    border-color: rgba(245, 242, 235, 0.08);
}

.siteFooter .languageSwitcher__option {
    color: var(--light-white);
}

.siteFooter__label {
    color: rgba(245, 242, 235, 0.58);
    font-size: 0.9rem;
}

.siteFooter__socials {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.siteFooter__whatsapp {
    width: 2.85rem;
    height: 2.85rem;
}

.siteFooter__instagram {
    width: 2.85rem;
    height: 2.85rem;
}

.siteFooter__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(245, 242, 235, 0.08);
    color: rgba(245, 242, 235, 0.5);
    font-size: 0.9rem;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    z-index: 1000;
    min-width: min(28rem, calc(100% - 2rem));
    max-width: calc(100% - 2rem);
    padding: 1rem 1.2rem;
    border-radius: 18px;
    border: 1px solid rgba(121, 143, 124, 0.28);
    background: rgba(121, 143, 124, 0.96);
    color: var(--surface-white);
    text-align: center;
    box-shadow: 0 20px 40px rgba(26, 26, 26, 0.18);
    transform: translate(-50%, 1rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.toast--error {
    background: rgba(120, 57, 57, 0.96);
    border-color: rgba(255, 214, 214, 0.22);
}

.primaryButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    padding: 1rem 1.8rem;
    /* border-radius: 999px; */
    background: linear-gradient(135deg, #869c89 0%, var(--dark-green) 100%);
    color: var(--surface-white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 14px 28px rgba(121, 143, 124, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.primaryButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(121, 143, 124, 0.28);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-1 {
    transition-delay: 0.08s;
}

.reveal-2 {
    transition-delay: 0.18s;
}

.reveal-3 {
    transition-delay: 0.3s;
}

.reveal-4 {
    transition-delay: 0.42s;
}

.reveal-5 {
    transition-delay: 0.54s;
}

@keyframes dividerIn {
    to {
        transform: scaleX(1);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1080px) {
    .stepsTimeline {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 2rem;
    }

    .stepsTimeline::before {
        display: none;
    }
}

@media (max-width: 920px) {
    .featureGrid {
        grid-template-columns: 1fr;
    }

    .heroSection {
        height: clamp(32rem, 76svh, 48rem);
    }

    .heroSection__title {
        max-width: 12ch;
    }

    .methodsSection__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(760px, 100%);
    }

    .methodsCard:last-child {
        grid-column: 1 / -1;
    }

    .featureBlock {
        min-height: auto;
    }

    .featureBlock__media {
        min-height: 24rem;
    }

    .featureBlock--copy {
        padding: 3rem 1.5rem;
    }

    .stepsTimeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contactSection__layout {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .contactSection__media {
        min-height: 22rem;
    }

    .contactGallery__slice {
        flex: 1 1 0;
    }

    .contactGallery:hover .contactGallery__slice,
    .contactGallery:hover .contactGallery__slice:hover {
        flex: 1 1 0;
    }

    .contactForm__grid {
        grid-template-columns: 1fr;
    }

    .siteFooter__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .siteFooter__lead {
        margin-right: auto;
        margin-left: auto;
    }

    .siteFooter__nav {
        align-items: center;
    }

    .siteFooter__bottom {
        flex-direction: column-reverse;
    }
}

@media (max-width: 820px) {
    .navContainer {
        grid-template-columns: auto 1fr auto;
    }

    .navCenterCluster {
        justify-content: center;
    }

    .navLinksGroup {
        display: none;
    }

    .navCtaButton {
        display: none;
    }

    .mobileNavToggle {
        display: inline-flex;
    }

    .mobileNavPanel {
        display: block;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: max-height 0.25s ease, opacity 0.2s ease, visibility 0.2s ease;
    }

    .mobileNavPanel.is-open {
        max-height: 28rem;
        overflow: visible;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (max-width: 720px) {
    .siteHeader {
        padding-top: 0.5rem;
    }

    .navContainer {
        grid-template-columns: auto 1fr auto;
        min-height: 68px;
        gap: 0.75rem;
        padding: 0.8rem 0.9rem;
        border-radius: 26px;
    }

    .navRail--start {
        display: flex;
        align-items: center;
        min-width: 2.25rem;
    }

    .navRail--end {
        min-width: 2.25rem;
    }

    .navCenterCluster {
        justify-content: center;
        width: 100%;
    }

    .siteBrand__mark {
        font-size: 0.88rem;
    }

    .siteBrand__sub {
        font-size: 0.66rem;
    }

    .heroSection {
        height: clamp(31rem, 72svh, 41rem);
    }

    .heroSection__content {
        padding-top: 6.5rem;
        padding-bottom: 3rem;
    }

    .heroSection__copy {
        gap: 1rem;
    }

    .heroSection__title {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
        max-width: 10ch;
    }

    .heroSection__address {
        font-size: 0.98rem;
    }

    .heroSection__cta {
        width: min(100%, 22rem);
        min-width: 0;
    }

    .contactSection {
        margin-top: 2.5rem;
        padding: 0 1rem 1rem;
    }

    .contactSection__intro {
        padding-top: 2.75rem;
        margin-bottom: 1.75rem;
    }

    .contactSection__title {
        font-size: clamp(2rem, 11vw, 3.1rem);
    }

    .contactSection__layout {
        gap: 1.25rem;
    }

    .scheduleSection__inner {
        gap: 1.25rem;
    }

    .methodsSection {
        padding: 3.75rem 0 4rem;
    }

    .methodsSection__inner {
        gap: 2rem;
    }

    .methodsSection__grid {
        grid-template-columns: 1fr;
        width: min(340px, 100%);
    }

    .methodsCard,
    .methodsCard:last-child {
        grid-column: auto;
        max-width: none;
    }

    .scheduleSection__button {
        width: 100%;
        min-width: 0;
    }

    .contactSection__media {
        min-height: 22rem;
    }

    .contactForm__grid {
        gap: 1.15rem;
    }

    .contactGallery {
        min-height: 22rem;
    }

    .languageSwitcher__menu {
        left: 50%;
        right: auto;
        transform: translate(-50%, -0.2rem);
    }

    .languageSwitcher.is-open .languageSwitcher__menu {
        transform: translate(-50%, 0);
    }

    html[lang="he"] .mobileNavPanel .languageSwitcher__menu {
        right: 0;
        left: auto;
        transform: translateY(-0.2rem);
    }

    html[lang="en"] .mobileNavPanel .languageSwitcher__menu {
        left: 0;
        right: auto;
        transform: translateY(-0.2rem);
    }

    .mobileNavPanel .languageSwitcher.is-open .languageSwitcher__menu {
        transform: translateY(0);
    }

    .stepsSection {
        padding-top: 1.75rem;
    }

    .sectionIntro {
        margin-bottom: 2rem;
    }

    .aboutSection::before,
    .aboutSection::after {
        width: clamp(3.5rem, 14vw, 5rem);
        height: clamp(3.5rem, 14vw, 5rem);
        opacity: 0.32;
    }

    .aboutSection::before {
        top: 0.75rem;
        left: 0.5rem;
    }

    .aboutSection::after {
        right: 0.5rem;
        bottom: 0;
    }

    .featureBlock__media {
        min-height: 20rem;
    }

    .stepsTimeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .journeyStep {
        max-width: 22rem;
        margin: 0 auto;
    }

    .journeyStep h3 {
        min-height: 0;
    }

    .journeyStep p {
        max-width: 18ch;
    }

    .primaryButton {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .primaryButton,
    .navLinksGroup a,
    .contactGallery__slice,
    .contactGallery__slice img,
    .languageSwitcher__trigger,
    .languageSwitcher__menu,
    .languageSwitcher__option,
    .featureBlock__media img,
    .journeyStep__media,
    .journeyStep__media img,
    .whatsappButton,
    .siteFooter__nav a,
    .siteFooter__backToTop,
    .toast,
    .contactForm .primaryButton.is-loading::after {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}
